<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.nabble.com,2006:forum-29982</id>
	<title>Nabble - LiveWorks!</title>
	<updated>2008-09-03T01:07:56Z</updated>
	<link rel="self" type="application/atom+xml" href="http://www.nabble.com/LiveWorks!-f29982.xml" />
	<link rel="alternate" type="text/html" href="http://www.nabble.com/LiveWorks%21-f29982.html" />
	<subtitle type="html">&lt;div style=&quot;float: left;&quot;&gt;&lt;a href=&quot;http://liveworks.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;img src=&quot;http://liveworks.ephox.com/wp-content/themes/liveworks/images2/main/ephoxlogo.gif&quot; alt=&quot;Ephox&quot; id=&quot;logo&quot; /&gt;&lt;br /&gt;
&lt;img src=&quot;http://liveworks.ephox.com/wp-content/themes/liveworks/images2/main/liveworks.gif&quot; alt=&quot;LiveWorks!&quot; id=&quot;liveworks&quot; /&gt;&lt;/a&gt;&lt;/div&gt;

&lt;p&gt;The LiveWorks! mailing list is an invaluable source of information to help you customize and extend &lt;a href=&quot;http://www.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ephox&lt;/a&gt; products to meet your needs. Discussion of LiveWorks! projects, hint and tips and general discussions around Ephox products is encouraged.&lt;/p&gt;</subtitle>
	
<entry>
	<id>tag:www.nabble.com,2006:post-19284737</id>
	<title>Re: Session Problem</title>
	<published>2008-09-03T01:07:56Z</published>
	<updated>2008-09-03T01:07:56Z</updated>
	<author>
		<name>Adrian Sutton</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;Good suggestions in this thread, I'll try to pull them together into a
&lt;br&gt;future LiveWorks! article. I can add a couple of suggestions.
&lt;br&gt;&lt;br&gt;On 03/09/2008 02:14, &amp;quot;John Vanantwerp&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19284737&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JVanantwerp@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; We use option #1 in our installation, with the addition of an alert box
&lt;br&gt;&amp;gt; as part of the timeout refresh. &amp;nbsp;We have the alert box, which stops JS
&lt;br&gt;&amp;gt; execution, appear about 10 minutes before the session expires. &amp;nbsp;If the
&lt;br&gt;&amp;gt; user hits OK on the alert box, the AJAXy code does a roundtrip to the
&lt;br&gt;&amp;gt; server which refreshes the session timer. &amp;nbsp;If they don't hit OK, the
&lt;br&gt;&amp;gt; session times out as planned. &amp;nbsp;So if they walk away the session expires,
&lt;br&gt;&amp;gt; if they keep working it warns them and gives them the option of
&lt;br&gt;&amp;gt; refreshing the session timer.
&lt;br&gt;&lt;br&gt;This is a very clever approach actually. The other possibility is to use the
&lt;br&gt;isDirty flag in the editor. &amp;nbsp;Only renew the session if isDirty is true and
&lt;br&gt;once you've renewed it, set it to false again. I don't actually have a
&lt;br&gt;setIsDirty JavaScript method but you can access it easily enough from
&lt;br&gt;JavaScript using LiveConnect:
&lt;br&gt;&lt;a href=&quot;http://liveworks.ephox.com/hints-tips/getting-content-synchronously/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/hints-tips/getting-content-synchronously/&lt;/a&gt;&lt;br&gt;&lt;br&gt;And from Dylan's suggestions:
&lt;br&gt;&amp;gt;&amp;gt; 5. Implement some kind of an &amp;quot;autosave&amp;quot; every x seconds. You could use
&lt;br&gt;&amp;gt;&amp;gt; javascript setTimeouts to do a periodic GetDocument and use an AJAX
&lt;br&gt;&amp;gt;&amp;gt; framework to post that to a server, as a draft.
&lt;br&gt;&lt;br&gt;We use this in our intranet with a lot of success. The key element to it is
&lt;br&gt;that it saves a draft rather than a new version. The draft is basically a
&lt;br&gt;completely separate storage area specifically for autosave. So the autosaved
&lt;br&gt;content doesn't get published to the site or appear in history etc. &amp;nbsp;If the
&lt;br&gt;user closes their browser and returns to edit the page they are asked if
&lt;br&gt;they want to restore the previous draft or just start from the published
&lt;br&gt;version again. &amp;nbsp;For something we did because it was the easiest way to
&lt;br&gt;implement it on our particular system I've been very impressed with how
&lt;br&gt;effective it is. &amp;nbsp;Checking isDirty would avoid the problem of users walking
&lt;br&gt;away but you should make sure the system switches to a session timed out
&lt;br&gt;page or users could come back and continue editing later only to find they
&lt;br&gt;can't save because their session has timed out.
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt; 6. Provide some kind of mechanism whereby the session can expire, but
&lt;br&gt;&amp;gt;&amp;gt; the user can log back in again to recover, without losing their
&lt;br&gt;&amp;gt;&amp;gt; content.
&lt;br&gt;&lt;br&gt;Our intranet does this as an additional line of defense. &amp;nbsp;It's a lot simpler
&lt;br&gt;than it sounds if you can control how authentication is done. We normally
&lt;br&gt;use a HTML form to login because it's nice and user friendly, but if we
&lt;br&gt;detect an unauthorized request via POST, we switch to HTTP basic
&lt;br&gt;authentication (over SSL). The browser then displays it's standard
&lt;br&gt;authentication dialog and resubmits the entire POST request, including data
&lt;br&gt;with the authentication info. You do need to exclude the login form from
&lt;br&gt;this though otherwise if the user enters invalid credentials they'll get a
&lt;br&gt;HTTP auth dialog instead of a friendly incorrect password page.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Adrian Sutton.
&lt;br&gt;______________________
&lt;br&gt;Adrian Sutton, CTO
&lt;br&gt;UK: +44 1 753 27 2229 &amp;nbsp;US: +1 (650) 292 9659 x717
&lt;br&gt;Ephox &amp;lt;&lt;a href=&quot;http://www.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ephox.com/&lt;/a&gt;&amp;gt;
&lt;br&gt;Ephox Blogs &amp;lt;&lt;a href=&quot;http://planet.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://planet.ephox.com/&lt;/a&gt;&amp;gt;, Personal Blog
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.symphonious.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.symphonious.net/&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19284737&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Session-Problem-tp19280455p19284737.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19281360</id>
	<title>Re: Session Problem</title>
	<published>2008-09-02T18:14:37Z</published>
	<updated>2008-09-02T18:14:37Z</updated>
	<author>
		<name>Mike Franey</name>
	</author>
	<content type="html">We use option #1 in our installation, with the addition of an alert box
&lt;br&gt;as part of the timeout refresh. &amp;nbsp;We have the alert box, which stops JS
&lt;br&gt;execution, appear about 10 minutes before the session expires. &amp;nbsp;If the
&lt;br&gt;user hits OK on the alert box, the AJAXy code does a roundtrip to the
&lt;br&gt;server which refreshes the session timer. &amp;nbsp;If they don't hit OK, the
&lt;br&gt;session times out as planned. &amp;nbsp;So if they walk away the session expires,
&lt;br&gt;if they keep working it warns them and gives them the option of
&lt;br&gt;refreshing the session timer.
&lt;br&gt;&lt;br&gt;- John
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19281360&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks-bounces@...&lt;/a&gt;
&lt;br&gt;[mailto:&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19281360&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks-bounces@...&lt;/a&gt;] On Behalf Of Steven
&lt;br&gt;Drinkwater
&lt;br&gt;Sent: Tuesday, September 02, 2008 7:19 PM
&lt;br&gt;To: LiveWorks Discussion
&lt;br&gt;Subject: Re: [Liveworks] Session Problem
&lt;br&gt;&lt;br&gt;Hi Dylan,
&lt;br&gt;&lt;br&gt;Thanks for the very quick response :)
&lt;br&gt;&lt;br&gt;I was thinking of something like #1, but decided against it, because of
&lt;br&gt;the drawbacks you mentioned, and could become a possible security
&lt;br&gt;problem. And of course #4 was considered, but yeah, we don't want that
&lt;br&gt;either ;)
&lt;br&gt;&lt;br&gt;#3 and #4 seem like good ideas, but I've never done Java development or
&lt;br&gt;dabbled with the API in-depth, so it would take longer for me to develop
&lt;br&gt;than other ideas, but might still be worth it.
&lt;br&gt;&lt;br&gt;#5 - Yup, I was also thinking of something along these lines, the only
&lt;br&gt;problem being, is sometimes people 'play around' in the editor, and they
&lt;br&gt;then might decide they don't want to keep these changes, but has been
&lt;br&gt;over 'x' minutes, so we would also have to develop some kind of
&lt;br&gt;roll-back-like functionality.. Again, this may actually be worth it for
&lt;br&gt;us because an auto-save can't be a bad thing.
&lt;br&gt;&lt;br&gt;#6 - Nasteh! Good idea though, would be worth me considering.
&lt;br&gt;&lt;br&gt;&lt;br&gt;I'll see if anyone else comes up with some ideas/suggestions and then
&lt;br&gt;have a word with my client and see what he thinks, and I'll get in touch
&lt;br&gt;if I need pointing in the right direction for a certain solution, if you
&lt;br&gt;don't mind :)
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Steven
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On 3 Sep 2008, at 01:02, Dylan Just wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You're basically looking for a &amp;quot;keepalive&amp;quot; solution. There's a few
&lt;br&gt;&amp;gt; options:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 1. Timed AJAX keepalive. You could use something like the Prototype JS
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; framework to make periodic HTTP requests to the server. As these 
&lt;br&gt;&amp;gt; requests are in the same session, your session would stay alive. I 
&lt;br&gt;&amp;gt; think Prototype has a periodic updater which could make this very 
&lt;br&gt;&amp;gt; simple.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2. You could catch editor events using Advanced APIs from Java. &amp;nbsp;
&lt;br&gt;&amp;gt; Whenever
&lt;br&gt;&amp;gt; your raiseEvent method is called, you could call out to Javascript, 
&lt;br&gt;&amp;gt; and do an AJAX keepalive ping like above. You'd only want to do this 
&lt;br&gt;&amp;gt; on certain events, to prevent flooding the server, and locking up the 
&lt;br&gt;&amp;gt; editor. You'd need to get a reference to the &amp;quot;JSObject&amp;quot; in order to 
&lt;br&gt;&amp;gt; call out to Javascript.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 3. Similar to #2, but you could make the keepalive http request from 
&lt;br&gt;&amp;gt; within Java itself. EditLive!'s internal HTTP managers keep the same 
&lt;br&gt;&amp;gt; session as the page they're within (the client cookie is passed to ELJ
&lt;/div&gt;&lt;br&gt;&amp;gt; on initialization). As such, a HTTP request from within ELJ should 
&lt;br&gt;&amp;gt; keep the session alive.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 4. Simply remove or increase the session timeout.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 5. Implement some kind of an &amp;quot;autosave&amp;quot; every x seconds. You could use
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; javascript setTimeouts to do a periodic GetDocument and use an AJAX 
&lt;br&gt;&amp;gt; framework to post that to a server, as a draft.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 6. Provide some kind of mechanism whereby the session can expire, but 
&lt;br&gt;&amp;gt; the user can log back in again to recover, without losing their 
&lt;br&gt;&amp;gt; content.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; #1 is fairly straightforward, but a user can walk away and be doing 
&lt;br&gt;&amp;gt; absolutely nothing and their session would stay alive - this may not 
&lt;br&gt;&amp;gt; be desirable.
&lt;br&gt;&amp;gt; #2 and #3 are trickier. They may need hooking into EditLive! a little 
&lt;br&gt;&amp;gt; deeper than we expose via Advanced APIs.
&lt;br&gt;&amp;gt; #4 is the simplest, but may not meet your needs.
&lt;br&gt;&amp;gt; #5 is fairly tricky, but gives you bonus functionality. It has the 
&lt;br&gt;&amp;gt; same &amp;quot;user walks away&amp;quot; drawback as #1.
&lt;br&gt;&amp;gt; #6 would be tricky, but is probably the best solution in terms of 
&lt;br&gt;&amp;gt; session maintenance and user experience.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If you have follow-up questions on the above, feel free to ask.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Does anyone else on the list have any other suggestions or comments?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Kind regards,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Dylan Just
&lt;br&gt;&amp;gt; Software Engineer
&lt;br&gt;&amp;gt; Global: +1 (650) 292 9659 x705 &amp;nbsp;Australia: +61 (7) 3858 0100 
&lt;br&gt;&amp;gt; www.ephox.com
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19281360&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks-bounces@...&lt;/a&gt;
&lt;br&gt;&amp;gt; [mailto:&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19281360&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks-bounces@...&lt;/a&gt;] On Behalf Of Steven 
&lt;br&gt;&amp;gt; Drinkwater
&lt;br&gt;&amp;gt; Sent: Wednesday, 3 September 2008 9:39 AM
&lt;br&gt;&amp;gt; To: LiveWorks Discussion
&lt;br&gt;&amp;gt; Subject: [Liveworks] Session Problem
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi Guys,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Wondering if someone would be able to come up with a solution. We use 
&lt;br&gt;&amp;gt; a session on our site, which we time-out after 30 minutes. The session
&lt;/div&gt;&lt;br&gt;&amp;gt; is checked/updated when the editor is loaded (and therefore, when 
&lt;br&gt;&amp;gt; saved). But, of course, there is a problem when they are editing for 
&lt;br&gt;&amp;gt; over 30 minutes, and haven't yet saved.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Doe's anyone have a solution, to either allow me to update the session
&lt;br&gt;&lt;br&gt;&amp;gt; (I'm using PHP by the way), when an action is performed in the editor,
&lt;br&gt;&lt;br&gt;&amp;gt; or every x minutes, or something like that.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Also would it be worth suggesting a save-warning timed event feature 
&lt;br&gt;&amp;gt; which could be configured in the config XML file. Which would pop-up a
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; box suggesting they save or something.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; Steven
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19281360&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;&amp;gt; List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19281360&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;&amp;gt; List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19281360&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19281360&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Session-Problem-tp19280455p19281360.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19280857</id>
	<title>Re: Session Problem</title>
	<published>2008-09-02T17:19:12Z</published>
	<updated>2008-09-02T17:19:12Z</updated>
	<author>
		<name>Steven Drinkwater</name>
	</author>
	<content type="html">Hi Dylan,
&lt;br&gt;&lt;br&gt;Thanks for the very quick response :)
&lt;br&gt;&lt;br&gt;I was thinking of something like #1, but decided against it, because &amp;nbsp;
&lt;br&gt;of the drawbacks you mentioned, and could become a possible security &amp;nbsp;
&lt;br&gt;problem. And of course #4 was considered, but yeah, we don't want &amp;nbsp;
&lt;br&gt;that either ;)
&lt;br&gt;&lt;br&gt;#3 and #4 seem like good ideas, but I've never done Java development &amp;nbsp;
&lt;br&gt;or dabbled with the API in-depth, so it would take longer for me to &amp;nbsp;
&lt;br&gt;develop than other ideas, but might still be worth it.
&lt;br&gt;&lt;br&gt;#5 - Yup, I was also thinking of something along these lines, the &amp;nbsp;
&lt;br&gt;only problem being, is sometimes people 'play around' in the editor, &amp;nbsp;
&lt;br&gt;and they then might decide they don't want to keep these changes, but &amp;nbsp;
&lt;br&gt;has been over 'x' minutes, so we would also have to develop some kind &amp;nbsp;
&lt;br&gt;of roll-back-like functionality.. Again, this may actually be worth &amp;nbsp;
&lt;br&gt;it for us because an auto-save can't be a bad thing.
&lt;br&gt;&lt;br&gt;#6 - Nasteh! Good idea though, would be worth me considering.
&lt;br&gt;&lt;br&gt;&lt;br&gt;I'll see if anyone else comes up with some ideas/suggestions and then &amp;nbsp;
&lt;br&gt;have a word with my client and see what he thinks, and I'll get in &amp;nbsp;
&lt;br&gt;touch if I need pointing in the right direction for a certain &amp;nbsp;
&lt;br&gt;solution, if you don't mind :)
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Steven
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On 3 Sep 2008, at 01:02, Dylan Just wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You're basically looking for a &amp;quot;keepalive&amp;quot; solution. There's a few
&lt;br&gt;&amp;gt; options:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 1. Timed AJAX keepalive. You could use something like the Prototype JS
&lt;br&gt;&amp;gt; framework to make periodic HTTP requests to the server. As these
&lt;br&gt;&amp;gt; requests are in the same session, your session would stay alive. I &amp;nbsp;
&lt;br&gt;&amp;gt; think
&lt;br&gt;&amp;gt; Prototype has a periodic updater which could make this very simple.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2. You could catch editor events using Advanced APIs from Java. &amp;nbsp;
&lt;br&gt;&amp;gt; Whenever
&lt;br&gt;&amp;gt; your raiseEvent method is called, you could call out to Javascript, &amp;nbsp;
&lt;br&gt;&amp;gt; and
&lt;br&gt;&amp;gt; do an AJAX keepalive ping like above. You'd only want to do this on
&lt;br&gt;&amp;gt; certain events, to prevent flooding the server, and locking up the
&lt;br&gt;&amp;gt; editor. You'd need to get a reference to the &amp;quot;JSObject&amp;quot; in order to &amp;nbsp;
&lt;br&gt;&amp;gt; call
&lt;br&gt;&amp;gt; out to Javascript.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 3. Similar to #2, but you could make the keepalive http request from
&lt;br&gt;&amp;gt; within Java itself. EditLive!'s internal HTTP managers keep the same
&lt;br&gt;&amp;gt; session as the page they're within (the client cookie is passed to ELJ
&lt;br&gt;&amp;gt; on initialization). As such, a HTTP request from within ELJ should &amp;nbsp;
&lt;br&gt;&amp;gt; keep
&lt;br&gt;&amp;gt; the session alive.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 4. Simply remove or increase the session timeout.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 5. Implement some kind of an &amp;quot;autosave&amp;quot; every x seconds. You could use
&lt;br&gt;&amp;gt; javascript setTimeouts to do a periodic GetDocument and use an AJAX
&lt;br&gt;&amp;gt; framework to post that to a server, as a draft.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 6. Provide some kind of mechanism whereby the session can expire, but
&lt;br&gt;&amp;gt; the user can log back in again to recover, without losing their &amp;nbsp;
&lt;br&gt;&amp;gt; content.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; #1 is fairly straightforward, but a user can walk away and be doing
&lt;br&gt;&amp;gt; absolutely nothing and their session would stay alive - this may &amp;nbsp;
&lt;br&gt;&amp;gt; not be
&lt;br&gt;&amp;gt; desirable.
&lt;br&gt;&amp;gt; #2 and #3 are trickier. They may need hooking into EditLive! a little
&lt;br&gt;&amp;gt; deeper than we expose via Advanced APIs.
&lt;br&gt;&amp;gt; #4 is the simplest, but may not meet your needs.
&lt;br&gt;&amp;gt; #5 is fairly tricky, but gives you bonus functionality. It has the &amp;nbsp;
&lt;br&gt;&amp;gt; same
&lt;br&gt;&amp;gt; &amp;quot;user walks away&amp;quot; drawback as #1.
&lt;br&gt;&amp;gt; #6 would be tricky, but is probably the best solution in terms of
&lt;br&gt;&amp;gt; session maintenance and user experience.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If you have follow-up questions on the above, feel free to ask.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Does anyone else on the list have any other suggestions or comments?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Kind regards,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Dylan Just
&lt;br&gt;&amp;gt; Software Engineer
&lt;br&gt;&amp;gt; Global: +1 (650) 292 9659 x705 &amp;nbsp;Australia: +61 (7) 3858 0100
&lt;br&gt;&amp;gt; www.ephox.com
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19280857&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks-bounces@...&lt;/a&gt;
&lt;br&gt;&amp;gt; [mailto:&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19280857&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks-bounces@...&lt;/a&gt;] On Behalf Of Steven
&lt;br&gt;&amp;gt; Drinkwater
&lt;br&gt;&amp;gt; Sent: Wednesday, 3 September 2008 9:39 AM
&lt;br&gt;&amp;gt; To: LiveWorks Discussion
&lt;br&gt;&amp;gt; Subject: [Liveworks] Session Problem
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi Guys,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Wondering if someone would be able to come up with a solution. We use
&lt;br&gt;&amp;gt; a session on our site, which we time-out after 30 minutes. The
&lt;br&gt;&amp;gt; session is checked/updated when the editor is loaded (and therefore,
&lt;br&gt;&amp;gt; when saved). But, of course, there is a problem when they are editing
&lt;br&gt;&amp;gt; for over 30 minutes, and haven't yet saved.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Doe's anyone have a solution, to either allow me to update the
&lt;br&gt;&amp;gt; session (I'm using PHP by the way), when an action is performed in
&lt;br&gt;&amp;gt; the editor, or every x minutes, or something like that.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Also would it be worth suggesting a save-warning timed event feature
&lt;br&gt;&amp;gt; which could be configured in the config XML file. Which would pop-up
&lt;br&gt;&amp;gt; a box suggesting they save or something.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; Steven
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19280857&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;&amp;gt; List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19280857&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;&amp;gt; List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19280857&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Session-Problem-tp19280455p19280857.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19280850</id>
	<title>Re: Session Problem</title>
	<published>2008-09-02T17:17:26Z</published>
	<updated>2008-09-02T17:17:26Z</updated>
	<author>
		<name>Andrew Herron-5</name>
	</author>
	<content type="html">Personally I recommend #1 as it is a fairly standard solution used on
&lt;br&gt;other sites with a timeout. &amp;nbsp;Having said that every solution except #6
&lt;br&gt;will give the user an infinite timeout while the editor is open.
&lt;br&gt;&lt;br&gt;&lt;br&gt;On a side note:
&lt;br&gt;&lt;br&gt;&amp;gt; You'd need to get a reference to the &amp;quot;JSObject&amp;quot; in order to
&lt;br&gt;&amp;gt; call out to Javascript.
&lt;br&gt;&lt;br&gt;Actually, you can do this by calling raiseEvent on the bean using action
&lt;br&gt;ID TextEvent.CUSTOM_ACTION and your JavaScript function name as the
&lt;br&gt;extra string :)
&lt;br&gt;&lt;br&gt;&lt;br&gt;Andy
&lt;br&gt;&lt;br&gt;---
&lt;br&gt;Andrew Herron, Senior Software Engineer
&lt;br&gt;Global: +1 (650) 292 9659 x705 &amp;nbsp;Australia: +61 (7) 3858 0100
&lt;br&gt;Ephox &amp;lt;&lt;a href=&quot;http://www.ephox.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ephox.com&lt;/a&gt;&amp;gt; | Ephox Blogs &amp;lt;&lt;a href=&quot;http://people.ephox.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.ephox.com&lt;/a&gt;&amp;gt;
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19280850&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Session-Problem-tp19280455p19280850.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19280719</id>
	<title>Re: Session Problem</title>
	<published>2008-09-02T17:02:23Z</published>
	<updated>2008-09-02T17:02:23Z</updated>
	<author>
		<name>Dylan Just</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;You're basically looking for a &amp;quot;keepalive&amp;quot; solution. There's a few
&lt;br&gt;options:
&lt;br&gt;&lt;br&gt;1. Timed AJAX keepalive. You could use something like the Prototype JS
&lt;br&gt;framework to make periodic HTTP requests to the server. As these
&lt;br&gt;requests are in the same session, your session would stay alive. I think
&lt;br&gt;Prototype has a periodic updater which could make this very simple.
&lt;br&gt;&lt;br&gt;2. You could catch editor events using Advanced APIs from Java. Whenever
&lt;br&gt;your raiseEvent method is called, you could call out to Javascript, and
&lt;br&gt;do an AJAX keepalive ping like above. You'd only want to do this on
&lt;br&gt;certain events, to prevent flooding the server, and locking up the
&lt;br&gt;editor. You'd need to get a reference to the &amp;quot;JSObject&amp;quot; in order to call
&lt;br&gt;out to Javascript. 
&lt;br&gt;&lt;br&gt;3. Similar to #2, but you could make the keepalive http request from
&lt;br&gt;within Java itself. EditLive!'s internal HTTP managers keep the same
&lt;br&gt;session as the page they're within (the client cookie is passed to ELJ
&lt;br&gt;on initialization). As such, a HTTP request from within ELJ should keep
&lt;br&gt;the session alive.
&lt;br&gt;&lt;br&gt;4. Simply remove or increase the session timeout.
&lt;br&gt;&lt;br&gt;5. Implement some kind of an &amp;quot;autosave&amp;quot; every x seconds. You could use
&lt;br&gt;javascript setTimeouts to do a periodic GetDocument and use an AJAX
&lt;br&gt;framework to post that to a server, as a draft.
&lt;br&gt;&lt;br&gt;6. Provide some kind of mechanism whereby the session can expire, but
&lt;br&gt;the user can log back in again to recover, without losing their content.
&lt;br&gt;&lt;br&gt;&lt;br&gt;#1 is fairly straightforward, but a user can walk away and be doing
&lt;br&gt;absolutely nothing and their session would stay alive - this may not be
&lt;br&gt;desirable.
&lt;br&gt;#2 and #3 are trickier. They may need hooking into EditLive! a little
&lt;br&gt;deeper than we expose via Advanced APIs.
&lt;br&gt;#4 is the simplest, but may not meet your needs.
&lt;br&gt;#5 is fairly tricky, but gives you bonus functionality. It has the same
&lt;br&gt;&amp;quot;user walks away&amp;quot; drawback as #1.
&lt;br&gt;#6 would be tricky, but is probably the best solution in terms of
&lt;br&gt;session maintenance and user experience. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;If you have follow-up questions on the above, feel free to ask. 
&lt;br&gt;&lt;br&gt;Does anyone else on the list have any other suggestions or comments?
&lt;br&gt;&lt;br&gt;Kind regards,
&lt;br&gt;&lt;br&gt;Dylan Just
&lt;br&gt;Software Engineer
&lt;br&gt;Global: +1 (650) 292 9659 x705 &amp;nbsp;Australia: +61 (7) 3858 0100
&lt;br&gt;www.ephox.com
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19280719&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks-bounces@...&lt;/a&gt;
&lt;br&gt;[mailto:&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19280719&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks-bounces@...&lt;/a&gt;] On Behalf Of Steven
&lt;br&gt;Drinkwater
&lt;br&gt;Sent: Wednesday, 3 September 2008 9:39 AM
&lt;br&gt;To: LiveWorks Discussion
&lt;br&gt;Subject: [Liveworks] Session Problem
&lt;br&gt;&lt;br&gt;Hi Guys,
&lt;br&gt;&lt;br&gt;Wondering if someone would be able to come up with a solution. We use &amp;nbsp;
&lt;br&gt;a session on our site, which we time-out after 30 minutes. The &amp;nbsp;
&lt;br&gt;session is checked/updated when the editor is loaded (and therefore, &amp;nbsp;
&lt;br&gt;when saved). But, of course, there is a problem when they are editing &amp;nbsp;
&lt;br&gt;for over 30 minutes, and haven't yet saved.
&lt;br&gt;&lt;br&gt;Doe's anyone have a solution, to either allow me to update the &amp;nbsp;
&lt;br&gt;session (I'm using PHP by the way), when an action is performed in &amp;nbsp;
&lt;br&gt;the editor, or every x minutes, or something like that.
&lt;br&gt;&lt;br&gt;Also would it be worth suggesting a save-warning timed event feature &amp;nbsp;
&lt;br&gt;which could be configured in the config XML file. Which would pop-up &amp;nbsp;
&lt;br&gt;a box suggesting they save or something.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Steven
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19280719&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19280719&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Session-Problem-tp19280455p19280719.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19280455</id>
	<title>Session Problem</title>
	<published>2008-09-02T16:38:56Z</published>
	<updated>2008-09-02T16:38:56Z</updated>
	<author>
		<name>Steven Drinkwater</name>
	</author>
	<content type="html">Hi Guys,
&lt;br&gt;&lt;br&gt;Wondering if someone would be able to come up with a solution. We use &amp;nbsp;
&lt;br&gt;a session on our site, which we time-out after 30 minutes. The &amp;nbsp;
&lt;br&gt;session is checked/updated when the editor is loaded (and therefore, &amp;nbsp;
&lt;br&gt;when saved). But, of course, there is a problem when they are editing &amp;nbsp;
&lt;br&gt;for over 30 minutes, and haven't yet saved.
&lt;br&gt;&lt;br&gt;Doe's anyone have a solution, to either allow me to update the &amp;nbsp;
&lt;br&gt;session (I'm using PHP by the way), when an action is performed in &amp;nbsp;
&lt;br&gt;the editor, or every x minutes, or something like that.
&lt;br&gt;&lt;br&gt;Also would it be worth suggesting a save-warning timed event feature &amp;nbsp;
&lt;br&gt;which could be configured in the config XML file. Which would pop-up &amp;nbsp;
&lt;br&gt;a box suggesting they save or something.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Steven
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19280455&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Session-Problem-tp19280455p19280455.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19165909</id>
	<title>Re: Error with Express Edit not hidding tables</title>
	<published>2008-08-26T09:51:19Z</published>
	<updated>2008-08-26T09:51:19Z</updated>
	<author>
		<name>Adrian Sutton</name>
	</author>
	<content type="html">On 22/08/2008 17:07, &amp;quot;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19165909&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mario.blanco@...&lt;/a&gt;&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19165909&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mario.blanco@...&lt;/a&gt;&amp;gt;
&lt;br&gt;wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; I am using dojo framework to set the visibility: hidden || visible instead
&lt;br&gt;&amp;gt; of the display property to show/hide express edit. I have tried using the
&lt;br&gt;&amp;gt; display: none || '', but his causes the applet version of Ephox to restart
&lt;br&gt;&amp;gt; every time is shown.
&lt;br&gt;&lt;br&gt;Unfortunately this is a bug in IE7 and I can't really see a way for us to
&lt;br&gt;add a work around. It applies to any table with a border that appears within
&lt;br&gt;a section marked contenteditable=&amp;quot;true&amp;quot;. The only option I can see is to use
&lt;br&gt;style.display = &amp;quot;none&amp;quot; instead which doesn't trigger the problem. Since that
&lt;br&gt;causes applets to reload you'd have to switch which technique to use based
&lt;br&gt;on whether or not express edit is in use.
&lt;br&gt;&lt;br&gt;The simplest way I know of to tell if express edit is in use is simply to
&lt;br&gt;check if the applet is present. So if you have:
&lt;br&gt;var text_value = new EditLiveJava(vapRichEditor.editLiveId,&amp;quot;700&amp;quot;,&amp;quot;400&amp;quot;);
&lt;br&gt;&lt;br&gt;the check would be:
&lt;br&gt;&lt;br&gt;if (document.getElementById(vapRichEditor.editLiveId + &amp;quot;_elj&amp;quot;)) {
&lt;br&gt;&lt;br&gt;It's certainly a long way from ideal so hopefully we can come up with a way
&lt;br&gt;to make this easier in the future but at least this will provide a way
&lt;br&gt;forward.
&lt;br&gt;&lt;br&gt;For the record I've logged this in our bug tracking system as EL-1035.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Adrian Sutton.
&lt;br&gt;______________________
&lt;br&gt;Adrian Sutton, CTO
&lt;br&gt;UK: +44 1 753 27 2229 &amp;nbsp;US: +1 (650) 292 9659 x717
&lt;br&gt;Ephox &amp;lt;&lt;a href=&quot;http://www.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ephox.com/&lt;/a&gt;&amp;gt;
&lt;br&gt;Ephox Blogs &amp;lt;&lt;a href=&quot;http://planet.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://planet.ephox.com/&lt;/a&gt;&amp;gt;, Personal Blog
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.symphonious.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.symphonious.net/&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19165909&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Error-with-Express-Edit-not-hidding-tables-tp19096700p19165909.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19159365</id>
	<title>Re: Pasting from Word as clean html - remove links on headings? &lt;NOT PROTECTIVELY MARKED&gt;</title>
	<published>2008-08-26T03:16:29Z</published>
	<updated>2008-08-26T03:16:29Z</updated>
	<author>
		<name>Adrian Sutton</name>
	</author>
	<content type="html">On 25/08/2008 12:22, &amp;quot;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19159365&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tariq.chalabi@...&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19159365&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tariq.chalabi@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; However when translating headings from Word documents they appear as links
&lt;br&gt;&amp;gt; within headings - I think this is because the headings are used to build
&lt;br&gt;&amp;gt; up the table of contents in a Word document.
&lt;br&gt;&amp;gt; This then affects their styling.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Does anyone know a way of preventing these links been carried over into
&lt;br&gt;&amp;gt; the html?
&lt;br&gt;&lt;br&gt;Do you mean the HTML is something like:
&lt;br&gt;&lt;br&gt;&amp;lt;h1&amp;gt;&amp;lt;a name=&amp;quot;heading1&amp;quot;&amp;gt;Heading 1&amp;lt;/a&amp;gt;&amp;lt;/h1&amp;gt;
&lt;br&gt;&lt;br&gt;Short of implementing a custom paste filter there isn't a way to remove
&lt;br&gt;this, however it should be fairly simple to avoid it affecting the styling.
&lt;br&gt;In your stylesheet you probably have something like:
&lt;br&gt;&lt;br&gt;a { color: blue; text-decoration: none; }
&lt;br&gt;&lt;br&gt;The &amp;quot;a&amp;quot; tag serves two roles in HTML, one to be a link and one to be an
&lt;br&gt;anchor or link target (which is how it's being used by the headings). If you
&lt;br&gt;change your stylesheet to be:
&lt;br&gt;&lt;br&gt;a:link, a:visited, a:active { color: blue; text-decoration: none; }
&lt;br&gt;&lt;br&gt;Of course within stylesheets you can also use a:name to target just the
&lt;br&gt;anchor type of links if you prefer to do it that way around.
&lt;br&gt;&lt;br&gt;If you want to go the custom paste filter route, take a look at
&lt;br&gt;&lt;a href=&quot;http://liveworks.ephox.com/2008/05/06/preventing-users-from-pasting-images/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/2008/05/06/preventing-users-from-pasting-images/&lt;/a&gt;&lt;br&gt;and the code for the final plugin:
&lt;br&gt;&lt;a href=&quot;http://liveworks.ephox.com/plugins/filter-images/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/plugins/filter-images/&lt;/a&gt;&lt;br&gt;which should give you a reasonable starting point.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Adrian Sutton.
&lt;br&gt;______________________
&lt;br&gt;Adrian Sutton, CTO
&lt;br&gt;UK: +44 1 753 27 2229 &amp;nbsp;US: +1 (650) 292 9659 x717
&lt;br&gt;Ephox &amp;lt;&lt;a href=&quot;http://www.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ephox.com/&lt;/a&gt;&amp;gt;
&lt;br&gt;Ephox Blogs &amp;lt;&lt;a href=&quot;http://planet.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://planet.ephox.com/&lt;/a&gt;&amp;gt;, Personal Blog
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.symphonious.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.symphonious.net/&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19159365&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Pasting-from-Word-as-clean-html---remove-links-on-headings--%3CNOT-PROTECTIVELY-MARKED%3E-tp19159127p19159365.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19158046</id>
	<title>Re: Restrict colour pallete  &lt;NOT PROTECTIVELY MARKED&gt;</title>
	<published>2008-08-26T01:43:36Z</published>
	<updated>2008-08-26T01:43:36Z</updated>
	<author>
		<name>tariq.chalabi</name>
	</author>
	<content type="html">Dylan
&lt;br&gt;&lt;br&gt;Thanks for letting us know. &amp;nbsp;We look forward to using that feature.
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;&lt;br&gt;Tariq
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;quot;Dylan Just&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19158046&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dylan.just@...&lt;/a&gt;&amp;gt; 
&lt;br&gt;Sent by: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19158046&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks-bounces@...&lt;/a&gt;
&lt;br&gt;25/08/2008 23:38
&lt;br&gt;Please respond to
&lt;br&gt;LiveWorks Discussion &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19158046&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;To
&lt;br&gt;&amp;quot;LiveWorks Discussion&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19158046&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks@...&lt;/a&gt;&amp;gt;
&lt;br&gt;cc
&lt;br&gt;&lt;br&gt;Subject
&lt;br&gt;Re: [Liveworks] Restrict colour pallete &amp;lt;NOT PROTECTIVELY MARKED&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;This will be a feature of the upcoming EditLive! 6.5, due for release
&lt;br&gt;early September.
&lt;br&gt;&lt;br&gt;I'd recommend downloading our Early Access of 6.5 to test out this
&lt;br&gt;feature:
&lt;br&gt;&lt;a href=&quot;http://liveworks.ephox.com/editlive-early-access/development-branch/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/editlive-early-access/development-branch/&lt;/a&gt;&lt;br&gt;&lt;br&gt;The config option is &amp;quot;colorPalette&amp;quot;, under &amp;quot;wysiwygEditor&amp;quot;. Please refer
&lt;br&gt;to the documentation in that download.
&lt;br&gt;&lt;br&gt;Kind regards,
&lt;br&gt;&lt;br&gt;Dylan Just
&lt;br&gt;Software Engineer
&lt;br&gt;Global: +1 (650) 292 9659 x705 &amp;nbsp;Australia: +61 (7) 3858 0100
&lt;br&gt;www.ephox.com
&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19158046&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks-bounces@...&lt;/a&gt;
&lt;br&gt;[mailto:&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19158046&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks-bounces@...&lt;/a&gt;] On Behalf Of
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19158046&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tariq.chalabi@...&lt;/a&gt;
&lt;br&gt;Sent: Monday, 25 August 2008 10:06 PM
&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19158046&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks@...&lt;/a&gt;
&lt;br&gt;Subject: [Liveworks] Restrict colour pallete &amp;lt;NOT PROTECTIVELY MARKED&amp;gt;
&lt;br&gt;&lt;br&gt;hi all
&lt;br&gt;&lt;br&gt;Is it possible to restrict the colours available to users in the colour 
&lt;br&gt;palette?
&lt;br&gt;&lt;br&gt;There doesn't appear to be any option in the configuration file for
&lt;br&gt;doing 
&lt;br&gt;this.
&lt;br&gt;&lt;br&gt;I guess the one way &amp;nbsp;would be to use a stylesheet, but to my mind this 
&lt;br&gt;isn't as user-friendly or as flexible as the colour picker.
&lt;br&gt;&lt;br&gt;Kind regards
&lt;br&gt;&lt;br&gt;Tariq Chalabi
&lt;br&gt;&lt;br&gt;This communication is intended for the addressee(s) only. 
&lt;br&gt;Please notify the sender if received in error. Internet email 
&lt;br&gt;is not to be treated as a secure means of communication. 
&lt;br&gt;Cheshire Constabulary monitors all Internet and email activity 
&lt;br&gt;and requires it is used for official communications only. Thank 
&lt;br&gt;you for your co-operation.
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19158046&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19158046&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19158046&amp;i=10&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Restrict-colour-pallete-%3CNOT-PROTECTIVELY-MARKED%3E-tp19142646p19158046.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19152987</id>
	<title>Re: Restrict colour pallete &lt;NOT PROTECTIVELY MARKED&gt;</title>
	<published>2008-08-25T15:38:11Z</published>
	<updated>2008-08-25T15:38:11Z</updated>
	<author>
		<name>Dylan Just</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;This will be a feature of the upcoming EditLive! 6.5, due for release
&lt;br&gt;early September.
&lt;br&gt;&lt;br&gt;I'd recommend downloading our Early Access of 6.5 to test out this
&lt;br&gt;feature:
&lt;br&gt;&lt;a href=&quot;http://liveworks.ephox.com/editlive-early-access/development-branch/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/editlive-early-access/development-branch/&lt;/a&gt;&lt;br&gt;&lt;br&gt;The config option is &amp;quot;colorPalette&amp;quot;, under &amp;quot;wysiwygEditor&amp;quot;. Please refer
&lt;br&gt;to the documentation in that download.
&lt;br&gt;&lt;br&gt;Kind regards,
&lt;br&gt;&lt;br&gt;Dylan Just
&lt;br&gt;Software Engineer
&lt;br&gt;Global: +1 (650) 292 9659 x705 &amp;nbsp;Australia: +61 (7) 3858 0100
&lt;br&gt;www.ephox.com
&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19152987&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks-bounces@...&lt;/a&gt;
&lt;br&gt;[mailto:&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19152987&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks-bounces@...&lt;/a&gt;] On Behalf Of
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19152987&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tariq.chalabi@...&lt;/a&gt;
&lt;br&gt;Sent: Monday, 25 August 2008 10:06 PM
&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19152987&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks@...&lt;/a&gt;
&lt;br&gt;Subject: [Liveworks] Restrict colour pallete &amp;lt;NOT PROTECTIVELY MARKED&amp;gt;
&lt;br&gt;&lt;br&gt;hi all
&lt;br&gt;&lt;br&gt;Is it possible to restrict the colours available to users in the colour 
&lt;br&gt;palette?
&lt;br&gt;&lt;br&gt;There doesn't appear to be any option in the configuration file for
&lt;br&gt;doing 
&lt;br&gt;this.
&lt;br&gt;&lt;br&gt;I guess the one way &amp;nbsp;would be to use a stylesheet, but to my mind this 
&lt;br&gt;isn't as user-friendly or as flexible as the colour picker.
&lt;br&gt;&lt;br&gt;Kind regards
&lt;br&gt;&lt;br&gt;Tariq Chalabi
&lt;br&gt;&lt;br&gt;This communication is intended for the addressee(s) only. 
&lt;br&gt;Please notify the sender if received in error. Internet email 
&lt;br&gt;is not to be treated as a secure means of communication. 
&lt;br&gt;Cheshire Constabulary monitors all Internet and email activity 
&lt;br&gt;and requires it is used for official communications only. Thank 
&lt;br&gt;you for your co-operation.
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19152987&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19152987&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Restrict-colour-pallete-%3CNOT-PROTECTIVELY-MARKED%3E-tp19142646p19152987.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19142646</id>
	<title>Restrict colour pallete &lt;NOT PROTECTIVELY MARKED&gt;</title>
	<published>2008-08-25T05:05:49Z</published>
	<updated>2008-08-25T05:05:49Z</updated>
	<author>
		<name>tariq.chalabi</name>
	</author>
	<content type="html">hi all
&lt;br&gt;&lt;br&gt;Is it possible to restrict the colours available to users in the colour 
&lt;br&gt;palette?
&lt;br&gt;&lt;br&gt;There doesn't appear to be any option in the configuration file for doing 
&lt;br&gt;this.
&lt;br&gt;&lt;br&gt;I guess the one way &amp;nbsp;would be to use a stylesheet, but to my mind this 
&lt;br&gt;isn't as user-friendly or as flexible as the colour picker.
&lt;br&gt;&lt;br&gt;Kind regards
&lt;br&gt;&lt;br&gt;Tariq Chalabi
&lt;br&gt;&lt;br&gt;This communication is intended for the addressee(s) only. 
&lt;br&gt;Please notify the sender if received in error. Internet email 
&lt;br&gt;is not to be treated as a secure means of communication. 
&lt;br&gt;Cheshire Constabulary monitors all Internet and email activity 
&lt;br&gt;and requires it is used for official communications only. Thank 
&lt;br&gt;you for your co-operation.
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19142646&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Restrict-colour-pallete-%3CNOT-PROTECTIVELY-MARKED%3E-tp19142646p19142646.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19159127</id>
	<title>Pasting from Word as clean html - remove links on headings? &lt;NOT PROTECTIVELY MARKED&gt;</title>
	<published>2008-08-25T04:22:14Z</published>
	<updated>2008-08-25T04:22:14Z</updated>
	<author>
		<name>tariq.chalabi</name>
	</author>
	<content type="html">Hi all
&lt;br&gt;&lt;br&gt;Just started using new Ephox editor in IBM's Websphere Portal and so far 
&lt;br&gt;we're pleased with the results - &amp;nbsp;a big improvement on the IBM offering. 
&lt;br&gt;We do have a couple of configuration issues though..
&lt;br&gt;&lt;br&gt;We are using the &amp;quot;paste as clean HTML&amp;quot; option for word imports. &amp;nbsp;I must 
&lt;br&gt;say it does a good job of translating the Word formatting into html.
&lt;br&gt;&lt;br&gt;However when translating headings from Word documents they appear as links 
&lt;br&gt;within headings - I think this is because the headings are used to build 
&lt;br&gt;up the table of contents in a Word document.
&lt;br&gt;This then affects their styling.
&lt;br&gt;&lt;br&gt;Does anyone know a way of preventing these links been carried over into 
&lt;br&gt;the html?
&lt;br&gt;&lt;br&gt;Regards
&lt;br&gt;&lt;br&gt;Tariq Chalabi
&lt;br&gt;&lt;br&gt;This communication is intended for the addressee(s) only. 
&lt;br&gt;Please notify the sender if received in error. Internet email 
&lt;br&gt;is not to be treated as a secure means of communication. 
&lt;br&gt;Cheshire Constabulary monitors all Internet and email activity 
&lt;br&gt;and requires it is used for official communications only. Thank 
&lt;br&gt;you for your co-operation.
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19159127&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Pasting-from-Word-as-clean-html---remove-links-on-headings--%3CNOT-PROTECTIVELY-MARKED%3E-tp19159127p19159127.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19135817</id>
	<title>Re: FIXED. percent and plus sign causes ExpressEdit not to work</title>
	<published>2008-08-24T16:09:19Z</published>
	<updated>2008-08-24T16:09:19Z</updated>
	<author>
		<name>Dylan Just</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;The error indicates that you are not URL-encoding the content when
&lt;br&gt;passing it to setBody(). When content is URL-encoded, the % and + signs
&lt;br&gt;are used as 'escape' characters, to encode certain characters, e.g.
&lt;br&gt;&amp;quot;%20&amp;quot; for a space. 
&lt;br&gt;&lt;br&gt;Your content has a % in it, but the characters following it do not code
&lt;br&gt;for an actual character - as such, the error message is complaining
&lt;br&gt;about an &amp;quot;invalid escape sequence&amp;quot;.
&lt;br&gt;&lt;br&gt;We recommend that URL-encoding be done server-side, however, encoding
&lt;br&gt;with Javascript's encodeURIComponent() function also works. 
&lt;br&gt;&lt;br&gt;Kind regards,
&lt;br&gt;&lt;br&gt;Dylan Just
&lt;br&gt;Software Engineer
&lt;br&gt;Global: +1 (650) 292 9659 x705 &amp;nbsp;Australia: +61 (7) 3858 0100
&lt;br&gt;www.ephox.com
&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19135817&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks-bounces@...&lt;/a&gt;
&lt;br&gt;[mailto:&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19135817&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks-bounces@...&lt;/a&gt;] On Behalf Of
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19135817&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mario.blanco@...&lt;/a&gt;
&lt;br&gt;Sent: Saturday, 23 August 2008 5:14 AM
&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19135817&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks@...&lt;/a&gt;
&lt;br&gt;Subject: Re: [Liveworks] FIXED. percent and plus sign causes ExpressEdit
&lt;br&gt;not to work
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19135817&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mario.blanco@...&lt;/a&gt; wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;&lt;a href=&quot;http://www.nabble.com/file/p19113673/setBodyErrorIE.png&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/file/p19113673/setBodyErrorIE.png&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; &amp;nbsp;&lt;a href=&quot;http://www.nabble.com/file/p19113673/setBodyErrorFF.png&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/file/p19113673/setBodyErrorFF.png&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; When using the setBody() method and passing any string that constains
&lt;br&gt;a
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; percent sign % or plus sign +, Express Edits generates an error (see
&lt;br&gt;&amp;gt; attached screenshots).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Is there a method I need to parse the string before passing it to
&lt;br&gt;&amp;gt; setBody()?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; EditLive version: 6.3.7.118
&lt;br&gt;&amp;gt; IE: 7.0
&lt;br&gt;&amp;gt; FF: 2.0
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;Needed on encode the string by using encodeURIComponent()
&lt;br&gt;(&lt;a href=&quot;http://developer.mozilla.org/En/Core_JavaScript_1.5_Reference:Global_Fu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://developer.mozilla.org/En/Core_JavaScript_1.5_Reference:Global_Fu&lt;/a&gt;&lt;br&gt;nctions:encodeURIComponent)
&lt;br&gt;-- 
&lt;br&gt;View this message in context:
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/percent-and-plus-sign-causes-ExpressEdit-not-to-wo&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/percent-and-plus-sign-causes-ExpressEdit-not-to-wo&lt;/a&gt;&lt;br&gt;rk-tp19113673p19113852.html
&lt;br&gt;Sent from the LiveWorks! mailing list archive at Nabble.com.
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19135817&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19135817&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/percent-and-plus-sign-causes-ExpressEdit-not-to-work-tp19113673p19135817.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19113852</id>
	<title>Re: FIXED. percent and plus sign causes ExpressEdit not to work</title>
	<published>2008-08-22T12:14:21Z</published>
	<updated>2008-08-22T12:14:21Z</updated>
	<author>
		<name>mario.blanco@vignette.com</name>
	</author>
	<content type="html">&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;mario.blanco@vignette.com wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;&lt;img src=&quot;http://www.nabble.com/file/p19113673/setBodyErrorIE.png&quot; border=&quot;0&quot; /&gt;&lt;br&gt;&lt;img src=&quot;http://www.nabble.com/file/p19113673/setBodyErrorFF.png&quot; border=&quot;0&quot; /&gt;&lt;br&gt;&lt;br&gt;When using the setBody() method and passing any string that constains a percent sign % or plus sign +, Express Edits generates an error (see attached screenshots).
&lt;br&gt;&lt;br&gt;Is there a method I need to parse the string before passing it to setBody()?
&lt;br&gt;&lt;br&gt;EditLive version: 6.3.7.118
&lt;br&gt;IE: 7.0
&lt;br&gt;FF: 2.0
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
Needed on encode the string by using encodeURIComponent()
&lt;br&gt;(&lt;a href=&quot;http://developer.mozilla.org/En/Core_JavaScript_1.5_Reference:Global_Functions:encodeURIComponent&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://developer.mozilla.org/En/Core_JavaScript_1.5_Reference:Global_Functions:encodeURIComponent&lt;/a&gt;)</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/percent-and-plus-sign-causes-ExpressEdit-not-to-work-tp19113673p19113852.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19113673</id>
	<title>percent and plus sign causes ExpressEdit not to work</title>
	<published>2008-08-22T12:02:31Z</published>
	<updated>2008-08-22T12:02:31Z</updated>
	<author>
		<name>mario.blanco@vignette.com</name>
	</author>
	<content type="html">&lt;img src=&quot;http://www.nabble.com/file/p19113673/setBodyErrorIE.png&quot; border=&quot;0&quot; /&gt;&lt;br&gt;&lt;img src=&quot;http://www.nabble.com/file/p19113673/setBodyErrorFF.png&quot; border=&quot;0&quot; /&gt;&lt;br&gt;&lt;br&gt;When using the setBody() method and passing any string that constains a percent sign % or plus sign +, Express Edits generates an error (see attached screenshots).
&lt;br&gt;&lt;br&gt;Is there a method I need to parse the string before passing it to setBody()?
&lt;br&gt;&lt;br&gt;EditLive version: 6.3.7.118
&lt;br&gt;IE: 7.0
&lt;br&gt;FF: 2.0</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/percent-and-plus-sign-causes-ExpressEdit-not-to-work-tp19113673p19113673.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19110338</id>
	<title>Re: Error with Express Edit not hidding tables</title>
	<published>2008-08-22T09:07:31Z</published>
	<updated>2008-08-22T09:07:31Z</updated>
	<author>
		<name>mario.blanco@vignette.com</name>
	</author>
	<content type="html">&lt;a href=&quot;http://www.nabble.com/file/p19110338/ephoxExpressEditError.txt&quot; target=&quot;_top&quot;&gt;ephoxExpressEditError.txt&lt;/a&gt;&lt;br&gt;&lt;br&gt;Adrian,
&lt;br&gt;&lt;br&gt;&amp;nbsp; Thanks for your quick reply. I have attached pieces of Javascript and HTML code that I am using to show/hide and work with ExpressEdit.
&lt;br&gt;&lt;br&gt;&amp;nbsp; I am using dojo framework to set the visibility: hidden || visible instead of the display property to show/hide express edit. I have tried using the display: none || '', but his causes the applet version of Ephox to restart every time is shown.
&lt;br&gt;&lt;br&gt;&amp;nbsp; Thanks for taking a look and let me know if you need anything else from me.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;Mario
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Adrian Sutton wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;On 21/08/2008 21:57, &amp;quot;mario.blanco@vignette.com&amp;quot; &amp;lt;mario.blanco@vignette.com&amp;gt;
&lt;br&gt;wrote:
&lt;br&gt;&amp;gt; mario.blanco@vignette.com wrote:
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;&lt;a href=&quot;http://www.nabble.com/file/p19096700/errorHideExpressEdit.png&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/file/p19096700/errorHideExpressEdit.png&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; The attached screen shot shows that when hidding expressEdit the &amp;lt;table&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; inside expressEdit don't hide.
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; What is causing this issue?
&lt;br&gt;&lt;br&gt;Hi Mario,
&lt;br&gt;That's certainly an interesting case. &amp;nbsp;Does it only happen in IE7? It looks
&lt;br&gt;a lot like the table isn't inheriting the display: none that I assume you're
&lt;br&gt;using to hide express edit. Could you send through the HTML you're editing?
&lt;br&gt;It's probably also worth checking you don't have a stylesheet applied that
&lt;br&gt;sets table's to display: table or display: block or something which would
&lt;br&gt;cause them to reappear.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Adrian Sutton.
&lt;br&gt;______________________
&lt;br&gt;Adrian Sutton, CTO
&lt;br&gt;UK: +44 1 753 27 2229 &amp;nbsp;US: +1 (650) 292 9659 x717
&lt;br&gt;Ephox &amp;lt;&lt;a href=&quot;http://www.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ephox.com/&lt;/a&gt;&amp;gt;
&lt;br&gt;Ephox Blogs &amp;lt;&lt;a href=&quot;http://planet.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://planet.ephox.com/&lt;/a&gt;&amp;gt;, Personal Blog
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.symphonious.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.symphonious.net/&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;LiveWorks@liveworks.ephox.com
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Error-with-Express-Edit-not-hidding-tables-tp19096700p19110338.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19108081</id>
	<title>Re: Error with Express Edit not hidding tables</title>
	<published>2008-08-22T07:11:30Z</published>
	<updated>2008-08-22T07:11:30Z</updated>
	<author>
		<name>Adrian Sutton</name>
	</author>
	<content type="html">On 21/08/2008 21:57, &amp;quot;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19108081&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mario.blanco@...&lt;/a&gt;&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19108081&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mario.blanco@...&lt;/a&gt;&amp;gt;
&lt;br&gt;wrote:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19108081&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mario.blanco@...&lt;/a&gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;&lt;a href=&quot;http://www.nabble.com/file/p19096700/errorHideExpressEdit.png&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/file/p19096700/errorHideExpressEdit.png&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; The attached screen shot shows that when hidding expressEdit the &amp;lt;table&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; inside expressEdit don't hide.
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; What is causing this issue?
&lt;br&gt;&lt;br&gt;Hi Mario,
&lt;br&gt;That's certainly an interesting case. &amp;nbsp;Does it only happen in IE7? It looks
&lt;br&gt;a lot like the table isn't inheriting the display: none that I assume you're
&lt;br&gt;using to hide express edit. Could you send through the HTML you're editing?
&lt;br&gt;It's probably also worth checking you don't have a stylesheet applied that
&lt;br&gt;sets table's to display: table or display: block or something which would
&lt;br&gt;cause them to reappear.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Adrian Sutton.
&lt;br&gt;______________________
&lt;br&gt;Adrian Sutton, CTO
&lt;br&gt;UK: +44 1 753 27 2229 &amp;nbsp;US: +1 (650) 292 9659 x717
&lt;br&gt;Ephox &amp;lt;&lt;a href=&quot;http://www.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ephox.com/&lt;/a&gt;&amp;gt;
&lt;br&gt;Ephox Blogs &amp;lt;&lt;a href=&quot;http://planet.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://planet.ephox.com/&lt;/a&gt;&amp;gt;, Personal Blog
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.symphonious.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.symphonious.net/&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19108081&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Error-with-Express-Edit-not-hidding-tables-tp19096700p19108081.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19096747</id>
	<title>Re: Error with Express Edit not hidding tables</title>
	<published>2008-08-21T13:57:44Z</published>
	<updated>2008-08-21T13:57:44Z</updated>
	<author>
		<name>mario.blanco@vignette.com</name>
	</author>
	<content type="html">&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;mario.blanco@vignette.com wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;&lt;img src=&quot;http://www.nabble.com/file/p19096700/errorHideExpressEdit.png&quot; border=&quot;0&quot; /&gt;&lt;br&gt;&lt;br&gt;The attached screen shot shows that when hidding expressEdit the &amp;lt;table&amp;gt; inside expressEdit don't hide.
&lt;br&gt;&lt;br&gt;What is causing this issue?
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
I forgot to include:
&lt;br&gt;&amp;nbsp; Browser used: IE 7
&lt;br&gt;&amp;nbsp; EditLive/ExpressEdit version: Version: 6.3.7.118</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Error-with-Express-Edit-not-hidding-tables-tp19096700p19096747.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19096700</id>
	<title>Error with Express Edit not hidding tables</title>
	<published>2008-08-21T13:54:04Z</published>
	<updated>2008-08-21T13:54:04Z</updated>
	<author>
		<name>mario.blanco@vignette.com</name>
	</author>
	<content type="html">&lt;img src=&quot;http://www.nabble.com/file/p19096700/errorHideExpressEdit.png&quot; border=&quot;0&quot; /&gt;&lt;br&gt;&lt;br&gt;The attached screen shot shows that when hidding expressEdit the &amp;lt;table&amp;gt; inside expressEdit don't hide.
&lt;br&gt;&lt;br&gt;What is causing this issue?</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Error-with-Express-Edit-not-hidding-tables-tp19096700p19096700.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19078895</id>
	<title>Re: check if license has expired</title>
	<published>2008-08-20T14:59:47Z</published>
	<updated>2008-08-20T14:59:47Z</updated>
	<author>
		<name>Dylan Just</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Sorry, this is not possible.
&lt;br&gt;&lt;br&gt;Kind regards,
&lt;br&gt;&lt;br&gt;Dylan Just
&lt;br&gt;Software Engineer
&lt;br&gt;Global: +1 (650) 292 9659 x705 &amp;nbsp;Australia: +61 (7) 3858 0100
&lt;br&gt;www.ephox.com
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19078895&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks-bounces@...&lt;/a&gt;
&lt;br&gt;[mailto:&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19078895&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks-bounces@...&lt;/a&gt;] On Behalf Of
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19078895&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mario.blanco@...&lt;/a&gt;
&lt;br&gt;Sent: Wednesday, 20 August 2008 5:13 AM
&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19078895&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks@...&lt;/a&gt;
&lt;br&gt;Subject: [Liveworks] check if license has expired
&lt;br&gt;&lt;br&gt;&lt;br&gt;How can I check if the EditLive license has expired with JavaScript?
&lt;br&gt;-- 
&lt;br&gt;View this message in context:
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/check-if-license-has-expired-tp19056749p19056749.h&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/check-if-license-has-expired-tp19056749p19056749.h&lt;/a&gt;&lt;br&gt;tml
&lt;br&gt;Sent from the LiveWorks! mailing list archive at Nabble.com.
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19078895&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19078895&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/check-if-license-has-expired-tp19056749p19078895.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19056749</id>
	<title>check if license has expired</title>
	<published>2008-08-19T12:13:24Z</published>
	<updated>2008-08-19T12:13:24Z</updated>
	<author>
		<name>mario.blanco@vignette.com</name>
	</author>
	<content type="html">How can I check if the EditLive license has expired with JavaScript?</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/check-if-license-has-expired-tp19056749p19056749.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19023778</id>
	<title>Re: Html view &lt;style&gt; and &lt;link&gt; tags</title>
	<published>2008-08-17T15:04:43Z</published>
	<updated>2008-08-17T15:04:43Z</updated>
	<author>
		<name>Dylan Just</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;This is intentional behavior, because &amp;lt;style&amp;gt; and &amp;lt;link&amp;gt; belong in
&lt;br&gt;&amp;lt;head&amp;gt;. There is no way to customize this.
&lt;br&gt;&lt;br&gt;Why would you like these tags to be in &amp;lt;body&amp;gt;? Perhaps we could suggest
&lt;br&gt;another solution.
&lt;br&gt;&lt;br&gt;Kind regards,
&lt;br&gt;&lt;br&gt;Dylan Just
&lt;br&gt;Software Engineer
&lt;br&gt;Global: +1 (650) 292 9659 x705 &amp;nbsp;Australia: +61 (7) 3858 0100
&lt;br&gt;www.ephox.com
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19023778&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks-bounces@...&lt;/a&gt;
&lt;br&gt;[mailto:&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19023778&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks-bounces@...&lt;/a&gt;] On Behalf Of Brad Y
&lt;br&gt;Sent: Wednesday, 13 August 2008 8:09 AM
&lt;br&gt;To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19023778&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks@...&lt;/a&gt;
&lt;br&gt;Subject: [Liveworks] Html view &amp;lt;style&amp;gt; and &amp;lt;link&amp;gt; tags
&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;Does anyone know if there is a way to keep the &amp;lt;style&amp;gt; and &amp;lt;link&amp;gt; tags
&lt;br&gt;from
&lt;br&gt;being moved from the &amp;lt;body&amp;gt; tag to the &amp;lt;head&amp;gt; when switching between
&lt;br&gt;design
&lt;br&gt;view and back to html view? 
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;Brad
&lt;br&gt;-- 
&lt;br&gt;View this message in context:
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/Html-view-%3Cstyle%3E-and-%3Clink%3E-tags-tp189534&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Html-view-%3Cstyle%3E-and-%3Clink%3E-tags-tp189534&lt;/a&gt;&lt;br&gt;96p18953496.html
&lt;br&gt;Sent from the LiveWorks! mailing list archive at Nabble.com.
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19023778&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19023778&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Html-view-%3Cstyle%3E-and-%3Clink%3E-tags-tp18953496p19023778.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18953496</id>
	<title>Html view &lt;style&gt; and &lt;link&gt; tags</title>
	<published>2008-08-12T15:09:10Z</published>
	<updated>2008-08-12T15:09:10Z</updated>
	<author>
		<name>Brad Y</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Does anyone know if there is a way to keep the &amp;lt;style&amp;gt; and &amp;lt;link&amp;gt; tags from being moved from the &amp;lt;body&amp;gt; tag to the &amp;lt;head&amp;gt; when switching between design view and back to html view? 
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;Brad</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Html-view-%3Cstyle%3E-and-%3Clink%3E-tags-tp18953496p18953496.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18131988</id>
	<title>More Info on the July Quarterly Product Update</title>
	<published>2008-06-26T04:52:33Z</published>
	<updated>2008-06-26T04:52:33Z</updated>
	<author>
		<name>Adrian Sutton</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;We¹ve got an outline together for what we¹ll be presenting at the upcoming
&lt;br&gt;quarterly product update. &amp;nbsp;The webinar will be hosted by myself, Product
&lt;br&gt;Manager, Damien Fitzpatrick and Director of Products, Michael Fromin.
&lt;br&gt;&lt;br&gt;The update will cover:
&lt;br&gt;&lt;br&gt;* The recently released EditLive! 6.4 and what it can do for you today
&lt;br&gt;* Our newly released integration with RedDot, a partnership between Ephox
&lt;br&gt;and RedDot 
&lt;br&gt;* The upcoming EditLive! Enterprise Edition package with a collection of
&lt;br&gt;useful add-ons for EditLive! regardless of which system you're using it with
&lt;br&gt;* A sneak peak at the upcoming integration with Lotus Quickr
&lt;br&gt;* A brand new product from Ephox that brings simplicity, productivity and
&lt;br&gt;the best technologies from Web 2.0 to your CMS
&lt;br&gt;&lt;br&gt;To cater to a worldwide audience, the webinar will be run in three
&lt;br&gt;timezones, register for the most convenient one below:
&lt;br&gt;&lt;br&gt;Europe, July 2 10:00 AM ­ 11:00 AM BST (London Time):
&lt;br&gt;&lt;a href=&quot;https://www2.gotomeeting.com/register/623785051&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://www2.gotomeeting.com/register/623785051&lt;/a&gt;&lt;br&gt;&lt;br&gt;US, &amp;nbsp;July 2 11:00 AM ­ 12:00 PM PDT (California Time):
&lt;br&gt;&lt;a href=&quot;https://www2.gotomeeting.com/register/800101784&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://www2.gotomeeting.com/register/800101784&lt;/a&gt;&lt;br&gt;&lt;br&gt;Australia, July 3 11:00 AM ­ 12:00 PM EST (Sydney Time):
&lt;br&gt;&lt;a href=&quot;https://www2.gotomeeting.com/register/399057551&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://www2.gotomeeting.com/register/399057551&lt;/a&gt;&lt;br&gt;&lt;br&gt;Looking forward to seeing you all there.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Adrian Sutton.
&lt;br&gt;______________________
&lt;br&gt;Adrian Sutton, CTO
&lt;br&gt;UK: +44 1 753 27 2229 &amp;nbsp;US: +1 (650) 292 9659 x717
&lt;br&gt;Ephox &amp;lt;&lt;a href=&quot;http://www.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ephox.com/&lt;/a&gt;&amp;gt;
&lt;br&gt;Ephox Blogs &amp;lt;&lt;a href=&quot;http://planet.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://planet.ephox.com/&lt;/a&gt;&amp;gt;, Personal Blog
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.symphonious.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.symphonious.net/&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18131988&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;List instructions at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/More-Info-on-the-July-Quarterly-Product-Update-tp18131988p18131988.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18030473</id>
	<title>Re: how do I get removed from this list</title>
	<published>2008-06-20T07:15:47Z</published>
	<updated>2008-06-20T07:15:47Z</updated>
	<author>
		<name>Adrian Sutton</name>
	</author>
	<content type="html">On 20/06/2008 15:13, &amp;quot;Dave Reinhardt&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18030473&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Dave@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; how do I get removed from this list
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; LiveWorks mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18030473&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;&lt;br&gt;All the instructions are at &lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;&lt;br&gt;You simply send an email to &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18030473&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liveworks-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Adrian Sutton.
&lt;br&gt;&lt;br&gt;______________________
&lt;br&gt;Adrian Sutton, CTO
&lt;br&gt;UK: +44 1 753 27 2229 &amp;nbsp;US: +1 (650) 292 9659 x717
&lt;br&gt;Ephox &amp;lt;&lt;a href=&quot;http://www.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ephox.com/&lt;/a&gt;&amp;gt;
&lt;br&gt;Ephox Blogs &amp;lt;&lt;a href=&quot;http://planet.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://planet.ephox.com/&lt;/a&gt;&amp;gt;, Personal Blog
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.symphonious.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.symphonious.net/&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;LiveWorks mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18030473&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/how-do-I-get-removed-from-this-list-tp18030437p18030473.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18030437</id>
	<title>how do I get removed from this list</title>
	<published>2008-06-20T07:13:57Z</published>
	<updated>2008-06-20T07:13:57Z</updated>
	<author>
		<name>Dave Reinhardt</name>
	</author>
	<content type="html">&lt;br&gt;how do I get removed from this list
&lt;br&gt;_______________________________________________
&lt;br&gt;LiveWorks mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18030437&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/how-do-I-get-removed-from-this-list-tp18030437p18030437.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18030349</id>
	<title>Re: Blockquote / cite / address tag tool</title>
	<published>2008-06-20T07:08:31Z</published>
	<updated>2008-06-20T07:08:31Z</updated>
	<author>
		<name>Adrian Sutton</name>
	</author>
	<content type="html">&amp;gt; I am working with EditLive with Rhythmyx CMS, so I didn't need to write the
&lt;br&gt;&amp;gt; code to get the EditLive instance, or get the selected text. &amp;nbsp;However, I
&lt;br&gt;&amp;gt; found that it is necessary to insert a delay into the JavaScript code to
&lt;br&gt;&amp;gt; allow these functions time to complete, before my functions ran. &amp;nbsp;This is my
&lt;br&gt;&amp;gt; final code...
&lt;br&gt;&lt;br&gt;Thanks for posting this. One suggestion I'd have is to use a dedicated
&lt;br&gt;callback function instead of just inserting a delay, otherwise it is
&lt;br&gt;possible that getting the selected text might take longer than your delay.
&lt;br&gt;Additionally, we don't want to make the user wait longer than it actually
&lt;br&gt;needs.
&lt;br&gt;&lt;br&gt;So for blockQuote you'd have:
&lt;br&gt;&lt;br&gt;function blockQuoteTool()
&lt;br&gt;{ 
&lt;br&gt;&amp;nbsp; _editLiveInstance.GetSelectedText(&amp;quot;wrapBlockquote&amp;quot;);
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;function wrapBlockquote(selectedText)
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; wrapTag('blockquote', selectedText);
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;function wrapTag(tag, selectedText)
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; _editLiveInstance.InsertHTMLAtCursor(
&lt;br&gt;&amp;nbsp; &amp;nbsp; encodeURIComponent(&amp;quot;&amp;lt;&amp;quot;+ tag + &amp;quot;&amp;gt;&amp;quot; + &amp;nbsp;selectedText + &amp;quot;&amp;lt;/&amp;quot; + tag +&amp;quot;&amp;gt;&amp;quot;)
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;You could probably get clever and combine the first two functions:
&lt;br&gt;&lt;br&gt;function blockQuoteTool(selectedText) {
&lt;br&gt;&amp;nbsp; if (selectedText) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; wrapTag('blockquote', selectedText);
&lt;br&gt;&amp;nbsp; } else {
&lt;br&gt;&amp;nbsp; &amp;nbsp; _editLiveInstance.GetSelectedText(&amp;quot;blockQuoteTool&amp;quot;);
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;Even better might be to use GetSelectedText straight from the toolbar
&lt;br&gt;button:
&lt;br&gt;&amp;lt;customToolbarButton name=&amp;quot;blockquote&amp;quot; action=&amp;quot;GetSelectedText&amp;quot;
&lt;br&gt;value=&amp;quot;blockQuoteTool&amp;quot; text=&amp;quot;Insert Block Quote&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;then the function would be:
&lt;br&gt;&lt;br&gt;function blockQuoteTool(selectedText) {
&lt;br&gt;&amp;nbsp; wrapTag('blockquote', selectedText);
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Adrian Sutton
&lt;br&gt;______________________
&lt;br&gt;Adrian Sutton, CTO
&lt;br&gt;UK: +44 1 753 27 2229 &amp;nbsp;US: +1 (650) 292 9659 x717
&lt;br&gt;Ephox &amp;lt;&lt;a href=&quot;http://www.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ephox.com/&lt;/a&gt;&amp;gt;
&lt;br&gt;Ephox Blogs &amp;lt;&lt;a href=&quot;http://planet.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://planet.ephox.com/&lt;/a&gt;&amp;gt;, Personal Blog
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.symphonious.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.symphonious.net/&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;LiveWorks mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18030349&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Blockquote---cite---address-tag-tool-tp17275093p18030349.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18030177</id>
	<title>Re: Re stricting Table Options</title>
	<published>2008-06-20T06:58:43Z</published>
	<updated>2008-06-20T06:58:43Z</updated>
	<author>
		<name>Adrian Sutton</name>
	</author>
	<content type="html">&amp;gt; Is it possible to remove the background colour and background image options
&lt;br&gt;&amp;gt; available under table/row/column/cell properties?
&lt;br&gt;&lt;br&gt;Hi Tim,
&lt;br&gt;Unfortunately that's not possible at this stage. You'd have to disable our
&lt;br&gt;dialog and implement your own without those options which is probably more
&lt;br&gt;work than you were looking for.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Adrian Sutton.
&lt;br&gt;______________________
&lt;br&gt;Adrian Sutton, CTO
&lt;br&gt;UK: +44 1 753 27 2229 &amp;nbsp;US: +1 (650) 292 9659 x717
&lt;br&gt;Ephox &amp;lt;&lt;a href=&quot;http://www.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ephox.com/&lt;/a&gt;&amp;gt;
&lt;br&gt;Ephox Blogs &amp;lt;&lt;a href=&quot;http://planet.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://planet.ephox.com/&lt;/a&gt;&amp;gt;, Personal Blog
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.symphonious.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.symphonious.net/&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;LiveWorks mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18030177&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Restricting-Table-Options-tp18026665p18030177.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18026914</id>
	<title>Re: Blockquote / cite / address tag tool</title>
	<published>2008-06-20T03:53:20Z</published>
	<updated>2008-06-20T03:53:20Z</updated>
	<author>
		<name>TimJH</name>
	</author>
	<content type="html">Hi, here's an update for anyone who may be looking to do the same or similar.
&lt;br&gt;&lt;br&gt;I am working with EditLive with Rhythmyx CMS, so I didn't need to write the code to get the EditLive instance, or get the selected text. &amp;nbsp;However, I found that it is necessary to insert a delay into the JavaScript code to allow these functions time to complete, before my functions ran. &amp;nbsp;This is my final code...
&lt;br&gt;&lt;br&gt;&amp;nbsp;function blockQuoteTool()
&lt;br&gt;&amp;nbsp;{ 
&lt;br&gt;&amp;nbsp; _editLiveInstance.GetSelectedText(&amp;quot;ephoxSelectedText&amp;quot;);
&lt;br&gt;&amp;nbsp;// need to pause for a short while to allow the function to work
&lt;br&gt;&amp;nbsp; &amp;nbsp;setTimeout(&amp;quot;wrapTag('blockquote')&amp;quot;,350);
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;function citeTool()
&lt;br&gt;&amp;nbsp;{
&lt;br&gt;&amp;nbsp; _editLiveInstance.GetSelectedText(&amp;quot;ephoxSelectedText&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp;setTimeout(&amp;quot;wrapTag('cite')&amp;quot;,350);
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;function addressTool()
&lt;br&gt;&amp;nbsp;{
&lt;br&gt;&amp;nbsp; _editLiveInstance.GetSelectedText(&amp;quot;ephoxSelectedText&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp;setTimeout(&amp;quot;wrapTag('address')&amp;quot;,350);
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;function wrapTag(tag)
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp;_editLiveInstance.InsertHTMLAtCursor(
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; encodeURIComponent(&amp;quot;&amp;lt;&amp;quot;+ tag + &amp;quot;&amp;gt;&amp;quot; + &amp;nbsp;ephoxText + &amp;quot;&amp;lt;/&amp;quot; + tag +&amp;quot;&amp;gt;&amp;quot;)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ); &amp;nbsp;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;Hope that helps!</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Blockquote---cite---address-tag-tool-tp17275093p18026914.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18026665</id>
	<title>Restricting Table Options</title>
	<published>2008-06-20T03:47:59Z</published>
	<updated>2008-06-20T03:47:59Z</updated>
	<author>
		<name>TimJH</name>
	</author>
	<content type="html">Is it possible to remove the background colour and background image options available under table/row/column/cell properties?
&lt;br&gt;&lt;br&gt;I can see how I could remove the option to access the properties dialog box, but my client would like to go to a greater level of granularity, and specify which properties are editable.
&lt;br&gt;&lt;br&gt;Thanks!</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Restricting-Table-Options-tp18026665p18026665.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17864851</id>
	<title>Re: Hyperlink Preview?</title>
	<published>2008-06-16T06:48:56Z</published>
	<updated>2008-06-16T06:48:56Z</updated>
	<author>
		<name>Adrian Sutton</name>
	</author>
	<content type="html">On 16/06/2008 12:07, &amp;quot;svavar&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17864851&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;svavars@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Is there a way to test a hyperlink within Ephox, similar to the Ctrl+click in
&lt;br&gt;&amp;gt; Word?
&lt;br&gt;&lt;br&gt;Hi svavar,
&lt;br&gt;You can control-click links in EditLive! too. On Mac, you option-click since
&lt;br&gt;control-click is used to show the context menu. &amp;nbsp;If you've got a popup
&lt;br&gt;blocker running though, we aren't able to open a new window to show the tab
&lt;br&gt;in so it doesn't work.
&lt;br&gt;&lt;br&gt;In the Swing SDK, it generates a HYPERLINK_CLICKED event which should be
&lt;br&gt;caught and handled as appropriate for the application, but the applet
&lt;br&gt;handles it all itself.
&lt;br&gt;&lt;br&gt;Hope that helps,
&lt;br&gt;&lt;br&gt;Adrian.
&lt;br&gt;______________________
&lt;br&gt;Adrian Sutton, CTO
&lt;br&gt;US: +1 (650) 292 9659 x717 UK: +44 (20) 8123 0617 x717
&lt;br&gt;Ephox &amp;lt;&lt;a href=&quot;http://www.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ephox.com/&lt;/a&gt;&amp;gt;
&lt;br&gt;Ephox Blogs &amp;lt;&lt;a href=&quot;http://planet.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://planet.ephox.com/&lt;/a&gt;&amp;gt;, Personal Blog
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.symphonious.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.symphonious.net/&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;LiveWorks mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17864851&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Hyperlink-Preview--tp17862273p17864851.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17862351</id>
	<title>Quarterly Product Update - Early July</title>
	<published>2008-06-16T04:11:42Z</published>
	<updated>2008-06-16T04:11:42Z</updated>
	<author>
		<name>Adrian Sutton</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;Another quarter has flown by and it¹s time for our second quarterly product
&lt;br&gt;update. For those who didn¹t make it to our first quarterly update, they
&lt;br&gt;provide an opportunity to hear about about our product roadmaps so you can
&lt;br&gt;plan how to take best advantage of it. It also gives you a chance to talk
&lt;br&gt;directly to senior people in Ephox and give your feedback to help shape the
&lt;br&gt;roadmap going forward.
&lt;br&gt;&lt;br&gt;This quarter we have three sessions running to cover the global timezones so
&lt;br&gt;please choose the one that suits you best and register to get the call in
&lt;br&gt;details. We¹ll also record one of the sessions and make it available online
&lt;br&gt;afterwards.
&lt;br&gt;&lt;br&gt;Join us in July in one of these time zones:
&lt;br&gt;&lt;br&gt;Europe, July 2 10:00 AM ­ 11:00 AM BST (London Time):
&lt;br&gt;&lt;a href=&quot;https://www2.gotomeeting.com/register/623785051&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://www2.gotomeeting.com/register/623785051&lt;/a&gt;&lt;br&gt;&lt;br&gt;US, &amp;nbsp;July 2 11:00 AM ­ 12:00 PM PDT (California Time):
&lt;br&gt;&lt;a href=&quot;https://www2.gotomeeting.com/register/800101784&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://www2.gotomeeting.com/register/800101784&lt;/a&gt;&lt;br&gt;&lt;br&gt;Australia, July 3 11:00 AM ­ 12:00 PM EST (Sydney Time):
&lt;br&gt;&lt;a href=&quot;https://www2.gotomeeting.com/register/399057551&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://www2.gotomeeting.com/register/399057551&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Adrian Sutton 
&lt;br&gt;______________________
&lt;br&gt;Adrian Sutton, CTO
&lt;br&gt;US: +1 (650) 292 9659 x717 UK: +44 (20) 8123 0617 x717
&lt;br&gt;Ephox &amp;lt;&lt;a href=&quot;http://www.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ephox.com/&lt;/a&gt;&amp;gt;
&lt;br&gt;Ephox Blogs &amp;lt;&lt;a href=&quot;http://planet.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://planet.ephox.com/&lt;/a&gt;&amp;gt;, Personal Blog
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.symphonious.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.symphonious.net/&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;LiveWorks mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17862351&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Quarterly-Product-Update---Early-July-tp17862351p17862351.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17862273</id>
	<title>Hyperlink Preview?</title>
	<published>2008-06-16T04:07:47Z</published>
	<updated>2008-06-16T04:07:47Z</updated>
	<author>
		<name>svavar</name>
	</author>
	<content type="html">Is there a way to test a hyperlink within Ephox, similar to the Ctrl+click in Word?</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Hyperlink-Preview--tp17862273p17862273.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17552791</id>
	<title>Re: Issue while Ephox rendering</title>
	<published>2008-05-29T23:56:03Z</published>
	<updated>2008-05-29T23:56:03Z</updated>
	<author>
		<name>Adrian Sutton</name>
	</author>
	<content type="html">&amp;gt; We are observing a strange behavior while rendering Ephox screen, we
&lt;br&gt;&amp;gt; have a JSP page which has Ephox integrated with it, when page is loaded
&lt;br&gt;&amp;gt; we see ephox applet screen loaded properly.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; However when data is entered and page refreshed on Save or other
&lt;br&gt;&amp;gt; operation we see white line spacing on Ephox screen, this disappears if
&lt;br&gt;&amp;gt; we minimize browser window or scroll page up and down.
&lt;br&gt;&lt;br&gt;Hi Naveen,
&lt;br&gt;Unfortunately the list strips out attachments so we didn't get the images
&lt;br&gt;you sent through. Without them it's hard to tell what's going on. Since it
&lt;br&gt;sounds like you need help pretty rapidly to keep your business users happy,
&lt;br&gt;it's probably better in this case to log a support case (
&lt;br&gt;&lt;a href=&quot;http://www.ephox.com/support/request/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ephox.com/support/request/&lt;/a&gt;). Make sure you include a debug log (
&lt;br&gt;&lt;a href=&quot;http://www.ephox.com/support/request/ELJreplication.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ephox.com/support/request/ELJreplication.html&lt;/a&gt;) as this will let
&lt;br&gt;us identify the environment you're using and help point us to the source of
&lt;br&gt;the problem.
&lt;br&gt;&lt;br&gt;The only thing I can think of that might cause a problem like this is if the
&lt;br&gt;document content you're passing into EditLive! isn't escaped properly this
&lt;br&gt;may cause HTML rendering issues, but I wouldn't expect it to disappear when
&lt;br&gt;scrolling up and down.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Adrian Sutton.
&lt;br&gt;______________________
&lt;br&gt;Adrian Sutton, CTO
&lt;br&gt;US: +1 (650) 292 9659 x717 UK: +44 (20) 8123 0617 x717
&lt;br&gt;Ephox &amp;lt;&lt;a href=&quot;http://www.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ephox.com/&lt;/a&gt;&amp;gt;
&lt;br&gt;Ephox Blogs &amp;lt;&lt;a href=&quot;http://planet.ephox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://planet.ephox.com/&lt;/a&gt;&amp;gt;, Personal Blog
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.symphonious.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.symphonious.net/&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;LiveWorks mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17552791&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Issue-while-Ephox-rendering-tp17535334p17552791.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17535334</id>
	<title>Issue while Ephox rendering</title>
	<published>2008-05-29T04:14:49Z</published>
	<updated>2008-05-29T04:14:49Z</updated>
	<author>
		<name>Naveen Patel</name>
	</author>
	<content type="html">&lt;br&gt;Hi
&lt;br&gt;&lt;br&gt;We are observing a strange behavior while rendering Ephox screen, we
&lt;br&gt;have a JSP page which has Ephox integrated with it, when page is loaded
&lt;br&gt;we see ephox applet screen loaded properly.
&lt;br&gt;&lt;br&gt;However when data is entered and page refreshed on Save or other
&lt;br&gt;operation we see white line spacing on Ephox screen, this disappears if
&lt;br&gt;we minimize browser window or scroll page up and down.
&lt;br&gt;&lt;br&gt;Look like applet rendering problem
&lt;br&gt;&lt;br&gt;I am interesting in knowing how do we solve this and has anyone else
&lt;br&gt;faced the same issue.
&lt;br&gt;&lt;br&gt;Need all your help since Business users are complaining a lot and its
&lt;br&gt;unacceptable for them to see this happening
&lt;br&gt;&lt;br&gt;Attached 2 screen shots, one while there is rendering issue and other
&lt;br&gt;when it loaded properly
&lt;br&gt;&lt;br&gt;Regards
&lt;br&gt;Naveen
&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;lt;&amp;lt;Broken-Ephox-Rendering.JPG&amp;gt;&amp;gt; &amp;nbsp;&amp;lt;&amp;lt;Ephox-Correct-Rendering.JPG&amp;gt;&amp;gt; 
&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;LiveWorks mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17535334&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiveWorks@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://liveworks.ephox.com/mailing-list/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveworks.ephox.com/mailing-list/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Issue-while-Ephox-rendering-tp17535334p17535334.html" />
</entry>

</feed>
