<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.nabble.com,2006:forum-2294</id>
	<title>Nabble - Komodo IDE</title>
	<updated>2008-09-29T12:40:57Z</updated>
	<link rel="self" type="application/atom+xml" href="http://www.nabble.com/Komodo-IDE-f2294.xml" />
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Komodo-IDE-f2294.html" />
	<subtitle type="html">ActiveState Komodo is the award-winning, professional integrated development environment (IDE) for dynamic languages, providing a powerful workspace for editing, debugging and testing your programs. Komodo offers advanced support for Perl, PHP, Python, Tcl and XSLT, and runs on Linux, Solaris and Windows. Komodo IDE home is &lt;a href=&quot;http://www.activestate.com/Products/Komodo/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:www.nabble.com,2006:post-19730354</id>
	<title>Re: macro ouput</title>
	<published>2008-09-29T12:40:57Z</published>
	<updated>2008-09-29T12:40:57Z</updated>
	<author>
		<name>Trent Mick</name>
	</author>
	<content type="html">Jeff Griffiths wrote:
&lt;br&gt;&amp;gt; You can always set focus back to the Editor in JS after that:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ko.views.manager.currentView.setFocus();
&lt;br&gt;&lt;br&gt;Aside: That is what the run command code was attempting to do, modulo a 
&lt;br&gt;bug, so it didn't work.
&lt;br&gt;&lt;br&gt;Fixed by:
&lt;br&gt;&amp;nbsp; &amp;nbsp;komodo r23611 (trunk)
&lt;br&gt;&amp;nbsp; &amp;nbsp;openkomodo r2247 (trunk)
&lt;br&gt;This will be in Komodo 5.0.0b1.
&lt;br&gt;&lt;br&gt;Trent
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Trent Mick
&lt;br&gt;trentm at activestate.com
&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19730354&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/macro-ouput-tp19726208p19730354.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19730000</id>
	<title>Re: macro ouput</title>
	<published>2008-09-29T12:16:46Z</published>
	<updated>2008-09-29T12:16:46Z</updated>
	<author>
		<name>Jeff Griffiths-2</name>
	</author>
	<content type="html">You can always set focus back to the Editor in JS after that:
&lt;br&gt;&lt;br&gt;ko.views.manager.currentView.setFocus();
&lt;br&gt;&lt;br&gt;With some actions in Komodo you can run into timing problems especially 
&lt;br&gt;when shelling out to things, so you might have to play around with the 
&lt;br&gt;optional callback argument to runEncodedCommand:
&lt;br&gt;&lt;br&gt;var cmd = &amp;quot;perl -e '$|=1;print \&amp;quot;sleeping... \&amp;quot;; sleep(5); print 
&lt;br&gt;\&amp;quot;waking up\n\&amp;quot;'&amp;quot;;
&lt;br&gt;&lt;br&gt;ko.run.runEncodedCommand(window, cmd, function() { alert('finished!'); });
&lt;br&gt;&lt;br&gt;JeffG
&lt;br&gt;&lt;br&gt;On 9/29/08 11:07 AM, Anton Visser wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; so now I have &amp;nbsp;ko.run.runEncodedCommand(window,
&lt;br&gt;&amp;gt; '/home/anton/bin/devSync.sh &amp;nbsp;{&amp;quot;doNotOpenOutputWindow&amp;quot;: True}');
&lt;br&gt;&amp;gt; which works great, but focus is still removed from the editor. &amp;nbsp;I am
&lt;br&gt;&amp;gt; guess that this is just the way xul works?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; cheers,
&lt;br&gt;&amp;gt; Anton
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Mon, Sep 29, 2008 at 1:01 PM, Trent Mick&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19730000&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;trentm@...&lt;/a&gt;&amp;gt; &amp;nbsp;wrote:
&lt;br&gt;&amp;gt;&amp;gt; ko.run.runEncodedCommand(window,
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;'echo hi {&amp;quot;doNotOpenOutputWindow&amp;quot;: True}');
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The trailing bit is the &amp;quot;encoded&amp;quot; part of an encoded command. It is the
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;repr&amp;quot; of a Python dictionary of the options for running a Komodo &amp;quot;Run
&lt;br&gt;&amp;gt;&amp;gt; Command&amp;quot;. This option is the name of the &amp;quot;Do no open output pane&amp;quot; checkbox
&lt;br&gt;&amp;gt;&amp;gt; in the Run dialog.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; To discover this things you can run a test command with the &amp;quot;Run&amp;quot; dialog,
&lt;br&gt;&amp;gt;&amp;gt; and then look at &amp;quot;Tools&amp;gt; &amp;nbsp;Recent Commands&amp;quot; to see what the encoded string
&lt;br&gt;&amp;gt;&amp;gt; needs to look like.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;&amp;gt; Trent
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Anton Visser wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ko.run.runEncodedCommand(window, '/home/anton/bin/devSync.sh');
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Right now, the Command Output window pops up and takes focus. &amp;nbsp;It
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; would be great to check a box, or something so that the window stays
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; hidden and focus remains in the editor.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; cheers,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Anton
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; On Mon, Sep 29, 2008 at 12:35 PM, Trent Mick&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19730000&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;trentm@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Anton Visser wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Does anyone know how to suppress the output from a macro. &amp;nbsp;By this I
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; mean, that the Command Output tab does not popup when a macro is
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; trigger on save, for instance.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; What does your macro look like? Are you using something like
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; ko.run.runEncodedCommand(...)?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Trent
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Trent Mick
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; trentm at activestate.com
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; Trent Mick
&lt;br&gt;&amp;gt;&amp;gt; trentm at activestate.com
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Komodo-discuss mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19730000&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;&amp;gt; To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;&amp;gt; Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;blog: &amp;nbsp; &lt;a href=&quot;http://www.openkomodo.com/blogs/jeffg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openkomodo.com/blogs/jeffg&lt;/a&gt;&lt;br&gt;web: &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.ActiveState.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ActiveState.com&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19730000&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/macro-ouput-tp19726208p19730000.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19729660</id>
	<title>Re: macro ouput</title>
	<published>2008-09-29T11:55:26Z</published>
	<updated>2008-09-29T11:55:26Z</updated>
	<author>
		<name>Trent Mick</name>
	</author>
	<content type="html">Anton Visser wrote:
&lt;br&gt;&amp;gt; so now I have &amp;nbsp;ko.run.runEncodedCommand(window,
&lt;br&gt;&amp;gt; '/home/anton/bin/devSync.sh &amp;nbsp;{&amp;quot;doNotOpenOutputWindow&amp;quot;: True}');
&lt;br&gt;&amp;gt; which works great, but focus is still removed from the editor. &amp;nbsp;I am
&lt;br&gt;&amp;gt; guess that this is just the way xul works?
&lt;br&gt;&lt;br&gt;No, that is a bug. Komodo's run-command system should not move focus to 
&lt;br&gt;the command output window if it is told not to open the output window.
&lt;br&gt;&lt;br&gt;Could you log a bug on me for that?
&lt;br&gt;&lt;br&gt;Trent
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Trent Mick
&lt;br&gt;trentm at activestate.com
&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19729660&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/macro-ouput-tp19726208p19729660.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19728861</id>
	<title>Re: macro ouput</title>
	<published>2008-09-29T11:07:33Z</published>
	<updated>2008-09-29T11:07:33Z</updated>
	<author>
		<name>Anton Visser</name>
	</author>
	<content type="html">so now I have &amp;nbsp;ko.run.runEncodedCommand(window,
&lt;br&gt;'/home/anton/bin/devSync.sh &amp;nbsp;{&amp;quot;doNotOpenOutputWindow&amp;quot;: True}');
&lt;br&gt;which works great, but focus is still removed from the editor. &amp;nbsp;I am
&lt;br&gt;guess that this is just the way xul works?
&lt;br&gt;&lt;br&gt;cheers,
&lt;br&gt;Anton
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Mon, Sep 29, 2008 at 1:01 PM, Trent Mick &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19728861&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;trentm@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; ko.run.runEncodedCommand(window,
&lt;br&gt;&amp;gt; &amp;nbsp; 'echo hi {&amp;quot;doNotOpenOutputWindow&amp;quot;: True}');
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The trailing bit is the &amp;quot;encoded&amp;quot; part of an encoded command. It is the
&lt;br&gt;&amp;gt; &amp;quot;repr&amp;quot; of a Python dictionary of the options for running a Komodo &amp;quot;Run
&lt;br&gt;&amp;gt; Command&amp;quot;. This option is the name of the &amp;quot;Do no open output pane&amp;quot; checkbox
&lt;br&gt;&amp;gt; in the Run dialog.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; To discover this things you can run a test command with the &amp;quot;Run&amp;quot; dialog,
&lt;br&gt;&amp;gt; and then look at &amp;quot;Tools &amp;gt; Recent Commands&amp;quot; to see what the encoded string
&lt;br&gt;&amp;gt; needs to look like.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; Trent
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Anton Visser wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ko.run.runEncodedCommand(window, '/home/anton/bin/devSync.sh');
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Right now, the Command Output window pops up and takes focus. &amp;nbsp;It
&lt;br&gt;&amp;gt;&amp;gt; would be great to check a box, or something so that the window stays
&lt;br&gt;&amp;gt;&amp;gt; hidden and focus remains in the editor.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; cheers,
&lt;br&gt;&amp;gt;&amp;gt; Anton
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Mon, Sep 29, 2008 at 12:35 PM, Trent Mick &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19728861&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;trentm@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Anton Visser wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Does anyone know how to suppress the output from a macro. &amp;nbsp;By this I
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; mean, that the Command Output tab does not popup when a macro is
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; trigger on save, for instance.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; What does your macro look like? Are you using something like
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ko.run.runEncodedCommand(...)?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Trent
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Trent Mick
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; trentm at activestate.com
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Trent Mick
&lt;br&gt;&amp;gt; trentm at activestate.com
&lt;br&gt;&amp;gt;
&lt;/div&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19728861&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/macro-ouput-tp19726208p19728861.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19728713</id>
	<title>Re: macro ouput</title>
	<published>2008-09-29T10:59:12Z</published>
	<updated>2008-09-29T10:59:12Z</updated>
	<author>
		<name>Trent Mick</name>
	</author>
	<content type="html">ko.run.runEncodedCommand(window,
&lt;br&gt;&amp;nbsp; &amp;nbsp; 'echo hi {&amp;quot;doNotOpenOutputWindow&amp;quot;: True}');
&lt;br&gt;&lt;br&gt;The trailing bit is the &amp;quot;encoded&amp;quot; part of an encoded command. It is the 
&lt;br&gt;&amp;quot;repr&amp;quot; of a Python dictionary of the options for running a Komodo &amp;quot;Run 
&lt;br&gt;Command&amp;quot;. This option is the name of the &amp;quot;Do no open output pane&amp;quot; 
&lt;br&gt;checkbox in the Run dialog.
&lt;br&gt;&lt;br&gt;To discover this things you can run a test command with the &amp;quot;Run&amp;quot; 
&lt;br&gt;dialog, and then look at &amp;quot;Tools &amp;gt; Recent Commands&amp;quot; to see what the 
&lt;br&gt;encoded string needs to look like.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Trent
&lt;br&gt;&lt;br&gt;&lt;br&gt;Anton Visser wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; ko.run.runEncodedCommand(window, '/home/anton/bin/devSync.sh');
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Right now, the Command Output window pops up and takes focus. &amp;nbsp;It
&lt;br&gt;&amp;gt; would be great to check a box, or something so that the window stays
&lt;br&gt;&amp;gt; hidden and focus remains in the editor.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; cheers,
&lt;br&gt;&amp;gt; Anton
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Mon, Sep 29, 2008 at 12:35 PM, Trent Mick &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19728713&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;trentm@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; Anton Visser wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Does anyone know how to suppress the output from a macro. &amp;nbsp;By this I
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; mean, that the Command Output tab does not popup when a macro is
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; trigger on save, for instance.
&lt;br&gt;&amp;gt;&amp;gt; What does your macro look like? Are you using something like
&lt;br&gt;&amp;gt;&amp;gt; ko.run.runEncodedCommand(...)?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Trent
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; Trent Mick
&lt;br&gt;&amp;gt;&amp;gt; trentm at activestate.com
&lt;br&gt;&amp;gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Trent Mick
&lt;br&gt;trentm at activestate.com
&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19728713&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/macro-ouput-tp19726208p19728713.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19728276</id>
	<title>Re: macro ouput</title>
	<published>2008-09-29T10:33:24Z</published>
	<updated>2008-09-29T10:33:24Z</updated>
	<author>
		<name>Trent Mick</name>
	</author>
	<content type="html">Anton Visser wrote:
&lt;br&gt;&amp;gt; Does anyone know how to suppress the output from a macro. &amp;nbsp;By this I
&lt;br&gt;&amp;gt; mean, that the Command Output tab does not popup when a macro is
&lt;br&gt;&amp;gt; trigger on save, for instance.
&lt;br&gt;&lt;br&gt;What does your macro look like? Are you using something like 
&lt;br&gt;ko.run.runEncodedCommand(...)?
&lt;br&gt;&lt;br&gt;Trent
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Trent Mick
&lt;br&gt;trentm at activestate.com
&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19728276&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/macro-ouput-tp19726208p19728276.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19726208</id>
	<title>macro ouput</title>
	<published>2008-09-29T08:35:00Z</published>
	<updated>2008-09-29T08:35:00Z</updated>
	<author>
		<name>Anton Visser</name>
	</author>
	<content type="html">Does anyone know how to suppress the output from a macro. &amp;nbsp;By this I
&lt;br&gt;mean, that the Command Output tab does not popup when a macro is
&lt;br&gt;trigger on save, for instance.
&lt;br&gt;&lt;br&gt;cheers,
&lt;br&gt;Anton
&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19726208&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/macro-ouput-tp19726208p19726208.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19655068</id>
	<title>Komodo 5.0.0a3 ready for downloading</title>
	<published>2008-09-24T11:27:51Z</published>
	<updated>2008-09-24T11:27:51Z</updated>
	<author>
		<name>Todd Whiteman</name>
	</author>
	<content type="html">Hello all,
&lt;br&gt;&lt;br&gt;We are happy to announce the release of Komodo 5.0.0 alpha 3:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://downloads.activestate.com/Komodo/releases/5.0.0a3/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://downloads.activestate.com/Komodo/releases/5.0.0a3/&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://docs.activestate.com/komodo/5.0/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.activestate.com/komodo/5.0/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Significant changes since alpha 2:
&lt;br&gt;&lt;br&gt;- New Source Code Control checkout wizard, supporting CVS, Subversion, 
&lt;br&gt;Mercurial, Bazaar and Git (not Perforce... as it's just different).
&lt;br&gt;- Lots of Komodo UI styling changes for the sidebars and tabs, let us 
&lt;br&gt;know if you like the new look.
&lt;br&gt;- You can now use the Add-ons dialog to search and install new Komodo 
&lt;br&gt;extensions.
&lt;br&gt;- Fixed initial problems with Mercurial, Bazaar and Git source
&lt;br&gt;code control systems, these should now work as expected, even on Windows!
&lt;br&gt;- Komodo will now save and restore the window position(s) between sessions.
&lt;br&gt;- Lots of other fixes and changes, see the release notes for full details.
&lt;br&gt;&lt;br&gt;Known issues:
&lt;br&gt;- Auto-update does not work for this release. We had a couple of issues
&lt;br&gt;related to our upgrade to Mozilla 1.9. We should have auto-updating
&lt;br&gt;sorted out for beta.
&lt;br&gt;- Mac OS X/PowerPC builds are still not fully working. Mac OS X/*Intel*
&lt;br&gt;builds are fine though.
&lt;br&gt;&lt;br&gt;&lt;br&gt;We welcome your feedback:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; email: &lt;a href=&quot;http://listserv.activestate.com/mailman/listinfo/komodo-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.activestate.com/mailman/listinfo/komodo-beta&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;bugs: &lt;a href=&quot;http://bugs.activestate.com/enter_bug.cgi?product=Komodo&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugs.activestate.com/enter_bug.cgi?product=Komodo&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;forums: &lt;a href=&quot;http://community.activestate.com/products/Komodo&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://community.activestate.com/products/Komodo&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Todd
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Todd Whiteman - &amp;quot;Komodo roper&amp;quot;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19655068&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Komodo-5.0.0a3-ready-for-downloading-tp19655068p19655068.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19582123</id>
	<title>FYI: Extension updates are b0rk3d</title>
	<published>2008-09-19T19:46:41Z</published>
	<updated>2008-09-19T19:46:41Z</updated>
	<author>
		<name>Jeff Griffiths-2</name>
	</author>
	<content type="html">The extension update service can't find the database right now ( this is 
&lt;br&gt;what I do on a Friday night these days, grepping server access files... 
&lt;br&gt;=) I suspect this may be due to some server swapping we did earlier in 
&lt;br&gt;the week at our Co-lo, and things should be back to normal by the end of 
&lt;br&gt;the weekend.
&lt;br&gt;&lt;br&gt;cheers, JeffG
&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19582123&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/FYI%3A-Extension-updates-are-b0rk3d-tp19582123p19582123.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19414486</id>
	<title>Strange Behaviour in Komodo</title>
	<published>2008-09-10T07:12:21Z</published>
	<updated>2008-09-10T07:12:21Z</updated>
	<author>
		<name>J. Keith Chant</name>
	</author>
	<content type="html">&lt;br&gt;I am working with Komodo (v4.4.1) on a Windows 2003 domain connected Windows XP
&lt;br&gt;Pro SP3 machine. &amp;nbsp;I have a drive mapped to a non-domain machine that hosts my
&lt;br&gt;development files. When working in Komodo, with files opened off the mapped
&lt;br&gt;drive Komodo seems to hang for about 30 seconds to a minute when I click save.
&lt;br&gt;This only happens with Komodo and it seems to happen more frequently when I have
&lt;br&gt;a project open. If I close my project and restart Komodo the problem is largely
&lt;br&gt;gone (with only the occasional hang). &amp;nbsp;I am running Symantec Client Security 3.1
&lt;br&gt;(Symantec Corporate Antivirus 10.1.5 and Symantec Client Firewall). &amp;nbsp;Also when
&lt;br&gt;this happens, it seems it hangs up my windows explorer as well, yet everything
&lt;br&gt;else on my computer is still responding normally, and there is nothing happening
&lt;br&gt;in the task manager (cpu is running at 0% utilization). After the 30-60 second
&lt;br&gt;hang up everything runs smoothly again (editing my php files, opening files,
&lt;br&gt;etc) until I hit save and then it hangs again.
&lt;br&gt;&lt;br&gt;This only seems to start a few weeks ago, no significant changes on my machine
&lt;br&gt;... any ideas or suggestions?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Keith
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19414486&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Strange-Behaviour-in-Komodo-tp19414486p19414486.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19340038</id>
	<title>Komodo 5.0.0a2 released</title>
	<published>2008-09-05T14:42:10Z</published>
	<updated>2008-09-05T14:42:10Z</updated>
	<author>
		<name>Trent Mick</name>
	</author>
	<content type="html">Hello all,
&lt;br&gt;&lt;br&gt;I'm happy to announce that we have released Komodo 5.0.0 alpha 2:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://downloads.activestate.com/Komodo/releases/5.0.0a2/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://downloads.activestate.com/Komodo/releases/5.0.0a2/&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://docs.activestate.com/komodo/5.0/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.activestate.com/komodo/5.0/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Significant changes since alpha 1:
&lt;br&gt;&lt;br&gt;- We have early support for the Mercurial (hg) and Bazaar (bzr) source
&lt;br&gt;code control systems! (Note: We have support for Git as well, but
&lt;br&gt;unfortunately a buglet in Git support slipped into this alpha. The next
&lt;br&gt;release will fix that.)
&lt;br&gt;- We fixed a crash that kept a lot of people from trying Komodo IDE
&lt;br&gt;alpha 1 on Windows.
&lt;br&gt;- We've *started* doing some UI changes for the sidebars and tabs.
&lt;br&gt;Currently that work is unfinished. At best you may start to see where we
&lt;br&gt;are going. The final result should end up being a lot more usable.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Known issues:
&lt;br&gt;- Auto-update does not work for this release. We had a couple of issues
&lt;br&gt;related to our upgrade to Mozilla 1.9. We should have auto-updating
&lt;br&gt;sorted out for beta.
&lt;br&gt;- Mac OS X/PowerPC builds are still not fully working. Mac OS X/*Intel* 
&lt;br&gt;builds are fine though.
&lt;br&gt;&lt;br&gt;&lt;br&gt;I'm happy to mention that we've had some great external localization 
&lt;br&gt;contributions, in particular from Davide Fianco -- who
&lt;br&gt;has been building excellent Komodo extensions for a while now. I look 
&lt;br&gt;forward to seeing some good Komodo localizations by the time Komodo 5.0 
&lt;br&gt;goes final.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Please give us your feedback. In particular, the feedback on alpha 1 was
&lt;br&gt;very helpful in tracking down one crash.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;email: &lt;a href=&quot;http://listserv.activestate.com/mailman/listinfo/komodo-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.activestate.com/mailman/listinfo/komodo-beta&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; bugs: &lt;a href=&quot;http://bugs.activestate.com/enter_bug.cgi?product=Komodo&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugs.activestate.com/enter_bug.cgi?product=Komodo&lt;/a&gt;&lt;br&gt;&amp;nbsp; forums: &lt;a href=&quot;http://community.activestate.com/products/Komodo&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://community.activestate.com/products/Komodo&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Enjoy,
&lt;br&gt;Trent
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Trent Mick
&lt;br&gt;trentm at activestate.com
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19340038&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Komodo-5.0.0a2-released-tp19340038p19340038.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19293212</id>
	<title>Re: Run command with HTML output</title>
	<published>2008-09-03T09:45:38Z</published>
	<updated>2008-09-03T09:45:38Z</updated>
	<author>
		<name>Trent Mick</name>
	</author>
	<content type="html">Thomas, Mark - BLS CTR wrote:
&lt;br&gt;&amp;gt; I want to run a command based on the current project directory with HTML 
&lt;br&gt;&amp;gt; output. In particular, I'm trying to run rspec, which I can't do through 
&lt;br&gt;&amp;gt; the built-in test harness which only supports Test::Unit. Is there any 
&lt;br&gt;&amp;gt; way to do this via &amp;quot;Run Command&amp;quot;?
&lt;br&gt;&lt;br&gt;You can certainly use the Run Command system to run the rspec command. 
&lt;br&gt;However, Komodo's command output tab (at the bottom) doesn't currently 
&lt;br&gt;support showing output as HTML.
&lt;br&gt;&lt;br&gt;You could use Komodo's macros to:
&lt;br&gt;1. run the rspec command and redirect output to an HTML file
&lt;br&gt;2. open that file in a &amp;quot;browser&amp;quot; tab in the main Komodo editor area
&lt;br&gt;&lt;br&gt;An example of using the macro system to #1 is here:
&lt;br&gt;&lt;a href=&quot;http://docs.activestate.com/komodo/4.4/macroapi.html#macroapi_runencodedcommand&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.activestate.com/komodo/4.4/macroapi.html#macroapi_runencodedcommand&lt;/a&gt;&lt;br&gt;&lt;br&gt;Then here is how you do #2:
&lt;br&gt;&lt;a href=&quot;http://docs.activestate.com/komodo/4.4/macroapi.html#macroapi_openURI&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.activestate.com/komodo/4.4/macroapi.html#macroapi_openURI&lt;/a&gt;&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Trent
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Trent Mick
&lt;br&gt;trentm at activestate.com
&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19293212&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Run-command-with-HTML-output-tp19292976p19293212.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19293127</id>
	<title>Re: Run command with HTML output</title>
	<published>2008-09-03T09:40:36Z</published>
	<updated>2008-09-03T09:40:36Z</updated>
	<author>
		<name>Eric Promislow</name>
	</author>
	<content type="html">Hello Mark,
&lt;br&gt;&lt;br&gt;With Komodo 4.4 you can add your own test harnesses -- see my
&lt;br&gt;writeup at &lt;a href=&quot;http://community.activestate.com/writing-unittest-harnesses-komodo-4-4-introduction&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://community.activestate.com/writing-unittest-harnesses-komodo-4-4-introduction&lt;/a&gt;&lt;br&gt;&lt;br&gt;I do have rspec on my radar, but it's not a high priority on
&lt;br&gt;my list. &amp;nbsp;So it might be worth while taking a shot at it.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Eric
&lt;br&gt;&lt;br&gt;Thomas, Mark - BLS CTR wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I want to run a command based on the current project directory with HTML
&lt;br&gt;&amp;gt; output. In particular, I'm trying to run rspec, which I can't do through
&lt;br&gt;&amp;gt; the built-in test harness which only supports Test::Unit. Is there any
&lt;br&gt;&amp;gt; way to do this via &amp;quot;Run Command&amp;quot;?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -- Mark.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Komodo-discuss mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19293127&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;&amp;gt; To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;&amp;gt; Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;/div&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19293127&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Run-command-with-HTML-output-tp19292976p19293127.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19292976</id>
	<title>Run command with HTML output</title>
	<published>2008-09-03T09:34:11Z</published>
	<updated>2008-09-03T09:34:11Z</updated>
	<author>
		<name>Thomas, Mark - BLS CTR</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;META HTTP-EQUIV=&quot;Content-Type&quot; CONTENT=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=EN-US link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;I want to run a command based on the current project
directory with HTML output. In particular, I'm trying to run rspec, which I
can't do through the built-in test harness which only supports Test::Unit. Is
there any way to do this via &amp;quot;Run Command&amp;quot;?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;'&gt;--
Mark.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19292976&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Run-command-with-HTML-output-tp19292976p19292976.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19122119</id>
	<title>MoreKomodo and TabSwitcher compatible with Komodo 5</title>
	<published>2008-08-23T07:43:44Z</published>
	<updated>2008-08-23T07:43:44Z</updated>
	<author>
		<name>Davide Ficano-2</name>
	</author>
	<content type="html">I've patched MoreKomodo and TabSwitcher to work with Komodo 5.
&lt;br&gt;&lt;br&gt;You can download betas from
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://dafizilla.sourceforge.net/morekomodo/beta/morekomodo-1.4.1b1.xpi&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dafizilla.sourceforge.net/morekomodo/beta/morekomodo-1.4.1b1.xpi&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://dafizilla.sourceforge.net/tabswitcher/beta/tabswitcher-0.4.1b2.xpi&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dafizilla.sourceforge.net/tabswitcher/beta/tabswitcher-0.4.1b2.xpi&lt;/a&gt;&lt;br&gt;&lt;br&gt;These versions are installable also on &amp;quot;old&amp;quot; 4.4.x
&lt;br&gt;&lt;br&gt;any feedback is welcomed,
&lt;br&gt;&lt;br&gt;davide
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19122119&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Komodo-5.0.0a1-release-tp19115819p19122119.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19115819</id>
	<title>Komodo 5.0.0a1 release</title>
	<published>2008-08-22T14:27:17Z</published>
	<updated>2008-08-22T14:27:17Z</updated>
	<author>
		<name>Trent Mick</name>
	</author>
	<content type="html">Hello all,
&lt;br&gt;&lt;br&gt;I'm happy to announce that we have released the first builds of the
&lt;br&gt;Komodo 5.0 stream!
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://downloads.activestate.com/Komodo/releases/5.0.0a1/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://downloads.activestate.com/Komodo/releases/5.0.0a1/&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://docs.activestate.com/komodo/5.0/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.activestate.com/komodo/5.0/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Feature-wise, 5.0a1 is a modest release but there are significant
&lt;br&gt;infrastructure changes under the hood that are going to mean great
&lt;br&gt;things for Komodo:
&lt;br&gt;&lt;br&gt;- Komodo 5 is built on the Mozilla 1.9 sources -- the same code base
&lt;br&gt;used for Firefox 3.0. This will mean some good performance improvements
&lt;br&gt;for Komodo and, once we've had a chance to do some polishing, good UI fixes.
&lt;br&gt;- Komodo 5 is now using the same breakpad/socorro-based crash reporting
&lt;br&gt;system as in Firefox 3.0. We hope that this will be a boon in making 
&lt;br&gt;Komodo a lot more stable.
&lt;br&gt;&lt;br&gt;&lt;br&gt;But this release still has some goodies -- in particular, multi-window
&lt;br&gt;support. For now this is &amp;quot;Window &amp;gt; New Window&amp;quot;. In this release we've
&lt;br&gt;focussed on trying to ensure that all of Komodo's existing
&lt;br&gt;functionality works properly with multiple Komodo windows. In subsequent
&lt;br&gt;releases we'll be improving the multi-window experience.
&lt;br&gt;&lt;br&gt;In coming releases watch for a much more polished Mac OS X UI, source
&lt;br&gt;code control integration for Mercurial, Bazaar and Git (Komodo
&lt;br&gt;IDE-only), work on localizing Komodo to other languages and a lot more.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Some caveats:
&lt;br&gt;&lt;br&gt;- Currently there isn't a Mac OS X/PowerPC build. We are working on 
&lt;br&gt;that. Please let us know if that effects you.
&lt;br&gt;- The Linux build may not work on some older Linux distro versions, 
&lt;br&gt;because of the quite recent GTK APIs that the mozilla-layer is using. 
&lt;br&gt;See this bug for details: &lt;a href=&quot;http://bugs.activestate.com/show_bug.cgi?id=79495&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugs.activestate.com/show_bug.cgi?id=79495&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Please give us your feedback:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;email: &lt;a href=&quot;http://listserv.activestate.com/mailman/listinfo/komodo-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.activestate.com/mailman/listinfo/komodo-beta&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; bugs: &lt;a href=&quot;http://bugs.activestate.com/enter_bug.cgi?product=Komodo&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugs.activestate.com/enter_bug.cgi?product=Komodo&lt;/a&gt;&lt;br&gt;&amp;nbsp; forums: &lt;a href=&quot;http://community.activestate.com/products/Komodo&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://community.activestate.com/products/Komodo&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Enjoy,
&lt;br&gt;Trent
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Trent Mick
&lt;br&gt;trentm at activestate.com
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19115819&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Komodo-5.0.0a1-release-tp19115819p19115819.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19039326</id>
	<title>Re: Perl Remote Debugger for Solaris 10</title>
	<published>2008-08-18T13:21:40Z</published>
	<updated>2008-08-18T13:21:40Z</updated>
	<author>
		<name>Mark Inkley</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
  &lt;meta content=&quot;text/html;charset=ISO-8859-1&quot; http-equiv=&quot;Content-Type&quot;&gt;
&lt;/head&gt;
&lt;body bgcolor=&quot;#ffffff&quot; text=&quot;#000099&quot;&gt;
Thanks Trent, I will give it a bash and let you know.&lt;br&gt;
&lt;br&gt;
rgds&lt;br&gt;
Mark&lt;br&gt;
&lt;br&gt;
Trent Mick wrote:
&lt;blockquote cite=&quot;mid:48A9D0A6.90203@activestate.com&quot; type=&quot;cite&quot;&gt;Mark
Inkley wrote:
  &lt;br&gt;
  &lt;blockquote type=&quot;cite&quot;&gt;&lt;br&gt;
I have it working on Solaris 10, with perl 5.8.4&amp;nbsp;&amp;nbsp; - using
Komodo-PerlRemoteDebugging-3.5.3-262321-solaris8-sparc.tar.gz and
komodo IDE&amp;nbsp; 4.3.2 build 17463
    &lt;br&gt;
    &lt;br&gt;
So far seems ok.
    &lt;br&gt;
  &lt;/blockquote&gt;
  &lt;br&gt;
Mark,
  &lt;br&gt;
  &lt;br&gt;
AFAIR there are no binary parts to the Perl DBGP client package so you
should be able to use the Komodo 4.4 Perl Remote Debugging package for
*Linux* on Solaris.
  &lt;br&gt;
  &lt;br&gt;
I'd be curious to know if that doesn't work for you.
  &lt;br&gt;
  &lt;br&gt;
Trent
  &lt;br&gt;
  &lt;br&gt;
&lt;/blockquote&gt;
&lt;br&gt;
&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19039326&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Perl-Remote-Debugger-for-Solaris-10-tp19017028p19039326.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19038553</id>
	<title>Re: Perl Remote Debugger for Solaris 10</title>
	<published>2008-08-18T12:40:27Z</published>
	<updated>2008-08-18T12:40:27Z</updated>
	<author>
		<name>Trent Mick</name>
	</author>
	<content type="html">Mark Inkley wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I have it working on Solaris 10, with perl 5.8.4 &amp;nbsp; - using 
&lt;br&gt;&amp;gt; Komodo-PerlRemoteDebugging-3.5.3-262321-solaris8-sparc.tar.gz and komodo 
&lt;br&gt;&amp;gt; IDE &amp;nbsp;4.3.2 build 17463
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; So far seems ok.
&lt;br&gt;&lt;br&gt;Mark,
&lt;br&gt;&lt;br&gt;AFAIR there are no binary parts to the Perl DBGP client package so you 
&lt;br&gt;should be able to use the Komodo 4.4 Perl Remote Debugging package for 
&lt;br&gt;*Linux* on Solaris.
&lt;br&gt;&lt;br&gt;I'd be curious to know if that doesn't work for you.
&lt;br&gt;&lt;br&gt;Trent
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Trent Mick
&lt;br&gt;trentm at activestate.com
&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19038553&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Perl-Remote-Debugger-for-Solaris-10-tp19017028p19038553.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19017260</id>
	<title>Re: Perl Remote Debugger for Solaris 10</title>
	<published>2008-08-16T20:38:20Z</published>
	<updated>2008-08-16T20:38:20Z</updated>
	<author>
		<name>Mark Inkley</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
  &lt;meta content=&quot;text/html;charset=ISO-8859-1&quot; http-equiv=&quot;Content-Type&quot;&gt;
&lt;/head&gt;
&lt;body bgcolor=&quot;#ffffff&quot; text=&quot;#000099&quot;&gt;
&lt;br&gt;
I have it working on Solaris 10, with perl 5.8.4&amp;nbsp;&amp;nbsp; - using
Komodo-PerlRemoteDebugging-3.5.3-262321-solaris8-sparc.tar.gz and
komodo IDE&amp;nbsp; 4.3.2 build 17463&lt;br&gt;
&lt;br&gt;
So far seems ok.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Mark Inkley wrote:
&lt;blockquote cite=&quot;mid:48A78FAF.9090406@stg.net.au&quot; type=&quot;cite&quot;&gt;&lt;font size=&quot;+1&quot;&gt;&lt;font face=&quot;Bitstream Vera Sans&quot;&gt;Hi,&lt;br&gt;
Is the perl remote debugger available for 4.4 and Solaris 10&lt;br&gt;
  &lt;br&gt;
The last version was IDE 3.5 and Sol 8.&lt;br&gt;
  &lt;br&gt;
tks&lt;br&gt;
Mark&lt;br&gt;
  &lt;br&gt;
  &lt;br&gt;
  &lt;/font&gt;&lt;/font&gt;
  &lt;pre wrap=&quot;&quot;&gt;
&lt;hr size=&quot;4&quot; width=&quot;90%&quot;&gt;
_______________________________________________
Komodo-discuss mailing list
&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19017260&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
To unsubscribe: &lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;
Other options: &lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;
  &lt;/pre&gt;
&lt;/blockquote&gt;
&lt;br&gt;
&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19017260&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Perl-Remote-Debugger-for-Solaris-10-tp19017028p19017260.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19017028</id>
	<title>Perl Remote Debugger for Solaris 10</title>
	<published>2008-08-16T19:40:47Z</published>
	<updated>2008-08-16T19:40:47Z</updated>
	<author>
		<name>Mark Inkley</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body bgcolor=&quot;#ffffff&quot; text=&quot;#000099&quot;&gt;
&lt;font size=&quot;+1&quot;&gt;&lt;font face=&quot;Bitstream Vera Sans&quot;&gt;Hi,&lt;br&gt;
Is the perl remote debugger available for 4.4 and Solaris 10&lt;br&gt;
&lt;br&gt;
The last version was IDE 3.5 and Sol 8.&lt;br&gt;
&lt;br&gt;
tks&lt;br&gt;
Mark&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/font&gt;&lt;/font&gt;
&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19017028&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Perl-Remote-Debugger-for-Solaris-10-tp19017028p19017028.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18937786</id>
	<title>Re: Python Remote debugger</title>
	<published>2008-08-11T21:13:11Z</published>
	<updated>2008-08-11T21:13:11Z</updated>
	<author>
		<name>Shane Caraveo-2</name>
	</author>
	<content type="html">Gregory Potts wrote:
&lt;br&gt;&amp;gt; All, Are the sources for the Python remote debugger available to the 
&lt;br&gt;&amp;gt; public? I work a lot with Solaris and have a need to get remote 
&lt;br&gt;&amp;gt; debugging working on that platform.
&lt;br&gt;&lt;br&gt;I put them in the openkomodo repository some time ago, you should be 
&lt;br&gt;able to find them on svn.openkomodo.com.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Shane
&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18937786&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Python-Remote-debugger-tp18930755p18937786.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18930755</id>
	<title>Python Remote debugger</title>
	<published>2008-08-11T11:05:55Z</published>
	<updated>2008-08-11T11:05:55Z</updated>
	<author>
		<name>Gregory Potts-3</name>
	</author>
	<content type="html">&lt;div dir=&quot;ltr&quot;&gt;&lt;p style=&quot;margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Monaco&quot;&gt;All, Are the sources for the Python remote debugger available to the public? I work a lot with Solaris and have a need to get remote debugging working on that platform.&lt;/p&gt;

&lt;p style=&quot;margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Monaco; min-height: 16.0px&quot;&gt;&lt;br&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Monaco&quot;&gt;Thanks -Greg Potts&lt;/p&gt;&lt;/div&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18930755&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Python-Remote-debugger-tp18930755p18930755.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18930598</id>
	<title>Python Remote debugger source</title>
	<published>2008-08-11T10:54:39Z</published>
	<updated>2008-08-11T10:54:39Z</updated>
	<author>
		<name>Gregory Potts-2</name>
	</author>
	<content type="html">All, Are the sources for the Python remote debugger available? I work a lot
&lt;br&gt;with Solaris and have a need to get remote debugging working, especially as
&lt;br&gt;Komodo IDE is no longer being ported to Solaris.
&lt;br&gt;&lt;br&gt;Thanks -Greg Potts
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.bytemobile.com/blog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.bytemobile.com/blog&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;This e-mail and any attachments may contain confidential and privileged information. If you are not the intended recipient, please notify the sender immediately by return e-mail, do not forward this email to any other person, delete this e-mail and destroy all copies. Any dissemination or use of this information by a person other than the intended recipient is unauthorized and may be illegal.
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18930598&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Python-Remote-debugger-source-tp18930598p18930598.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18899004</id>
	<title>Re: Serious bug in Komodo! Everyone backup their configurations!</title>
	<published>2008-08-08T14:07:30Z</published>
	<updated>2008-08-08T14:07:30Z</updated>
	<author>
		<name>Conor Kerr-2</name>
	</author>
	<content type="html">Hi R.,
&lt;br&gt;&lt;br&gt;&amp;gt; You filed a bug right?
&lt;br&gt;&lt;br&gt;No, what occurred was too unspecific for me to know what to say in a
&lt;br&gt;bug report!
&lt;br&gt;&lt;br&gt;I can resubmit my post as a bug if anyone thinks that's worth doing?
&lt;br&gt;&lt;br&gt;(Very quiet on this list, guess everyone's on holiday? If so, hope
&lt;br&gt;you're all having a good break! ;) ).
&lt;br&gt;&lt;br&gt;All the best...
&lt;br&gt;&lt;br&gt;Conor
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18899004&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;conor.kerr_komodo@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18899004&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Serious-bug-in-Komodo%21-Everyone-backup-their-configurations%21-tp18533923p18899004.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18898557</id>
	<title>Re: Serious bug in Komodo! Everyone backup their configurations!</title>
	<published>2008-08-08T13:27:24Z</published>
	<updated>2008-08-08T13:27:24Z</updated>
	<author>
		<name>R. Hicks</name>
	</author>
	<content type="html">You filed a bug right?
&lt;br&gt;&lt;br&gt;Robert
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18898557&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Serious-bug-in-Komodo%21-Everyone-backup-their-configurations%21-tp18533923p18898557.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18533923</id>
	<title>Serious bug in Komodo! Everyone backup their configurations!</title>
	<published>2008-07-18T10:13:14Z</published>
	<updated>2008-07-18T10:13:14Z</updated>
	<author>
		<name>Conor Kerr-2</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;This is using Windoze Vista...
&lt;br&gt;&lt;br&gt;For the second time in about a week I've opened Komodo only to have a
&lt;br&gt;completely wiped configuration. All settings are gone, all recent file
&lt;br&gt;lists, the current workspace, everything! It's all back to the
&lt;br&gt;defaults!
&lt;br&gt;&lt;br&gt;No code completion database is built though and whenever I open any
&lt;br&gt;previously opened file, the positions within the files have been
&lt;br&gt;retained properly.
&lt;br&gt;&lt;br&gt;So it seems to be affecting the configuration and recent
&lt;br&gt;lists/workspace only.
&lt;br&gt;&lt;br&gt;Luckily this time round I had a complete backup of my settings from a
&lt;br&gt;few days ago so I don't have to go and set up all of my end-of-line
&lt;br&gt;preferences etc all over again.
&lt;br&gt;&lt;br&gt;However, twice in one week is too often for such a serious thing to
&lt;br&gt;happen that it must be something wrong in Komodo itself.
&lt;br&gt;&lt;br&gt;This just happened in version 4.4.1, last week it was 4.4.0.
&lt;br&gt;&lt;br&gt;Nothing untoward happened on the computer, nothing has crashed,
&lt;br&gt;closing Komodo and then opening it again 10 minutes later was enough
&lt;br&gt;for this problem to occur.
&lt;br&gt;&lt;br&gt;Thanks in advance, for looking into this!
&lt;br&gt;&lt;br&gt;Thought I'd warn people in the subject because I forgot how many
&lt;br&gt;options I had changed to have things &amp;quot;just the way I want them&amp;quot; and
&lt;br&gt;it's frustrating to have to remember what changes you'd made to the
&lt;br&gt;default config - wouldn't want anyone else to have to go through that
&lt;br&gt;unnecessarily! :)
&lt;br&gt;&lt;br&gt;All the best...
&lt;br&gt;&lt;br&gt;Conor
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18533923&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;conor.kerr_komodo@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18533923&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Serious-bug-in-Komodo%21-Everyone-backup-their-configurations%21-tp18533923p18533923.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18530997</id>
	<title>Re: Bug or feature??</title>
	<published>2008-07-18T07:50:15Z</published>
	<updated>2008-07-18T07:50:15Z</updated>
	<author>
		<name>Davide Ficano-2</name>
	</author>
	<content type="html">Jeff Griffiths ha scritto:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Lindsay Marshall wrote:
&lt;br&gt;&amp;gt;&amp;gt; I've started using the refresh button on the Find Results pane (is it new? I don't
&lt;br&gt;&amp;gt; think I'd noticed it before) and whilst it saves the search that was 
&lt;br&gt;&amp;gt; carried out
&lt;br&gt;&amp;gt; correctly, it doesn't remember the setting of the regex flag (I haven't 
&lt;br&gt;&amp;gt; tried other
&lt;br&gt;&amp;gt; flags). If you search in files with a regex and then do an ordinary 
&lt;br&gt;&amp;gt; search with regex
&lt;br&gt;&amp;gt; off, when you refresh the pane it doesn't use regex either. Turning on 
&lt;br&gt;&amp;gt; regex searching
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt; again makes it work. Is this the intended behaviour or is it a bug?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; It's a feature, but not of Komodo itself. It is one of the nice, 
&lt;br&gt;&amp;gt; unobtrusive improvements to Komodo added by Davide Ficano's MoreKomodo 
&lt;br&gt;&amp;gt; extension, and I use it *all* the time, but it does have some gotchas.
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;Hi to all,
&lt;br&gt;&lt;br&gt;I'm unable to reproduce the bug, I've tried and 'refresh' seems to use regex and other flags (like 'match case').
&lt;br&gt;The 'refresh by selection' button 'globbifies' the selection if current find option uses a reg exp.
&lt;br&gt;&lt;br&gt;May you create a test case to reproduce the problem?
&lt;br&gt;For example a couple of file containing the failing regexp
&lt;br&gt;&lt;br&gt;thanks for support
&lt;br&gt;&lt;br&gt;davide
&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18530997&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Bug-or-feature---tp18505806p18530997.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18513211</id>
	<title>Re: Bug or feature??</title>
	<published>2008-07-17T09:59:37Z</published>
	<updated>2008-07-17T09:59:37Z</updated>
	<author>
		<name>Jeff Griffiths-2</name>
	</author>
	<content type="html">Lindsay Marshall wrote:
&lt;br&gt;&amp;gt; I've started using the refresh button on the Find Results pane (is it new? I don't
&lt;br&gt;think I'd noticed it before) and whilst it saves the search that was 
&lt;br&gt;carried out
&lt;br&gt;correctly, it doesn't remember the setting of the regex flag (I haven't 
&lt;br&gt;tried other
&lt;br&gt;flags). If you search in files with a regex and then do an ordinary 
&lt;br&gt;search with regex
&lt;br&gt;off, when you refresh the pane it doesn't use regex either. Turning on 
&lt;br&gt;regex searching
&lt;br&gt;&amp;nbsp;&amp;gt; again makes it work. Is this the intended behaviour or is it a bug?
&lt;br&gt;&lt;br&gt;It's a feature, but not of Komodo itself. It is one of the nice, 
&lt;br&gt;unobtrusive improvements to Komodo added by Davide Ficano's MoreKomodo 
&lt;br&gt;extension, and I use it *all* the time, but it does have some gotchas.
&lt;br&gt;&lt;br&gt;JeffG
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;blog: &amp;nbsp; &lt;a href=&quot;http://www.openkomodo.com/blogs/jeffg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openkomodo.com/blogs/jeffg&lt;/a&gt;&lt;br&gt;web: &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.ActiveState.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ActiveState.com&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18513211&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Bug-or-feature---tp18505806p18513211.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18512113</id>
	<title>Auto-Update</title>
	<published>2008-07-17T09:08:18Z</published>
	<updated>2008-07-17T09:08:18Z</updated>
	<author>
		<name>J. Keith Chant</name>
	</author>
	<content type="html">I just went to update Komodo from version 4.2 with the auto-update. &amp;nbsp;I had to
&lt;br&gt;run through a series of incremental updates (4.2.1, 4.3, 4.3.1, 4.3.2, 4.4.0,
&lt;br&gt;4.4.1) to get to 4.4.1. &amp;nbsp;With Firefox, if you run the auto-update, it will
&lt;br&gt;automatically move you to the latest version in one step, regardless how many
&lt;br&gt;point releases you are behind. &amp;nbsp;Is there a possibility for this with Komodo?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Keith
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18512113&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Auto-Update-tp18512113p18512113.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18505806</id>
	<title>Bug or feature??</title>
	<published>2008-07-17T03:40:32Z</published>
	<updated>2008-07-17T03:40:32Z</updated>
	<author>
		<name>Lindsay Marshall</name>
	</author>
	<content type="html">I've started using the refresh button on the Find Results pane (is it new? I don't think I'd noticed it before) and whilst it saves the search that was carried out correctly, it doesn't remember the setting of the regex flag (I haven't tried other flags). If you search in files with a regex and then do an ordinary search with regex off, when you refresh the pane it doesn't use regex either. Turning on regex searching again makes it work. Is this the intended behaviour or is it a bug?
&lt;br&gt;&lt;br&gt;L.
&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18505806&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Bug-or-feature---tp18505806p18505806.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18498320</id>
	<title>Re: Komodo 4.4.1 now ready!</title>
	<published>2008-07-16T15:48:40Z</published>
	<updated>2008-07-16T15:48:40Z</updated>
	<author>
		<name>Scott Fagg</name>
	</author>
	<content type="html">I had already logged a bug, #78562 against 4.4.0, so I've just updated
&lt;br&gt;the version number on it from 4.4.0 to 4.4.1 and commented about the
&lt;br&gt;delays.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://bugs.activestate.com/show_bug.cgi?id=78562&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugs.activestate.com/show_bug.cgi?id=78562&lt;/a&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Todd Whiteman [mailto:&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18498320&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;toddw@...&lt;/a&gt;] 
&lt;br&gt;Sent: Thursday, 17 July 2008 4:03 AM
&lt;br&gt;To: Scott Fagg
&lt;br&gt;Cc: komodo-discuss
&lt;br&gt;Subject: Re: [Komodo-discuss] Komodo 4.4.1 now ready!
&lt;br&gt;&lt;br&gt;Scott Fagg wrote:
&lt;br&gt;&amp;gt; SCC/SVN issue is only slightly improved. took 30s for komodo to
&lt;br&gt;realise
&lt;br&gt;&amp;gt; that the saved file had changed. This is better than the 60s+ that I
&lt;br&gt;was
&lt;br&gt;&amp;gt; seeing before. I prefer the earlier behaviour (4.3 ?) whereby komodo
&lt;br&gt;&amp;gt; would realise almost immediately.
&lt;br&gt;&lt;br&gt;Hi Scott,
&lt;br&gt;&lt;br&gt;That seems strange, the svn status should update within a few seconds 
&lt;br&gt;(it should only be operating locally).
&lt;br&gt;&lt;br&gt;Would you mind creating a new bug for this:
&lt;br&gt;&lt;a href=&quot;http://bugs.activestate.com/enter_bug.cgi?product=komodo&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugs.activestate.com/enter_bug.cgi?product=komodo&lt;/a&gt;&lt;br&gt;&lt;br&gt;I'd like to track down what is occurring here, so please include the svn
&lt;br&gt;&lt;br&gt;version, repo details and your Komodo svn preference settings.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Todd
&lt;br&gt;____________________________________________________________
&lt;br&gt;Electronic mail messages entering and leaving Arup &amp;nbsp;business
&lt;br&gt;systems are scanned for acceptability of content and viruses
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18498320&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Komodo-4.4.1-now-ready%21-tp18477717p18498320.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18493884</id>
	<title>Re: Komodo 4.4.1 now ready!</title>
	<published>2008-07-16T11:34:58Z</published>
	<updated>2008-07-16T11:34:58Z</updated>
	<author>
		<name>Trent Mick</name>
	</author>
	<content type="html">Jeff Griffiths wrote:
&lt;br&gt;&amp;gt; Trent Mick wrote:
&lt;br&gt;&amp;gt;&amp;gt; ...which means that invoking the installer
&lt;br&gt;&amp;gt;&amp;gt; package for one will work with an existing install (whatever the last
&lt;br&gt;&amp;gt;&amp;gt; part of the version number).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; By 'will work', Trent means that the installer will happily install 
&lt;br&gt;&amp;gt; right over the old one. The installation of Komodo you are left with 
&lt;br&gt;&amp;gt; after the fact may not work at all, or at least it may be a bit confused.
&lt;br&gt;&lt;br&gt;No, that is not what I meant, but what I said was misleading...
&lt;br&gt;&lt;br&gt;The &amp;quot;MSI will happily install over an existing install&amp;quot; is try when the 
&lt;br&gt;&amp;quot;major.minor&amp;quot; version is different. E.g.:
&lt;br&gt;- The Komodo 4.4.0 MSI will happily install over a Komodo 4.3.2 
&lt;br&gt;installation.
&lt;br&gt;- The Komodo 4.3.1 MSI will happily install over a Komodo 4.2.0 
&lt;br&gt;installation.
&lt;br&gt;&lt;br&gt;If the &amp;quot;major.minor&amp;quot; version is *the same* then invoking the MSI will 
&lt;br&gt;result in a dialog saying:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Another version of this product is already installed. Installation 
&lt;br&gt;of this version cannot continue. To configure or remove the existing 
&lt;br&gt;version of this product...
&lt;br&gt;&lt;br&gt;This is a standard MSI thing when the ProductCode of the MSI you are 
&lt;br&gt;trying to install is the same ProductCode of one already installed.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Trent
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Trent Mick
&lt;br&gt;trentm at activestate.com
&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18493884&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Komodo-4.4.1-now-ready%21-tp18477717p18493884.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18493255</id>
	<title>Re: Komodo 4.4.1 now ready!</title>
	<published>2008-07-16T11:02:52Z</published>
	<updated>2008-07-16T11:02:52Z</updated>
	<author>
		<name>Todd Whiteman</name>
	</author>
	<content type="html">Scott Fagg wrote:
&lt;br&gt;&amp;gt; SCC/SVN issue is only slightly improved. took 30s for komodo to realise
&lt;br&gt;&amp;gt; that the saved file had changed. This is better than the 60s+ that I was
&lt;br&gt;&amp;gt; seeing before. I prefer the earlier behaviour (4.3 ?) whereby komodo
&lt;br&gt;&amp;gt; would realise almost immediately.
&lt;br&gt;&lt;br&gt;Hi Scott,
&lt;br&gt;&lt;br&gt;That seems strange, the svn status should update within a few seconds 
&lt;br&gt;(it should only be operating locally).
&lt;br&gt;&lt;br&gt;Would you mind creating a new bug for this:
&lt;br&gt;&lt;a href=&quot;http://bugs.activestate.com/enter_bug.cgi?product=komodo&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugs.activestate.com/enter_bug.cgi?product=komodo&lt;/a&gt;&lt;br&gt;&lt;br&gt;I'd like to track down what is occurring here, so please include the svn 
&lt;br&gt;version, repo details and your Komodo svn preference settings.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Todd
&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18493255&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Komodo-4.4.1-now-ready%21-tp18477717p18493255.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18493154</id>
	<title>Re: Komodo 4.4.1 now ready!</title>
	<published>2008-07-16T10:56:55Z</published>
	<updated>2008-07-16T10:56:55Z</updated>
	<author>
		<name>Jeff Griffiths-2</name>
	</author>
	<content type="html">Trent Mick wrote:
&lt;br&gt;&amp;gt; ...which means that invoking the installer
&lt;br&gt;&amp;gt; package for one will work with an existing install (whatever the last
&lt;br&gt;&amp;gt; part of the version number).
&lt;br&gt;&lt;br&gt;By 'will work', Trent means that the installer will happily install 
&lt;br&gt;right over the old one. The installation of Komodo you are left with 
&lt;br&gt;after the fact may not work at all, or at least it may be a bit confused.
&lt;br&gt;&lt;br&gt;The correct approach for point releases is either:
&lt;br&gt;&lt;br&gt;&amp;nbsp; - use the auto-update system, OR
&lt;br&gt;&amp;nbsp; - uninstall the previous install and then install fresh.
&lt;br&gt;&lt;br&gt;Jeff
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18493154&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Komodo-4.4.1-now-ready%21-tp18477717p18493154.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18491940</id>
	<title>Re: [openkomodo-dev] Komodo 4.4.1 now ready!</title>
	<published>2008-07-16T09:54:07Z</published>
	<updated>2008-07-16T09:54:07Z</updated>
	<author>
		<name>Trent Mick</name>
	</author>
	<content type="html">Davide Ficano wrote:
&lt;br&gt;&amp;gt; Does update create a clean profile?
&lt;br&gt;&amp;gt; All installed extensions are not present into
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; $KOMODO_PROFILE_DIR\host-xxxx\XRE\extensions
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Luckly macros and keybindings are migrated correctly
&lt;br&gt;&lt;br&gt;No, auto-update doesn't do any profile migration. Profile migration is 
&lt;br&gt;handled by Komodo startup, **if necessary**.
&lt;br&gt;&lt;br&gt;In this case (4.4.0 -&amp;gt; 4.4.1) there is no new profile: your Komodo user 
&lt;br&gt;data dir is based on the &amp;quot;major.minor&amp;quot; version number (i.e. &amp;quot;4.4&amp;quot;) hence 
&lt;br&gt;Komodo 4.4.0 and 4.4.1 would use the same profile dir.
&lt;br&gt;&lt;br&gt;Are you saying that your &amp;quot;$KOMODO_PROFILE_DIR\host-XXXX\XRE\extensions&amp;quot; 
&lt;br&gt;was *removed* on your system?
&lt;br&gt;&lt;br&gt;Trent
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Trent Mick
&lt;br&gt;trentm at activestate.com
&lt;br&gt;_______________________________________________
&lt;br&gt;Komodo-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18491940&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Komodo-discuss@...&lt;/a&gt;
&lt;br&gt;To unsubscribe: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/mysubs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/mysubs&lt;/a&gt;&lt;br&gt;Other options: &lt;a href=&quot;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://listserv.ActiveState.com/mailman/listinfo/Komodo-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Komodo---General-f2296.html&quot; embed=&quot;fixTarget[2296]&quot; target=&quot;_top&quot; &gt;Komodo - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Komodo-4.4.1-now-ready%21-tp18477717p18491940.html" />
</entry>

</feed>
