<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-6669</id>
	<title>Nabble - Mozilla - JavaScript Debugger</title>
	<updated>2009-11-25T11:02:36Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Mozilla---JavaScript-Debugger-f6669.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Mozilla---JavaScript-Debugger-f6669.html" />
	<subtitle type="html">For discussions about the JavaScript Debugger (Venkman). Questions about how to use, program, or document the debugger, as well as feature requests are on-topic here.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26518550</id>
	<title>Re: Debugger does not stop for breakpoints or exceptions</title>
	<published>2009-11-25T11:02:36Z</published>
	<updated>2009-11-25T11:02:36Z</updated>
	<author>
		<name>Gijs Kruitbosch (&quot;Hannibal&quot;)</name>
	</author>
	<content type="html">1) You probably want to update to Fx 3.5.5
&lt;br&gt;2) You should try to test with Firebug uninstalled, or disabled *in the 
&lt;br&gt;addons manager* (not through FB itself). Firefox's internal JSD 
&lt;br&gt;component doesn't deal well with having two debuggers trying to use it, 
&lt;br&gt;and in particular is known to cause problems of the sort you're seeing. 
&lt;br&gt;If you don't want to uninstall Firebug, uninstall Venkman and use the 
&lt;br&gt;debugging features in Firebug (which should be able to do what you want, 
&lt;br&gt;too, although I can't help you if that fails - other people on the 
&lt;br&gt;newsgroup might be able to, though).
&lt;br&gt;&lt;br&gt;Gijs
&lt;br&gt;&lt;br&gt;PS: And please keep the discussion on the newsgroup / mailing list as 
&lt;br&gt;well, so other people can give any other advice that they might have. :-)
&lt;br&gt;&lt;br&gt;On 25/11/2009 19:44 PM, Abdeladim Gadhi wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Thank you.
&lt;br&gt;&amp;gt; I am using Firefox version 3.0.15 and the latest Venkman version 0.9.87.4
&lt;br&gt;&amp;gt; I tried &amp;quot;Pretty Print&amp;quot; earlier and it did not help.
&lt;br&gt;&amp;gt; I have Firebug installed however.
&lt;br&gt;&amp;gt; My page is not public, and it uses Dojo.xhrPost(). Here is an excerpt 
&lt;br&gt;&amp;gt; test setup:
&lt;br&gt;&amp;gt; **************************************
&lt;br&gt;&amp;gt; HTML file1:
&lt;br&gt;&amp;gt; ....
&lt;br&gt;&amp;gt; &amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot; ...
&lt;br&gt;&amp;gt; &amp;lt;script type=&amp;quot;text/javascript&amp;quot; language=&amp;quot;JavaScript&amp;quot; 
&lt;br&gt;&amp;gt; src=&amp;quot;./jsp/dojokit/dojo/dojo.js&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;djConfig=&amp;quot;parseOnLoad:true, isDebug:false&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; var postData = function()
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;initializeTargetData();
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;dojo.xhrPost(
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; url: &amp;quot;testdata.htm&amp;quot;,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; handleAs: &amp;quot;json&amp;quot;,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; load: function(data,ioargs)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// success: set heading, run function
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;dojo.byId(&amp;quot;iqGraphHeading&amp;quot;).innerHTML += &amp;quot; by: &amp;quot;+data.name;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if(data.aFunction &amp;&amp; data.aFunction())
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // we just ran data.aFunction(). should alert() …
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;});
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; };
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; dojo.addOnLoad(postData);
&lt;br&gt;&amp;gt; &amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/head&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;body&amp;gt;
&lt;br&gt;&amp;gt; ...
&lt;br&gt;&amp;gt; ...
&lt;br&gt;&amp;gt; &amp;lt;h2 id=&amp;quot;iqGraphHeading&amp;quot;&amp;gt;Constellation Graph&amp;lt;/h2&amp;gt;
&lt;br&gt;&amp;gt; ...
&lt;br&gt;&amp;gt; *************************************
&lt;br&gt;&amp;gt; testdata.htm content:
&lt;br&gt;&amp;gt; {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;name: &amp;quot;Company&amp;quot;,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;aFunction: function()
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(&amp;quot;internal function run&amp;quot;);
&lt;br&gt;&amp;gt; &amp;nbsp; &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; &amp;gt;&amp;gt;&amp;gt; Gijs Kruitbosch &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26518550&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gijskruitbosch@...&lt;/a&gt;&amp;gt; 11/25/2009 10:49 AM &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; On 25/11/2009 18:38 PM, Abdeladim Gadhi wrote:
&lt;br&gt;&amp;gt; &amp;gt; I am not able to get the debugger to stop for breakpoints and 
&lt;br&gt;&amp;gt; exceptions.
&lt;br&gt;&amp;gt; &amp;gt; I have the 'Stop for Errors' and the 'Stop for Exceptions' triggers set.
&lt;br&gt;&amp;gt; &amp;gt; I have the desired HTML page with JavaScript module loaded because 
&lt;br&gt;&amp;gt; the contents
&lt;br&gt;&amp;gt; &amp;gt; in the HTML page are loaded through the JavaScript.
&lt;br&gt;&amp;gt; &amp;gt; An oddity however is the manual stopping of the debugger does not 
&lt;br&gt;&amp;gt; work either.
&lt;br&gt;&amp;gt; &amp;gt; It shows an X with 3 dots to indicate that no scripts are loaded.
&lt;br&gt;&amp;gt; &amp;gt; Could you please assist?
&lt;br&gt;&amp;gt; &amp;gt; Thank you
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Which version of Venkman? Which version of Firefox? Is your page 
&lt;br&gt;&amp;gt; public (ie can
&lt;br&gt;&amp;gt; we have a link so we can check ourselves)? Does it rely on POST 
&lt;br&gt;&amp;gt; variables? Have
&lt;br&gt;&amp;gt; you tried using the &amp;quot;Pretty Print&amp;quot; mode (click the flower button in the
&lt;br&gt;&amp;gt; toolbar)? Do you have Firebug installed as well? The two might conflict...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ~ Gijs
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; dev-apps-js-debugger mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26518550&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26518550&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Debugger-does-not-stop-for-breakpoints-or-exceptions-tp26517148p26518550.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26517420</id>
	<title>Re: Debugger does not stop for breakpoints or exceptions</title>
	<published>2009-11-25T09:49:17Z</published>
	<updated>2009-11-25T09:49:17Z</updated>
	<author>
		<name>Gijs Kruitbosch (&quot;Hannibal&quot;)</name>
	</author>
	<content type="html">On 25/11/2009 18:38 PM, Abdeladim Gadhi wrote:
&lt;br&gt;&amp;gt; I am not able to get the debugger to stop for breakpoints and exceptions.
&lt;br&gt;&amp;gt; I have the 'Stop for Errors' and the 'Stop for Exceptions' triggers set.
&lt;br&gt;&amp;gt; I have the desired HTML page with JavaScript module loaded because the contents
&lt;br&gt;&amp;gt; in the HTML page are loaded through the JavaScript.
&lt;br&gt;&amp;gt; An oddity however is the manual stopping of the debugger does not work either.
&lt;br&gt;&amp;gt; It shows an X with 3 dots to indicate that no scripts are loaded.
&lt;br&gt;&amp;gt; Could you please assist?
&lt;br&gt;&amp;gt; Thank you
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Which version of Venkman? Which version of Firefox? Is your page public (ie can 
&lt;br&gt;we have a link so we can check ourselves)? Does it rely on POST variables? Have 
&lt;br&gt;you tried using the &amp;quot;Pretty Print&amp;quot; mode (click the flower button in the 
&lt;br&gt;toolbar)? Do you have Firebug installed as well? The two might conflict...
&lt;br&gt;&lt;br&gt;~ Gijs
&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26517420&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Debugger-does-not-stop-for-breakpoints-or-exceptions-tp26517148p26517420.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26517148</id>
	<title>Debugger does not stop for breakpoints or exceptions</title>
	<published>2009-11-25T09:38:29Z</published>
	<updated>2009-11-25T09:38:29Z</updated>
	<author>
		<name>Abdeladim Gadhi</name>
	</author>
	<content type="html">I am not able to get the debugger to stop for breakpoints and exceptions.
&lt;br&gt;I have the 'Stop for Errors' and the 'Stop for Exceptions' triggers set.
&lt;br&gt;I have the desired HTML page with JavaScript module loaded because the contents
&lt;br&gt;in the HTML page are loaded through the JavaScript.
&lt;br&gt;An oddity however is the manual stopping of the debugger does not work either.
&lt;br&gt;It shows an X with 3 dots to indicate that no scripts are loaded.
&lt;br&gt;Could you please assist?
&lt;br&gt;Thank you
&lt;br&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26517148&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Debugger-does-not-stop-for-breakpoints-or-exceptions-tp26517148p26517148.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26474001</id>
	<title>Re: error message</title>
	<published>2009-11-23T00:03:48Z</published>
	<updated>2009-11-23T00:03:48Z</updated>
	<author>
		<name>Colby Russell</name>
	</author>
	<content type="html">ncosco wrote:
&lt;br&gt;&amp;gt; I'm developing an application, I would like to use different
&lt;br&gt;&amp;gt; interfaces, like mozilla extension, web page or normal gui. In order
&lt;br&gt;&amp;gt; to use mozilla extension I need to call java from javascript, the
&lt;br&gt;&amp;gt; previous code was an attempt to understand how it works.
&lt;br&gt;&lt;br&gt;If you're writing an extension, consider doing it without Java.
&lt;br&gt;&lt;br&gt;To answer your question though, |Packages.javax| would be correct, since 
&lt;br&gt;the top-level |java| object is just shorthand for |Packages.java| and 
&lt;br&gt;there's no similar shorthand for javax. This is a remnant of 
&lt;br&gt;LiveConnect, &amp;nbsp;and its future in Mozilla is shaky from the last 
&lt;br&gt;discussion I'm aware of on the issue, and just poorly understood and 
&lt;br&gt;nearly unsupported at best.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Colby Russell
&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26474001&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/error-message-tp26343277p26474001.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26345125</id>
	<title>Re: error message</title>
	<published>2009-11-13T15:19:01Z</published>
	<updated>2009-11-13T15:19:01Z</updated>
	<author>
		<name>ncosco</name>
	</author>
	<content type="html">On 13 Nov, 23:01, John J Barton &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26345125&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;johnjbar...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; ncosco wrote:
&lt;br&gt;&amp;gt; &amp;gt; Hi, i'm new in javascript programming, this is my first working code
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;HTML&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;HEAD&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;TITLE&amp;gt;Test Input&amp;lt;/TITLE&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;SCRIPT LANGUAGE=&amp;quot;JavaScript&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;!--
&lt;br&gt;&amp;gt; &amp;gt; function testResults (form) {
&lt;br&gt;&amp;gt; &amp;gt;     var TestVar = form.inputbox.value;
&lt;br&gt;&amp;gt; &amp;gt;     alert (&amp;quot;You typed: &amp;quot; + TestVar);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;    var frame = new java.awt.Frame(&amp;quot;FrameDemo&amp;quot;);
&lt;br&gt;&amp;gt; &amp;gt;    frame.setSize(200,300);
&lt;br&gt;&amp;gt; &amp;gt;    frame.setVisible(true);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; }
&lt;br&gt;&amp;gt; &amp;gt; // --&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;/SCRIPT&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;/HEAD&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;BODY&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;FORM NAME=&amp;quot;myform&amp;quot; ACTION=&amp;quot;&amp;quot; METHOD=&amp;quot;GET&amp;quot;&amp;gt;Enter something in the box:
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;BR&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;INPUT TYPE=&amp;quot;text&amp;quot; NAME=&amp;quot;inputbox&amp;quot; VALUE=&amp;quot;&amp;quot;&amp;gt;&amp;lt;P&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;INPUT TYPE=&amp;quot;button&amp;quot; NAME=&amp;quot;button&amp;quot; Value=&amp;quot;Click&amp;quot; onClick=&amp;quot;testResults
&lt;br&gt;&amp;gt; &amp;gt; (this.form)&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;/FORM&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;/BODY&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;/HTML&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; if i try to use javax.swing.JFrame instead a simple Frame, i get an
&lt;br&gt;&amp;gt; &amp;gt; error from debugger &amp;quot;javax is not defined&amp;quot;.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Can anyone help me? thanks
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Probably not. I doubt many readers here try to mix Java and Javascript,
&lt;br&gt;&amp;gt; not a great combination. If you are new to Javascript, use it. Forget
&lt;br&gt;&amp;gt; about Java.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; jjb
&lt;/div&gt;&lt;br&gt;I'm developing an application, I would like to use different
&lt;br&gt;interfaces, like mozilla extension, web page or normal gui. In order
&lt;br&gt;to use mozilla extension I need to call java from javascript, the
&lt;br&gt;previous code was an attempt to understand how it works.
&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26345125&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/error-message-tp26343277p26345125.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26344283</id>
	<title>Re: error message</title>
	<published>2009-11-13T14:01:49Z</published>
	<updated>2009-11-13T14:01:49Z</updated>
	<author>
		<name>John J Barton</name>
	</author>
	<content type="html">ncosco wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi, i'm new in javascript programming, this is my first working code
&lt;br&gt;&amp;gt; &amp;lt;HTML&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;HEAD&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;TITLE&amp;gt;Test Input&amp;lt;/TITLE&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;SCRIPT LANGUAGE=&amp;quot;JavaScript&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;!--
&lt;br&gt;&amp;gt; function testResults (form) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; var TestVar = form.inputbox.value;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; alert (&amp;quot;You typed: &amp;quot; + TestVar);
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; 	var frame = new java.awt.Frame(&amp;quot;FrameDemo&amp;quot;);
&lt;br&gt;&amp;gt; 	frame.setSize(200,300);
&lt;br&gt;&amp;gt; 	frame.setVisible(true);
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt; // --&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/SCRIPT&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/HEAD&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;BODY&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;FORM NAME=&amp;quot;myform&amp;quot; ACTION=&amp;quot;&amp;quot; METHOD=&amp;quot;GET&amp;quot;&amp;gt;Enter something in the box:
&lt;br&gt;&amp;gt; &amp;lt;BR&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;INPUT TYPE=&amp;quot;text&amp;quot; NAME=&amp;quot;inputbox&amp;quot; VALUE=&amp;quot;&amp;quot;&amp;gt;&amp;lt;P&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;INPUT TYPE=&amp;quot;button&amp;quot; NAME=&amp;quot;button&amp;quot; Value=&amp;quot;Click&amp;quot; onClick=&amp;quot;testResults
&lt;br&gt;&amp;gt; (this.form)&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/FORM&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/BODY&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/HTML&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; if i try to use javax.swing.JFrame instead a simple Frame, i get an
&lt;br&gt;&amp;gt; error from debugger &amp;quot;javax is not defined&amp;quot;.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Can anyone help me? thanks
&lt;/div&gt;&lt;br&gt;Probably not. I doubt many readers here try to mix Java and Javascript, 
&lt;br&gt;not a great combination. If you are new to Javascript, use it. Forget 
&lt;br&gt;about Java.
&lt;br&gt;&lt;br&gt;jjb
&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26344283&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/error-message-tp26343277p26344283.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26343277</id>
	<title>error message</title>
	<published>2009-11-13T12:42:01Z</published>
	<updated>2009-11-13T12:42:01Z</updated>
	<author>
		<name>ncosco</name>
	</author>
	<content type="html">Hi, i'm new in javascript programming, this is my first working code
&lt;br&gt;&amp;lt;HTML&amp;gt;
&lt;br&gt;&amp;lt;HEAD&amp;gt;
&lt;br&gt;&amp;lt;TITLE&amp;gt;Test Input&amp;lt;/TITLE&amp;gt;
&lt;br&gt;&amp;lt;SCRIPT LANGUAGE=&amp;quot;JavaScript&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;!--
&lt;br&gt;function testResults (form) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; var TestVar = form.inputbox.value;
&lt;br&gt;&amp;nbsp; &amp;nbsp; alert (&amp;quot;You typed: &amp;quot; + TestVar);
&lt;br&gt;&lt;br&gt;&amp;nbsp; 	var frame = new java.awt.Frame(&amp;quot;FrameDemo&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; frame.setSize(200,300);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; frame.setVisible(true);
&lt;br&gt;&lt;br&gt;}
&lt;br&gt;// --&amp;gt;
&lt;br&gt;&amp;lt;/SCRIPT&amp;gt;
&lt;br&gt;&amp;lt;/HEAD&amp;gt;
&lt;br&gt;&amp;lt;BODY&amp;gt;
&lt;br&gt;&amp;lt;FORM NAME=&amp;quot;myform&amp;quot; ACTION=&amp;quot;&amp;quot; METHOD=&amp;quot;GET&amp;quot;&amp;gt;Enter something in the box:
&lt;br&gt;&amp;lt;BR&amp;gt;
&lt;br&gt;&amp;lt;INPUT TYPE=&amp;quot;text&amp;quot; NAME=&amp;quot;inputbox&amp;quot; VALUE=&amp;quot;&amp;quot;&amp;gt;&amp;lt;P&amp;gt;
&lt;br&gt;&amp;lt;INPUT TYPE=&amp;quot;button&amp;quot; NAME=&amp;quot;button&amp;quot; Value=&amp;quot;Click&amp;quot; onClick=&amp;quot;testResults
&lt;br&gt;(this.form)&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;/FORM&amp;gt;
&lt;br&gt;&amp;lt;/BODY&amp;gt;
&lt;br&gt;&amp;lt;/HTML&amp;gt;
&lt;br&gt;&lt;br&gt;if i try to use javax.swing.JFrame instead a simple Frame, i get an
&lt;br&gt;error from debugger &amp;quot;javax is not defined&amp;quot;.
&lt;br&gt;&lt;br&gt;Can anyone help me? thanks
&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26343277&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/error-message-tp26343277p26343277.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26326554</id>
	<title>Re: Setting JavaScript context (Manual Tutorial Description Guide Venkman)</title>
	<published>2009-11-12T12:34:04Z</published>
	<updated>2009-11-12T12:34:04Z</updated>
	<author>
		<name>&quot;moznews...hb&quot;</name>
	</author>
	<content type="html">Enno Fennema schrieb:
&lt;br&gt;&amp;gt; ... to get Venkman debugger ... tutorial by Svendtofte. 
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.svendtofte.com/code/learning_venkman/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.svendtofte.com/code/learning_venkman/&lt;/a&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26326554&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-Setting-JavaScript-context-%28Manual-Tutorial-Description-Guide-Venkman%29-tp26326554p26326554.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26302714</id>
	<title>Setting JavaScript context</title>
	<published>2009-11-11T07:00:35Z</published>
	<updated>2009-11-11T07:00:35Z</updated>
	<author>
		<name>Enno Fennema</name>
	</author>
	<content type="html">I am trying to get Venkman debugger working and am using the tutorial by
&lt;br&gt;Svendtofte. On the Basics page he explains how to set the ‘evaluation
&lt;br&gt;context’. Doing so the title of the Interactive Session panel confirms a
&lt;br&gt;changed context but variable 'a' remains stubborn undefined.
&lt;br&gt;&lt;br&gt;Also ‘document.title’ reports ‘JavaScript Debugger’ rather than the
&lt;br&gt;title of the page being debugged.
&lt;br&gt;&lt;br&gt;The bar at the top of the interactive session page reads correctly i.e.
&lt;br&gt;Interactive Session [context: venkman_example_1.html, ... ]
&lt;br&gt;&lt;br&gt;Using Linux x86_64, Firefox 3.0.14
&lt;br&gt;&lt;br&gt;This problem has been reported before in a different forum and the
&lt;br&gt;solution (well ???) was 'Use Firebug'.
&lt;br&gt;&lt;br&gt;Is there a Venkman solution?
&lt;br&gt;&lt;br&gt;Enno Fennema
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26302714&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Setting-JavaScript-context-tp26302714p26302714.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26171094</id>
	<title>Source Code Disconnects</title>
	<published>2009-11-03T17:35:16Z</published>
	<updated>2009-11-03T17:35:16Z</updated>
	<author>
		<name>j-a-c-k</name>
	</author>
	<content type="html">I have just started with this tool and cannot get to square one.
&lt;br&gt;I installed as an add-on to foxfireand 3.5.4 and it seemed to be going well.
&lt;br&gt;I found the tutorial at &lt;a href=&quot;http://www.svendtofte.com/code/learning_venkman/basics.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.svendtofte.com/code/learning_venkman/basics.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;I Got through the first couple of lessons up to the part where we bring in a script and press stop on the debugger. This is the first exercise in the section &amp;quot;Basic Debugging&amp;quot; &amp;nbsp;The tutorial says reload the browser and the debugger will stop at the beginning of the script. &amp;nbsp;Instead the source code window closes and the code does not stop or display. &amp;nbsp;If I right click in the open-Windows-Window and select 'Find URL' the code window reopens but there is no highlighted current line and the debugger seems to have blown off the test.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Source-Code-Disconnects-tp26171094p26171094.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25898863</id>
	<title>Re: URGENT: TB/FX freeze with Venkman and other extension .. now crashes TB!!!</title>
	<published>2009-10-14T13:50:20Z</published>
	<updated>2009-10-14T13:50:20Z</updated>
	<author>
		<name>Gijs Kruitbosch (&quot;Hannibal&quot;)</name>
	</author>
	<content type="html">Could you provide a stacktrace / about:crashes crash-id?
&lt;br&gt;&lt;br&gt;~ Gijs
&lt;br&gt;&lt;br&gt;On 14/10/2009 16:25 PM, gNeandr wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hope there is help around!!?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Now the situation is even more strange. Now in specific situation with
&lt;br&gt;&amp;gt; Venkman opened the complete TB crashes!
&lt;br&gt;&amp;gt; The same operation with TB and extension WITHOUT Venkman does well!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; How to check for the cause. It's not only because I expect Venkman does
&lt;br&gt;&amp;gt; well, but I need to understand if my extension will be harmed by others
&lt;br&gt;&amp;gt; .. or itself is the cause.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Any help very much welcomed.
&lt;br&gt;&amp;gt; Günter
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [06.10.2009 00:37] »gNeandr« wrote:
&lt;br&gt;&amp;gt;&amp;gt; TB/FX freeze with Venkman and other extension .. Extension:
&lt;br&gt;&amp;gt;&amp;gt; Reminderfox 1.9.1 with some modifications.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Reminderfox is started with the host app starts. The freeze is with
&lt;br&gt;&amp;gt;&amp;gt; starting Venkman.
&lt;br&gt;&amp;gt;&amp;gt; But when a dialog of Reminderfox is opened before Venkman starts,
&lt;br&gt;&amp;gt;&amp;gt; everything is working correctly.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; How can I trace this to get an idea about the reason??
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Mozilla/5.0 (X11; U; Linux i686; de; rv:1.9.1.4pre) Gecko/20090915
&lt;br&gt;&amp;gt;&amp;gt; Thunderbird/3.0b4
&lt;br&gt;&amp;gt;&amp;gt; Mozilla/5.0 (X11; U; Linux i686; de-DE; rv:1.9.1.3) Gecko/20090824
&lt;br&gt;&amp;gt;&amp;gt; Firefox/3.5.3
&lt;br&gt;&amp;gt;&amp;gt; (it's not a linux problem, WINxp does the same with these TB/FX versions)
&lt;br&gt;&amp;gt;&amp;gt; Extension: Reminderfox 1.9.1 with some modifications
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25898863&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/TB-FX-freeze-with-Venkman-and-other-extension-..-tp25760272p25898863.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25898486</id>
	<title>URGENT: TB/FX freeze with Venkman and other extension .. now crashes TB!!!</title>
	<published>2009-10-14T13:25:48Z</published>
	<updated>2009-10-14T13:25:48Z</updated>
	<author>
		<name>gNeandr-3</name>
	</author>
	<content type="html">Hope there is help around!!?
&lt;br&gt;&lt;br&gt;Now the situation is even more strange. Now in specific situation with 
&lt;br&gt;Venkman opened the complete TB crashes!
&lt;br&gt;The same operation with TB and extension WITHOUT Venkman does well!
&lt;br&gt;&lt;br&gt;How to check for the cause. It's not only because I expect Venkman does 
&lt;br&gt;well, but I need to understand if my extension will be harmed by others 
&lt;br&gt;.. or &amp;nbsp;itself is the cause.
&lt;br&gt;&lt;br&gt;Any help very much welcomed.
&lt;br&gt;Günter
&lt;br&gt;&lt;br&gt;&amp;nbsp; [06.10.2009 00:37] &amp;nbsp; &amp;nbsp;»gNeandr« wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; TB/FX freeze with Venkman and other extension .. Extension: 
&lt;br&gt;&amp;gt; Reminderfox 1.9.1 with some modifications.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Reminderfox is started with the host app starts. The freeze is with 
&lt;br&gt;&amp;gt; starting Venkman.
&lt;br&gt;&amp;gt; But when a dialog of Reminderfox is opened before Venkman starts, 
&lt;br&gt;&amp;gt; everything is working correctly.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; How can I trace this to get an idea about the reason??
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Mozilla/5.0 (X11; U; Linux i686; de; rv:1.9.1.4pre) Gecko/20090915 
&lt;br&gt;&amp;gt; Thunderbird/3.0b4
&lt;br&gt;&amp;gt; Mozilla/5.0 (X11; U; Linux i686; de-DE; rv:1.9.1.3) Gecko/20090824 
&lt;br&gt;&amp;gt; Firefox/3.5.3
&lt;br&gt;&amp;gt; (it's not a linux problem, WINxp does the same with these TB/FX versions)
&lt;br&gt;&amp;gt; Extension: Reminderfox 1.9.1 with some modifications
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25898486&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/TB-FX-freeze-with-Venkman-and-other-extension-..-tp25760272p25898486.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25760272</id>
	<title>TB/FX freeze with Venkman and other extension ..</title>
	<published>2009-10-05T15:37:32Z</published>
	<updated>2009-10-05T15:37:32Z</updated>
	<author>
		<name>gNeandr-3</name>
	</author>
	<content type="html">TB/FX freeze with Venkman and other extension .. Extension: Reminderfox 
&lt;br&gt;1.9.1 with some modifications.
&lt;br&gt;&lt;br&gt;Reminderfox is started with the host app starts. The freeze is with 
&lt;br&gt;starting Venkman.
&lt;br&gt;But when a dialog of Reminderfox is opened before Venkman starts, 
&lt;br&gt;everything is working correctly.
&lt;br&gt;&lt;br&gt;How can I trace this to get an idea about the reason??
&lt;br&gt;&lt;br&gt;Mozilla/5.0 (X11; U; Linux i686; de; rv:1.9.1.4pre) Gecko/20090915 
&lt;br&gt;Thunderbird/3.0b4
&lt;br&gt;Mozilla/5.0 (X11; U; Linux i686; de-DE; rv:1.9.1.3) Gecko/20090824 
&lt;br&gt;Firefox/3.5.3
&lt;br&gt;(it's not a linux problem, WINxp does the same with these TB/FX versions)
&lt;br&gt;Extension: Reminderfox 1.9.1 with some modifications
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25760272&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/TB-FX-freeze-with-Venkman-and-other-extension-..-tp25760272p25760272.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25681430</id>
	<title>Please help: Debugging Firefox Add-Ons</title>
	<published>2009-09-30T06:48:32Z</published>
	<updated>2009-09-30T06:48:32Z</updated>
	<author>
		<name>Tomas-28</name>
	</author>
	<content type="html">Hi!
&lt;br&gt;&lt;br&gt;I am totaly new to firefox development. Can someone please suggest
&lt;br&gt;how can I debug a FF addon? Can I use Venkman debugger to do this? If
&lt;br&gt;so, are there any changes I need to add to the install.rdf of the
&lt;br&gt;addon I want to debug etc? I have also come across Foxbeans - can this
&lt;br&gt;be used to debug an arbitrary addon or can it only be used to debug a
&lt;br&gt;project created within netbeans?
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;Tom
&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25681430&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Please-help%3A-Debugging-Firefox-Add-Ons-tp25681430p25681430.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25259875</id>
	<title>Re: Spider Monkey and jsdiDebuggerService Crash?</title>
	<published>2009-09-02T08:30:50Z</published>
	<updated>2009-09-02T08:30:50Z</updated>
	<author>
		<name>John J Barton</name>
	</author>
	<content type="html">Jiyul wrote:
&lt;br&gt;...
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; But that plugin works okay with just clean firefox. It crashes when some 
&lt;br&gt;&amp;gt; other component uses jsdIDebuggerService like as our IDE(when it 
&lt;br&gt;&amp;gt; debugging script) or firebug.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I have two suspects:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Q. If some native c++ code can invoke some script, It must be executed 
&lt;br&gt;&amp;gt; UI-thread, because some XHTML DOM can be modified by script. Our c++ 
&lt;br&gt;&amp;gt; code seems to have not guarantee for that. &amp;nbsp;Am I right? then how to do 
&lt;br&gt;&amp;gt; that?
&lt;/div&gt;&lt;br&gt;If you question is &amp;quot;must jsd be called on the UI-thread&amp;quot; the answer is 
&lt;br&gt;almost certainly &amp;quot;yes&amp;quot;. Nothing about the design of jsd is thread safe, 
&lt;br&gt;and specifically it creates data that points to js objects. So any 
&lt;br&gt;caller of jsd must be on the same thread as the creator of js objects as 
&lt;br&gt;far as I know.
&lt;br&gt;&lt;br&gt;&amp;gt; (I am an eclipse based IDE developer so I don't know much)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Q. Does calling script through Spider Monkey can be problem with using 
&lt;br&gt;&amp;gt; jsdIDebuggerService?
&lt;br&gt;&lt;br&gt;I don't understand this question. jsdIDebuggerService is part of the JS 
&lt;br&gt;engine.
&lt;br&gt;&lt;br&gt;jjb
&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25259875&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Spider-Monkey-and-jsdiDebuggerService-Crash--tp25250348p25259875.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25253271</id>
	<title>Re: Spider Monkey and jsdiDebuggerService Crash?</title>
	<published>2009-09-02T01:02:42Z</published>
	<updated>2009-09-02T01:02:42Z</updated>
	<author>
		<name>Gijs Kruitbosch (&quot;Hannibal&quot;)</name>
	</author>
	<content type="html">On 02/09/2009 06:51 AM, Jiyul wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; sorry for my terrible explanation.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Our product(Web RIA Solution) gives development(including debugger)
&lt;br&gt;&amp;gt; environment and it's runtime(script + plugins for each browser) to
&lt;br&gt;&amp;gt; customers. Customers can make web app which runs on browsers. Some
&lt;br&gt;&amp;gt; requirement needs super fast communication, So we supply native plugins
&lt;br&gt;&amp;gt; for each browser.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Development environment contains:
&lt;br&gt;&amp;gt; 1. GUI Script Debugger (it uses jsdIDebuggerService through javaxpcom)
&lt;br&gt;&amp;gt; 2. Browser for debugging
&lt;br&gt;&amp;gt; (based on XUL runner which contains our c++ firefox extension)
&lt;br&gt;&amp;gt; 3. ...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Everything was fine till the native plugin calls java script while
&lt;br&gt;&amp;gt; debugging. When native plugin calls java script, just whole IDE crash.
&lt;br&gt;&amp;gt; Our c++ engineer can't receive any exception or entry point to inspect.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; But that plugin works okay with just clean firefox. It crashes when some
&lt;br&gt;&amp;gt; other component uses jsdIDebuggerService like as our IDE(when it
&lt;br&gt;&amp;gt; debugging script) or firebug.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have two suspects:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Q. If some native c++ code can invoke some script, It must be executed
&lt;br&gt;&amp;gt; UI-thread, because some XHTML DOM can be modified by script. Our c++
&lt;br&gt;&amp;gt; code seems to have not guarantee for that. Am I right? then how to do that?
&lt;br&gt;&amp;gt; (I am an eclipse based IDE developer so I don't know much)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Q. Does calling script through Spider Monkey can be problem with using
&lt;br&gt;&amp;gt; jsdIDebuggerService?
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;It's possible that this is because you're not spinning up a new event loop, but 
&lt;br&gt;I don't know enough about the internals of JSD to be sure (and don't have time 
&lt;br&gt;to figure it out for you at this point, sorry). Have a look at what Venkman (and 
&lt;br&gt;probably Chromebug too) does. :-)
&lt;br&gt;&lt;br&gt;~ Gijs
&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25253271&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Spider-Monkey-and-jsdiDebuggerService-Crash--tp25250348p25253271.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25252037</id>
	<title>Re: Spider Monkey and jsdiDebuggerService Crash?</title>
	<published>2009-09-01T22:51:14Z</published>
	<updated>2009-09-01T22:51:14Z</updated>
	<author>
		<name>Jiyul-2</name>
	</author>
	<content type="html">sorry for my terrible explanation.
&lt;br&gt;&lt;br&gt;Our product(Web RIA Solution) gives development(including debugger) 
&lt;br&gt;environment and it's runtime(script + plugins for each browser) to 
&lt;br&gt;customers. Customers can make web app which runs on browsers. Some 
&lt;br&gt;requirement needs super fast communication, So we supply native plugins 
&lt;br&gt;for each browser.
&lt;br&gt;&lt;br&gt;Development environment contains:
&lt;br&gt;&amp;nbsp; 1. GUI Script Debugger (it uses jsdIDebuggerService through javaxpcom)
&lt;br&gt;&amp;nbsp; 2. Browser for debugging
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;(based on XUL runner which contains our c++ firefox extension)
&lt;br&gt;&amp;nbsp; 3. ...
&lt;br&gt;&lt;br&gt;Everything was fine till the native plugin calls java script while 
&lt;br&gt;debugging. When native plugin calls java script, just whole IDE crash. 
&lt;br&gt;Our c++ engineer can't receive any exception or entry point to inspect.
&lt;br&gt;&lt;br&gt;But that plugin works okay with just clean firefox. It crashes when some 
&lt;br&gt;other component uses jsdIDebuggerService like as our IDE(when it 
&lt;br&gt;debugging script) or firebug.
&lt;br&gt;&lt;br&gt;I have two suspects:
&lt;br&gt;&lt;br&gt;Q. If some native c++ code can invoke some script, It must be executed 
&lt;br&gt;UI-thread, because some XHTML DOM can be modified by script. Our c++ 
&lt;br&gt;code seems to have not guarantee for that. &amp;nbsp;Am I right? then how to do that?
&lt;br&gt;(I am an eclipse based IDE developer so I don't know much)
&lt;br&gt;&lt;br&gt;&lt;br&gt;Q. Does calling script through Spider Monkey can be problem with using 
&lt;br&gt;jsdIDebuggerService?
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25252037&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Spider-Monkey-and-jsdiDebuggerService-Crash--tp25250348p25252037.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25251740</id>
	<title>Re: Spider Monkey and jsdiDebuggerService Crash?</title>
	<published>2009-09-01T22:10:30Z</published>
	<updated>2009-09-01T22:10:30Z</updated>
	<author>
		<name>John J Barton</name>
	</author>
	<content type="html">Jiyul wrote:
&lt;br&gt;&amp;gt; I developed GUI script debugger which runs on eclipse. (with xul runner 
&lt;br&gt;&amp;gt; and debugger service)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; And my co-worker developed firefox plugin with c++.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; when that plugin calls a script function through spider monkey on 
&lt;br&gt;&amp;gt; debugging browser(which is based on customized xul runner), whole 
&lt;br&gt;&amp;gt; eclipse crashed(JVM termination)
&lt;br&gt;&lt;br&gt;Well, I'd say &amp;quot;process termination&amp;quot;. Eclipse is just a C++ program to 
&lt;br&gt;the OS.
&lt;br&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; That plugin works okay in firefox. but it seems to crash with firebug 
&lt;br&gt;&lt;br&gt;Which 'it'? plugin seems to crash with firebug or firefox seems to crash 
&lt;br&gt;with firebug? (&amp;quot;seems to&amp;quot;? Either it crashes or it does not crash.)
&lt;br&gt;&lt;br&gt;&amp;gt; too. so I think debugger service and spider monkey compatibility might 
&lt;br&gt;&amp;gt; be one factor of problem.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; any idea?
&lt;br&gt;&lt;br&gt;Gee, you have three programs with extensive experience of not crashing, 
&lt;br&gt;eclipse, firefox and firebug. And you have one new C++ code. I know 
&lt;br&gt;where I would look.
&lt;br&gt;&lt;br&gt;jjb
&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25251740&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Spider-Monkey-and-jsdiDebuggerService-Crash--tp25250348p25251740.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25250348</id>
	<title>Spider Monkey and jsdiDebuggerService Crash?</title>
	<published>2009-09-01T18:38:40Z</published>
	<updated>2009-09-01T18:38:40Z</updated>
	<author>
		<name>Jiyul-2</name>
	</author>
	<content type="html">I developed GUI script debugger which runs on eclipse. (with xul runner 
&lt;br&gt;and debugger service)
&lt;br&gt;&lt;br&gt;And my co-worker developed firefox plugin with c++.
&lt;br&gt;&lt;br&gt;when that plugin calls a script function through spider monkey on 
&lt;br&gt;debugging browser(which is based on customized xul runner), whole 
&lt;br&gt;eclipse crashed(JVM termination)
&lt;br&gt;&lt;br&gt;That plugin works okay in firefox. but it seems to crash with firebug 
&lt;br&gt;too. so I think debugger service and spider monkey compatibility might 
&lt;br&gt;be one factor of problem.
&lt;br&gt;&lt;br&gt;any idea?
&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25250348&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Spider-Monkey-and-jsdiDebuggerService-Crash--tp25250348p25250348.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25023241</id>
	<title>Download Onyx Production House 7.3</title>
	<published>2009-08-18T04:50:42Z</published>
	<updated>2009-08-18T04:50:42Z</updated>
	<author>
		<name>ted7590</name>
	</author>
	<content type="html">BEST PERFECT CRACKED SOFTWARE FOR SALE !
&lt;br&gt;* Missler TopSolid Wood 2009 CAD/CAM
&lt;br&gt;* Missler TopSolid'Wood 2009 
&lt;br&gt;* EnRoute Pro 4.0.0.48
&lt;br&gt;* EnRoute DoorWizard (Quisine Software)
&lt;br&gt;* KCDW Cabinet Makers Software 8.0
&lt;br&gt;* ProNEST 8.0.5.2814
&lt;br&gt;* AlphaDoor 3.0 For AlphaCAM 
&lt;br&gt;* MicroVellum ToolBox Cabinet Maker 6.7
&lt;br&gt;* MicroVellum OverDrive Pro 67.104.18
&lt;br&gt;* Glass EYE 2000 3.1 Pro Plus 
&lt;br&gt;(piece Burst,Nesting,Explode Enabled)
&lt;br&gt;* Siskiyou Cabinet PRO CNC 2007
&lt;br&gt;* Siskiyou Door PRO CNC 2007
&lt;br&gt;* Custom QuickLabel Omni 5.3
&lt;br&gt;* Teklynx Codesoft 8.5 RFID Enterprise
&lt;br&gt;* WorkNC G3 19.18
&lt;br&gt;* ArtCAM Pro 2009
&lt;br&gt;* ArtCAM Jewelsmith 2009 
&lt;br&gt;* Gemvision Digital Goldsmith 5.0
&lt;br&gt;* Gemvision Matrix 3D 6.0 SR2 (Mill,Vray Enabled)
&lt;br&gt;* Mecsoft RhinoCAM PRO 2.0
&lt;br&gt;* TMD RhinoGOLD 2.0 SR1
&lt;br&gt;* Gerber Omega 3.0 CP
&lt;br&gt;* Wasatch SoftRIP 6.5 All Options Enabled
&lt;br&gt;* Flexisign Pro 8.6v2 SP2
&lt;br&gt;* FlexiENGRAVE Pro 8.6v2
&lt;br&gt;* Colorgate Production Server Pro 5.2
&lt;br&gt;* Colorgate Production Server Ultimate 5.2
&lt;br&gt;* 3Design CAD PRO 5.0
&lt;br&gt;* Cadlink SignLAB 8.0 Print &amp; Cut
&lt;br&gt;* Onyx Postershop 7.3 All Printers Enabled
&lt;br&gt;* Onyx Production House 7.3 All Printers Enabled
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://teds.onodot.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://teds.onodot.com/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://img141.imagevenue.com/img.php?image=90421_Sw2009_122_176lo.jpg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://img141.imagevenue.com/img.php?image=90421_Sw2009_122_176lo.jpg&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://img2.pict.com/cc/e6/7c/1484026/0/sw2009.jpg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://img2.pict.com/cc/e6/7c/1484026/0/sw2009.jpg&lt;/a&gt;&lt;br&gt;&lt;br&gt;Only New Software listed here
&lt;br&gt;For instant reply Contact Only on (ted7590 @ gmail . com) remove spaces
&lt;br&gt;Site : (teds . onodot . com) remove spaces
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Download-Onyx-Production-House-7.3-tp25023241p25023241.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25023220</id>
	<title>Onyx Production House 7.3 crack</title>
	<published>2009-08-18T04:49:10Z</published>
	<updated>2009-08-18T04:49:10Z</updated>
	<author>
		<name>ted7590</name>
	</author>
	<content type="html">BEST PERFECT CRACKED SOFTWARE FOR SALE !
&lt;br&gt;* Missler TopSolid Wood 2009 CAD/CAM
&lt;br&gt;* Missler TopSolid'Wood 2009 
&lt;br&gt;* EnRoute Pro 4.0.0.48
&lt;br&gt;* EnRoute DoorWizard (Quisine Software)
&lt;br&gt;* KCDW Cabinet Makers Software 8.0
&lt;br&gt;* ProNEST 8.0.5.2814
&lt;br&gt;* AlphaDoor 3.0 For AlphaCAM 
&lt;br&gt;* MicroVellum ToolBox Cabinet Maker 6.7
&lt;br&gt;* MicroVellum OverDrive Pro 67.104.18
&lt;br&gt;* Glass EYE 2000 3.1 Pro Plus 
&lt;br&gt;(piece Burst,Nesting,Explode Enabled)
&lt;br&gt;* Siskiyou Cabinet PRO CNC 2007
&lt;br&gt;* Siskiyou Door PRO CNC 2007
&lt;br&gt;* Custom QuickLabel Omni 5.3
&lt;br&gt;* Teklynx Codesoft 8.5 RFID Enterprise
&lt;br&gt;* WorkNC G3 19.18
&lt;br&gt;* ArtCAM Pro 2009
&lt;br&gt;* ArtCAM Jewelsmith 2009 
&lt;br&gt;* Gemvision Digital Goldsmith 5.0
&lt;br&gt;* Gemvision Matrix 3D 6.0 SR2 (Mill,Vray Enabled)
&lt;br&gt;* Mecsoft RhinoCAM PRO 2.0
&lt;br&gt;* TMD RhinoGOLD 2.0 SR1
&lt;br&gt;* Gerber Omega 3.0 CP
&lt;br&gt;* Wasatch SoftRIP 6.5 All Options Enabled
&lt;br&gt;* Flexisign Pro 8.6v2 SP2
&lt;br&gt;* FlexiENGRAVE Pro 8.6v2
&lt;br&gt;* Colorgate Production Server Pro 5.2
&lt;br&gt;* Colorgate Production Server Ultimate 5.2
&lt;br&gt;* 3Design CAD PRO 5.0
&lt;br&gt;* Cadlink SignLAB 8.0 Print &amp; Cut
&lt;br&gt;* Onyx Postershop 7.3 All Printers Enabled
&lt;br&gt;* Onyx Production House 7.3 All Printers Enabled
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://teds.onodot.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://teds.onodot.com/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://img141.imagevenue.com/img.php?image=90421_Sw2009_122_176lo.jpg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://img141.imagevenue.com/img.php?image=90421_Sw2009_122_176lo.jpg&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://img2.pict.com/cc/e6/7c/1484026/0/sw2009.jpg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://img2.pict.com/cc/e6/7c/1484026/0/sw2009.jpg&lt;/a&gt;&lt;br&gt;&lt;br&gt;Only New Software listed here
&lt;br&gt;For instant reply Contact Only on (ted7590 @ gmail . com) remove spaces
&lt;br&gt;Site : (teds . onodot . com) remove spaces
&lt;br&gt;&lt;br&gt;&amp;nbsp;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Onyx-Production-House-7.3-crack-tp25023220p25023220.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25023196</id>
	<title>Onyx Postershop 7.3 Patched</title>
	<published>2009-08-18T04:47:26Z</published>
	<updated>2009-08-18T04:47:26Z</updated>
	<author>
		<name>ted7590</name>
	</author>
	<content type="html">BEST PERFECT CRACKED SOFTWARE FOR SALE !
&lt;br&gt;* Missler TopSolid Wood 2009 CAD/CAM
&lt;br&gt;* Missler TopSolid'Wood 2009 
&lt;br&gt;* EnRoute Pro 4.0.0.48
&lt;br&gt;* EnRoute DoorWizard (Quisine Software)
&lt;br&gt;* KCDW Cabinet Makers Software 8.0
&lt;br&gt;* ProNEST 8.0.5.2814
&lt;br&gt;* AlphaDoor 3.0 For AlphaCAM 
&lt;br&gt;* MicroVellum ToolBox Cabinet Maker 6.7
&lt;br&gt;* MicroVellum OverDrive Pro 67.104.18
&lt;br&gt;* Glass EYE 2000 3.1 Pro Plus 
&lt;br&gt;(piece Burst,Nesting,Explode Enabled)
&lt;br&gt;* Siskiyou Cabinet PRO CNC 2007
&lt;br&gt;* Siskiyou Door PRO CNC 2007
&lt;br&gt;* Custom QuickLabel Omni 5.3
&lt;br&gt;* Teklynx Codesoft 8.5 RFID Enterprise
&lt;br&gt;* WorkNC G3 19.18
&lt;br&gt;* ArtCAM Pro 2009
&lt;br&gt;* ArtCAM Jewelsmith 2009 
&lt;br&gt;* Gemvision Digital Goldsmith 5.0
&lt;br&gt;* Gemvision Matrix 3D 6.0 SR2 (Mill,Vray Enabled)
&lt;br&gt;* Mecsoft RhinoCAM PRO 2.0
&lt;br&gt;* TMD RhinoGOLD 2.0 SR1
&lt;br&gt;* Gerber Omega 3.0 CP
&lt;br&gt;* Wasatch SoftRIP 6.5 All Options Enabled
&lt;br&gt;* Flexisign Pro 8.6v2 SP2
&lt;br&gt;* FlexiENGRAVE Pro 8.6v2
&lt;br&gt;* Colorgate Production Server Pro 5.2
&lt;br&gt;* Colorgate Production Server Ultimate 5.2
&lt;br&gt;* 3Design CAD PRO 5.0
&lt;br&gt;* Cadlink SignLAB 8.0 Print &amp; Cut
&lt;br&gt;* Onyx Postershop 7.3 All Printers Enabled
&lt;br&gt;* Onyx Production House 7.3 All Printers Enabled
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://teds.onodot.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://teds.onodot.com/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://img141.imagevenue.com/img.php?image=90421_Sw2009_122_176lo.jpg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://img141.imagevenue.com/img.php?image=90421_Sw2009_122_176lo.jpg&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://img2.pict.com/cc/e6/7c/1484026/0/sw2009.jpg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://img2.pict.com/cc/e6/7c/1484026/0/sw2009.jpg&lt;/a&gt;&lt;br&gt;&lt;br&gt;Only New Software listed here
&lt;br&gt;For instant reply Contact Only on (ted7590 @ gmail . com) remove spaces
&lt;br&gt;Site : (teds . onodot . com) remove spaces
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Onyx-Postershop-7.3-Patched-tp25023196p25023196.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25023184</id>
	<title>Onyx PosterShop 7.3 Crack</title>
	<published>2009-08-18T04:46:13Z</published>
	<updated>2009-08-18T04:46:13Z</updated>
	<author>
		<name>ted7590</name>
	</author>
	<content type="html">BEST PERFECT CRACKED SOFTWARE FOR SALE !
&lt;br&gt;* Missler TopSolid Wood 2009 CAD/CAM
&lt;br&gt;* Missler TopSolid'Wood 2009 
&lt;br&gt;* EnRoute Pro 4.0.0.48
&lt;br&gt;* EnRoute DoorWizard (Quisine Software)
&lt;br&gt;* KCDW Cabinet Makers Software 8.0
&lt;br&gt;* ProNEST 8.0.5.2814
&lt;br&gt;* AlphaDoor 3.0 For AlphaCAM 
&lt;br&gt;* MicroVellum ToolBox Cabinet Maker 6.7
&lt;br&gt;* MicroVellum OverDrive Pro 67.104.18
&lt;br&gt;* Glass EYE 2000 3.1 Pro Plus 
&lt;br&gt;(piece Burst,Nesting,Explode Enabled)
&lt;br&gt;* Siskiyou Cabinet PRO CNC 2007
&lt;br&gt;* Siskiyou Door PRO CNC 2007
&lt;br&gt;* Custom QuickLabel Omni 5.3
&lt;br&gt;* Teklynx Codesoft 8.5 RFID Enterprise
&lt;br&gt;* WorkNC G3 19.18
&lt;br&gt;* ArtCAM Pro 2009
&lt;br&gt;* ArtCAM Jewelsmith 2009 
&lt;br&gt;* Gemvision Digital Goldsmith 5.0
&lt;br&gt;* Gemvision Matrix 3D 6.0 SR2 (Mill,Vray Enabled)
&lt;br&gt;* Mecsoft RhinoCAM PRO 2.0
&lt;br&gt;* TMD RhinoGOLD 2.0 SR1
&lt;br&gt;* Gerber Omega 3.0 CP
&lt;br&gt;* Wasatch SoftRIP 6.5 All Options Enabled
&lt;br&gt;* Flexisign Pro 8.6v2 SP2
&lt;br&gt;* FlexiENGRAVE Pro 8.6v2
&lt;br&gt;* Colorgate Production Server Pro 5.2
&lt;br&gt;* Colorgate Production Server Ultimate 5.2
&lt;br&gt;* 3Design CAD PRO 5.0
&lt;br&gt;* Cadlink SignLAB 8.0 Print &amp; Cut
&lt;br&gt;* Onyx Postershop 7.3 All Printers Enabled
&lt;br&gt;* Onyx Production House 7.3 All Printers Enabled
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://teds.onodot.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://teds.onodot.com/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://img141.imagevenue.com/img.php?image=90421_Sw2009_122_176lo.jpg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://img141.imagevenue.com/img.php?image=90421_Sw2009_122_176lo.jpg&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://img2.pict.com/cc/e6/7c/1484026/0/sw2009.jpg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://img2.pict.com/cc/e6/7c/1484026/0/sw2009.jpg&lt;/a&gt;&lt;br&gt;&lt;br&gt;Only New Software listed here
&lt;br&gt;For instant reply Contact Only on (ted7590 @ gmail . com) remove spaces
&lt;br&gt;Site : (teds . onodot . com) remove spaces
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Onyx-PosterShop-7.3-Crack-tp25023184p25023184.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25023157</id>
	<title>Download Onyx PosterShop 7.3</title>
	<published>2009-08-18T04:44:36Z</published>
	<updated>2009-08-18T04:44:36Z</updated>
	<author>
		<name>ted7590</name>
	</author>
	<content type="html">BEST PERFECT CRACKED SOFTWARE FOR SALE !
&lt;br&gt;* Missler TopSolid Wood 2009 CAD/CAM
&lt;br&gt;* Missler TopSolid'Wood 2009 
&lt;br&gt;* EnRoute Pro 4.0.0.48
&lt;br&gt;* EnRoute DoorWizard (Quisine Software)
&lt;br&gt;* KCDW Cabinet Makers Software 8.0
&lt;br&gt;* ProNEST 8.0.5.2814
&lt;br&gt;* AlphaDoor 3.0 For AlphaCAM 
&lt;br&gt;* MicroVellum ToolBox Cabinet Maker 6.7
&lt;br&gt;* MicroVellum OverDrive Pro 67.104.18
&lt;br&gt;* Glass EYE 2000 3.1 Pro Plus 
&lt;br&gt;(piece Burst,Nesting,Explode Enabled)
&lt;br&gt;* Siskiyou Cabinet PRO CNC 2007
&lt;br&gt;* Siskiyou Door PRO CNC 2007
&lt;br&gt;* Custom QuickLabel Omni 5.3
&lt;br&gt;* Teklynx Codesoft 8.5 RFID Enterprise
&lt;br&gt;* WorkNC G3 19.18
&lt;br&gt;* ArtCAM Pro 2009
&lt;br&gt;* ArtCAM Jewelsmith 2009 
&lt;br&gt;* Gemvision Digital Goldsmith 5.0
&lt;br&gt;* Gemvision Matrix 3D 6.0 SR2 (Mill,Vray Enabled)
&lt;br&gt;* Mecsoft RhinoCAM PRO 2.0
&lt;br&gt;* TMD RhinoGOLD 2.0 SR1
&lt;br&gt;* Gerber Omega 3.0 CP
&lt;br&gt;* Wasatch SoftRIP 6.5 All Options Enabled
&lt;br&gt;* Flexisign Pro 8.6v2 SP2
&lt;br&gt;* FlexiENGRAVE Pro 8.6v2
&lt;br&gt;* Colorgate Production Server Pro 5.2
&lt;br&gt;* Colorgate Production Server Ultimate 5.2
&lt;br&gt;* 3Design CAD PRO 5.0
&lt;br&gt;* Cadlink SignLAB 8.0 Print &amp; Cut
&lt;br&gt;* Onyx Postershop 7.3 All Printers Enabled
&lt;br&gt;* Onyx Production House 7.3 All Printers Enabled
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://teds.onodot.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://teds.onodot.com/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://img141.imagevenue.com/img.php?image=90421_Sw2009_122_176lo.jpg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://img141.imagevenue.com/img.php?image=90421_Sw2009_122_176lo.jpg&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://img2.pict.com/cc/e6/7c/1484026/0/sw2009.jpg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://img2.pict.com/cc/e6/7c/1484026/0/sw2009.jpg&lt;/a&gt;&lt;br&gt;&lt;br&gt;Only New Software listed here
&lt;br&gt;For instant reply Contact Only on (ted7590 @ gmail . com) remove spaces
&lt;br&gt;Site : (teds . onodot . com) remove spaces
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Download-Onyx-PosterShop-7.3-tp25023157p25023157.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24942480</id>
	<title>Multi-threading debugger support</title>
	<published>2009-08-12T11:37:15Z</published>
	<updated>2009-08-12T11:37:15Z</updated>
	<author>
		<name>Robin Ehrlich</name>
	</author>
	<content type="html">We have been using jsd.dll to implement JavaScript debugging. When we run in 
&lt;br&gt;a multi-thread environment in which we switch JS contextes between threads, 
&lt;br&gt;we have been having lots of aborts in the debugger when destroying JSD 
&lt;br&gt;contexts. Usually JS_GC fails in a free().
&lt;br&gt;&lt;br&gt;We noticed that JSDContext has a jsdc-&amp;gt;dumbContext, but that there is no 
&lt;br&gt;support for switching threads via &amp;nbsp;JS_SetContextThread() and 
&lt;br&gt;JS_ClearContextThread(). This causes assertion failures in GC. Is this a 
&lt;br&gt;bug? Should jsd work in such a mode? Could some calls be added to assign the 
&lt;br&gt;thread to the context correctly?
&lt;br&gt;&lt;br&gt;Robin
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24942480&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Multi-threading-debugger-support-tp24942480p24942480.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24924632</id>
	<title>Study on communication and collaboration in software development teams</title>
	<published>2009-08-11T12:54:08Z</published>
	<updated>2009-08-11T12:54:08Z</updated>
	<author>
		<name>Martin Gelhaus-2</name>
	</author>
	<content type="html">Dear JavaSript Debugger developer,
&lt;br&gt;&lt;br&gt;within the scope of my diploma thesis at the University of Paderborn, Germany, with the title &amp;quot;Study about communication and collaboration in software development in teams&amp;quot; I am conducting a survey of members of software development teams.
&lt;br&gt;&lt;br&gt;I would be very grateful if you help me in my studies and answer the survey at &lt;a href=&quot;http://thales.cs.upb.de/limesurvey185/index.php?lang=en&amp;sid=91192&amp;token=cxrnarbggp4we27&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://thales.cs.upb.de/limesurvey185/index.php?lang=en&amp;sid=91192&amp;token=cxrnarbggp4we27&lt;/a&gt;&lt;br&gt;&lt;br&gt;This is the official description of the survey:
&lt;br&gt;&lt;br&gt;In the last years many means of communication and collaboration were introduced in software projects to assist the development teams with their daily work.
&lt;br&gt;&lt;br&gt;With this study we want to identify requirements for a communication- and collaboration-supporting platform for software development. For this purpose we will evaluate the utilization and effectiveness of different means of communication and collaboration in solving software and managerial problems in software development teams.
&lt;br&gt;&lt;br&gt;The survey will take about 10-15 minutes and contains 55 questions that cover various topics.
&lt;br&gt;&lt;br&gt;Many thanks for your support of my research. If there are any further questions, don't hesitate to contact me.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Best regards from Paderborn, Germany
&lt;br&gt;&lt;br&gt;Martin Gelhaus (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24924632&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gelhaus@...&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;----------------------------------------------
&lt;br&gt;Click here to do the survey:
&lt;br&gt;&lt;a href=&quot;http://thales.cs.upb.de/limesurvey185/index.php?lang=en&amp;sid=91192&amp;token=cxrnarbggp4we27&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://thales.cs.upb.de/limesurvey185/index.php?lang=en&amp;sid=91192&amp;token=cxrnarbggp4we27&lt;/a&gt;&lt;br&gt;&lt;br&gt;----
&lt;br&gt;Martin Gelhaus
&lt;br&gt;&lt;br&gt;Graduand at Didactics of Informatics chair at University of Paderborn
&lt;br&gt;Fürstenallee 11
&lt;br&gt;Room F2.416
&lt;br&gt;D-33102 Paderborn			
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24924632&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Study-on-communication-and-collaboration-in-software-development-teams-tp24924632p24924632.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24893882</id>
	<title>Best fishing</title>
	<published>2009-08-09T17:21:01Z</published>
	<updated>2009-08-09T17:21:01Z</updated>
	<author>
		<name>Ada dojo</name>
	</author>
	<content type="html">*******************************************************************
&lt;br&gt;&lt;br&gt;*******************************************************************
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ENTER HERE:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://wd-content.cc/about/best-fishing&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wd-content.cc/about/best-fishing&lt;/a&gt;&amp;nbsp;&amp;lt;&amp;lt;&amp;lt;
&lt;br&gt;&lt;br&gt;*******************************************************************
&lt;br&gt;&lt;br&gt;*******************************************************************
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;.
&lt;br&gt;best fishing line
&lt;br&gt;best fishing near disney florida
&lt;br&gt;best fishing bait
&lt;br&gt;best fishing in canada
&lt;br&gt;best fishing bait in florida lakes
&lt;br&gt;best fishing times days
&lt;br&gt;best fishing in myrtle beach sc
&lt;br&gt;list of best fishing lures ever
&lt;br&gt;maines best fishing lake
&lt;br&gt;best fishing lakes in polk county fl
&lt;br&gt;best fishing lake in virginia
&lt;br&gt;best fishing line for a bait caster
&lt;br&gt;maines best fishing lake
&lt;br&gt;best fishing spots in new jersey
&lt;br&gt;best fishing trip ever
&lt;br&gt;best fishing vidio
&lt;br&gt;best fishing knots
&lt;br&gt;world of warcraft best fishing
&lt;br&gt;best fishing tournament
&lt;br&gt;best fishing on texas coast in october
&lt;br&gt;best fishing near disney florida
&lt;br&gt;what is the best fishing line
&lt;br&gt;best fishing lakes wind river
&lt;br&gt;best fishing spots in new jersey
&lt;br&gt;best fishing knots
&lt;br&gt;best fishing pontoons
&lt;br&gt;florida best fishing lures
&lt;br&gt;maps of best fishing lakes in polk county fl
&lt;br&gt;best fishing spots in ga
&lt;br&gt;best fishing days guide chart
&lt;br&gt;best fishing ocean kayaks
&lt;br&gt;best fishing spots at lake somerville
&lt;br&gt;the best fishing line
&lt;br&gt;best fishing bait
&lt;br&gt;best fishing spots ontario
&lt;br&gt;best fishing spots and st augustine florida
&lt;br&gt;best fishing spots at lake somerville
&lt;br&gt;best fishing in chile
&lt;br&gt;best fishing in chile
&lt;br&gt;the best fishing websites
&lt;br&gt;best fishing spots in ga
&lt;br&gt;best fishing techniques for catfish
&lt;br&gt;best fishing spots in mays landing nj
&lt;br&gt;the best fishing lures
&lt;br&gt;bass best fishing lake
&lt;br&gt;best fishing spots in mayslanding
&lt;br&gt;bass best fishing lake
&lt;br&gt;best fishing in ky.
&lt;br&gt;the best fishing canoe
&lt;br&gt;best fishing kayaks
&lt;br&gt;best fishing techniques for catfish
&lt;br&gt;good better best fishing t-shirt
&lt;br&gt;best fishing spots
&lt;br&gt;best fishing spots in mayslanding
&lt;br&gt;the best fishing websites
&lt;br&gt;best fishing spots at lake somerville
&lt;br&gt;best fishing reels
&lt;br&gt;best fishing in charleston south carolina
&lt;br&gt;best fishing kayak
&lt;br&gt;best fishing black lights
&lt;br&gt;best fishing knot
&lt;br&gt;best fishing
&lt;br&gt;best fishing days 2007
&lt;br&gt;best fishing times and days
&lt;br&gt;best fishing bait in florida lakes
&lt;br&gt;best fishing line for a bait caster
&lt;br&gt;best fishing times
&lt;br&gt;best fishing in canada
&lt;br&gt;best fishing days in south texas
&lt;br&gt;best fishing lakes wind river
&lt;br&gt;best fishing times days
&lt;br&gt;florida best fishing lures
&lt;br&gt;best fishing times on lake ontario
&lt;br&gt;best fishing techniques for catfish
&lt;br&gt;best fishing in charleston south carolina
&lt;br&gt;best fishing lures
&lt;br&gt;best fishing spots ontario
&lt;br&gt;best fishing kayak
&lt;br&gt;best fishing trip ever
&lt;br&gt;best fishing time
&lt;br&gt;best fishing vacations
&lt;br&gt;best fishing fly new zealand
&lt;br&gt;best fishing knot
&lt;br&gt;best fishing knot
&lt;br&gt;best fishing boat
&lt;br&gt;best fishing time in california
&lt;br&gt;best fishing trip
&lt;br&gt;best fishing line
&lt;br&gt;best fishing
&lt;br&gt;best fishing black lights
&lt;br&gt;best fishing line for trolling rockfish
&lt;br&gt;best fishing pontoons
&lt;br&gt;best fishing vacation
&lt;br&gt;best fishing area in half moon bay
&lt;br&gt;best fishing spots
&lt;br&gt;best fishing in romania
&lt;br&gt;best fishing trip ever
&lt;br&gt;best fishing spots in nj
&lt;br&gt;best fishing spots and st augustine florida
&lt;br&gt;best fishing in northern california
&lt;br&gt;best fishing line for trolling rockfish
&lt;br&gt;best fishing times on lake ontario
&lt;br&gt;best fishing spots in ga
&lt;br&gt;best fishing times moon
&lt;br&gt;the best fishing websites
&lt;br&gt;the best fishing line
&lt;br&gt;best fishing lake in virginia
&lt;br&gt;florida best fishing lures
&lt;br&gt;best fishing techniques for catfish
&lt;br&gt;best fishing in chile
&lt;br&gt;best fishing sunglasses
&lt;br&gt;best fishing in chile
&lt;br&gt;best fishing reels
&lt;br&gt;best fishing time in california
&lt;br&gt;best fishing southern connecticut
&lt;br&gt;best fishing in the north east
&lt;br&gt;best fishing line
&lt;br&gt;best fishing times today
&lt;br&gt;where is the rhine rivers best fishing spot?
&lt;br&gt;good better best fishing t-shirt
&lt;br&gt;best fishing days and times
&lt;br&gt;best fishing trip ever
&lt;br&gt;best fishing bait
&lt;br&gt;best fishing pole
&lt;br&gt;best fishing lakes wind river
&lt;br&gt;best fishing spots in great bay, nh
&lt;br&gt;best fishing bait
&lt;br&gt;where is the best fishing spot in the rhine river?
&lt;br&gt;best fishing knots
&lt;br&gt;best fishing days and times
&lt;br&gt;best fishing lures
&lt;br&gt;best fishing spots ontario
&lt;br&gt;best fishing in half moon bay
&lt;br&gt;floridas best fishing lures
&lt;br&gt;best fishing times calendar
&lt;br&gt;best fishing in charleston south carolina
&lt;br&gt;best fishing rod and reel
&lt;br&gt;best fishing
&lt;br&gt;best fishing lures
&lt;br&gt;best fishing line tests
&lt;br&gt;best fishing knot
&lt;br&gt;best fishing
&lt;br&gt;ny best fishing
&lt;br&gt;best fishing fly market reel
&lt;br&gt;where is the best fishing spot in the rhine river?
&lt;br&gt;best fishing fly market reel
&lt;br&gt;best fishing times on lake ontario
&lt;br&gt;what is the best fishing line
&lt;br&gt;best fishing fly new zealand
&lt;br&gt;best fishing tournament
&lt;br&gt;best fishing vacations
&lt;br&gt;ny best fishing
&lt;br&gt;best fishing area in half moon bay
&lt;br&gt;best fishing black lights
&lt;br&gt;best fishing black lights
&lt;br&gt;best fishing rods
&lt;br&gt;best fishing spots in ga
&lt;br&gt;best fishing reels
&lt;br&gt;best fishing spots at lake somerville
&lt;br&gt;bass best fishing lake
&lt;br&gt;best fishing bait
&lt;br&gt;best fishing days
&lt;br&gt;florida best fishing lures
&lt;br&gt;best fishing vacations
&lt;br&gt;best fishing near disney florida
&lt;br&gt;best fishing time in california
&lt;br&gt;best fishing spots and st augustine florida
&lt;br&gt;good better best fishing t-shirt
&lt;br&gt;best fishing
&lt;br&gt;best fishing line for a bait caster
&lt;br&gt;best fishing days guide chart
&lt;br&gt;where is the best fishing spot in the rhine river?
&lt;br&gt;best fishing fly market reel
&lt;br&gt;ny best fishing
&lt;br&gt;best fishing line tests
&lt;br&gt;best fishing ocean kayaks
&lt;br&gt;maines best fishing lake
&lt;br&gt;best fishing in southwest ohio
&lt;br&gt;list of the top 50 best fishing lures
&lt;br&gt;best fishing lures
&lt;br&gt;best fishing spots in nj
&lt;br&gt;best fishing spots in new jersey
&lt;br&gt;best fishing line
&lt;br&gt;what is the best fishing line
&lt;br&gt;best fishing days 2007 ky
&lt;br&gt;best fishing in canada
&lt;br&gt;best fishing pole
&lt;br&gt;best fishing pontoons
&lt;br&gt;best fishing pontoons
&lt;br&gt;best fishing in ky.
&lt;br&gt;best fishing in florida
&lt;br&gt;best fishing times days
&lt;br&gt;best fishing in va
&lt;br&gt;maines best fishing lake
&lt;br&gt;best fishing in canada
&lt;br&gt;best fishing in romania
&lt;br&gt;where is the rhine rivers best fishing spot?
&lt;br&gt;best fishing in florida
&lt;br&gt;the best fishing lures
&lt;br&gt;where is the best fishing spot in the rhine river?
&lt;br&gt;do-it best fishing
&lt;br&gt;best fishing in mississippi
&lt;br&gt;best fishing spots at lake somerville
&lt;br&gt;best fishing vidio
&lt;br&gt;best fishing rod and reel
&lt;br&gt;bait bass best fishing
&lt;br&gt;best fishing vacations
&lt;br&gt;best fishing bait
&lt;br&gt;best fishing spots at lake somerville
&lt;br&gt;good better best fishing t-shirt
&lt;br&gt;best fishing bait
&lt;br&gt;best fishing spots ontario
&lt;br&gt;best fishing times moon
&lt;br&gt;what is the best fishing line
&lt;br&gt;best fishing trip ever
&lt;br&gt;best fishing miami trip
&lt;br&gt;where is the rhine rivers best fishing spot?
&lt;br&gt;bass best fishing lake
&lt;br&gt;best fishing vidio
&lt;br&gt;what are the best fishing knots?
&lt;br&gt;best fishing black lights
&lt;br&gt;best fishing in florida
&lt;br&gt;best fishing in myrtle beach sc
&lt;br&gt;best fishing times days
&lt;br&gt;best fishing time
&lt;br&gt;best fishing fly new zealand
&lt;br&gt;best fishing spots in ga
&lt;br&gt;best fishing days and times
&lt;br&gt;best fishing mountains n. carolina
&lt;br&gt;best fishing times and days
&lt;br&gt;the best fishing canoe
&lt;br&gt;best fishing times on lake ontario
&lt;br&gt;best fishing spot nyc
&lt;br&gt;georges river best fishing
&lt;br&gt;best fishing bays on lake minnetonka
&lt;br&gt;best fishing vidio
&lt;br&gt;world of warcraft best fishing
&lt;br&gt;best fishing in va
&lt;br&gt;best fishing spots in nj
&lt;br&gt;best fishing line
&lt;br&gt;best fishing spot in colorado
&lt;br&gt;best fishing spots
&lt;br&gt;best fishing times
&lt;br&gt;florida best fishing lures
&lt;br&gt;best fishing in northern california
&lt;br&gt;the best fishing canoe
&lt;br&gt;where is the rhine rivers best fishing spot?
&lt;br&gt;best fishing lures
&lt;br&gt;best fishing lures
&lt;br&gt;do-it best fishing
&lt;br&gt;best fishing time
&lt;br&gt;best fishing line for trolling rockfish
&lt;br&gt;list of the top 50 best fishing lures
&lt;br&gt;best fishing kayaks
&lt;br&gt;best fishing on oahu for kids
&lt;br&gt;best fishing days 2007 ky
&lt;br&gt;best fishing line for a bait caster
&lt;br&gt;good better best fishing t-shirt
&lt;br&gt;best fishing in ky.
&lt;br&gt;'best fishing in cozumel'
&lt;br&gt;best fishing times on lake ontario
&lt;br&gt;georges river best fishing
&lt;br&gt;best fishing great southbay
&lt;br&gt;best fishing bait
&lt;br&gt;maines best fishing lake
&lt;br&gt;best fishing lake in virginia
&lt;br&gt;best fishing in the north east
&lt;br&gt;best fishing spot nyc
&lt;br&gt;best fishing days in south texas
&lt;br&gt;best fishing lake in virginia
&lt;br&gt;best fishing rod for berkley firline
&lt;br&gt;best fishing in va
&lt;br&gt;best fishing in the north east
&lt;br&gt;best fishing spots in nj
&lt;br&gt;best fishing times days
&lt;br&gt;what is the best fishing line
&lt;br&gt;best fishing on oahu for kids
&lt;br&gt;best fishing spots in ga
&lt;br&gt;best fishing spots in mays landing nj
&lt;br&gt;best fishing pontoons
&lt;br&gt;best fishing lures
&lt;br&gt;what is the best fishing line
&lt;br&gt;'best fishing in cozumel'
&lt;br&gt;where is the rhine rivers best fishing spot?
&lt;br&gt;ny best fishing
&lt;br&gt;best fishing in mississippi
&lt;br&gt;georges river best fishing
&lt;br&gt;best fishing spots at lake somerville
&lt;br&gt;best fishing in northern california
&lt;br&gt;best fishing spots
&lt;br&gt;what is the best fishing line
&lt;br&gt;best fishing spots
&lt;br&gt;best fishing days in south texas
&lt;br&gt;best fishing times today
&lt;br&gt;best fishing fly market reel
&lt;br&gt;best fishing vacation
&lt;br&gt;georges river best fishing
&lt;br&gt;best fishing lakes in polk county fl
&lt;br&gt;best fishing rod
&lt;br&gt;best fishing pole
&lt;br&gt;best fishing lures
&lt;br&gt;best fishing southern connecticut
&lt;br&gt;best fishing lures
&lt;br&gt;best fishing boat
&lt;br&gt;best fishing days
&lt;br&gt;maps of best fishing lakes in polk county fl
&lt;br&gt;best fishing fly new zealand
&lt;br&gt;best fishing line
&lt;br&gt;best fishing fly new zealand
&lt;br&gt;best fishing kayak
&lt;br&gt;best fishing mountains n. carolina
&lt;br&gt;best fishing spots in great bay, nh
&lt;br&gt;best fishing in northern california
&lt;br&gt;best fishing times calendar
&lt;br&gt;maps of best fishing lakes in polk county fl
&lt;br&gt;where is the rhine rivers best fishing spot?
&lt;br&gt;best fishing days and times
&lt;br&gt;best fishing on texas coast in october
&lt;br&gt;dates for best fishing on texas coast
&lt;br&gt;best fishing days in south texas
&lt;br&gt;best fishing rod for berkley firline
&lt;br&gt;best fishing in the north east
&lt;br&gt;best fishing on oahu for kids
&lt;br&gt;where is the rhine rivers best fishing spot?
&lt;br&gt;best fishing in charleston south carolina
&lt;br&gt;best fishing area in half moon bay
&lt;br&gt;best fishing time
&lt;br&gt;best fishing spots at lake somerville
&lt;br&gt;best fishing trip ever
&lt;br&gt;best fishing spots in illinois
&lt;br&gt;best fishing on oahu for kids
&lt;br&gt;best fishing times on lake ontario
&lt;br&gt;best fishing in charleston south carolina
&lt;br&gt;best fishing spot nyc
&lt;br&gt;best fishing bait in florida lakes
&lt;br&gt;best fishing in charleston south carolina
&lt;br&gt;best fishing rod
&lt;br&gt;best fishing times moon
&lt;br&gt;best fishing in southwest ohio
&lt;br&gt;best fishing times calendar
&lt;br&gt;best fishing lakes wind river
&lt;br&gt;maines best fishing lake
&lt;br&gt;best fishing in ky.
&lt;br&gt;best fishing lakes wind river
&lt;br&gt;best fishing on texas coast in october
&lt;br&gt;best fishing fly market reel
&lt;br&gt;best fishing spot nyc
&lt;br&gt;best fishing days
&lt;br&gt;the best fishing lures
&lt;br&gt;best fishing times on lake ontario
&lt;br&gt;best fishing lures
&lt;br&gt;best fishing line for trolling rockfish
&lt;br&gt;best fishing spots in mays landing nj
&lt;br&gt;best fishing in northern california
&lt;br&gt;where is the rhine rivers best fishing spot?
&lt;br&gt;best fishing vacations
&lt;br&gt;best fishing miami trip
&lt;br&gt;best fishing great southbay
&lt;br&gt;floridas best fishing lures
&lt;br&gt;best fishing in half moon bay
&lt;br&gt;best fishing times days
&lt;br&gt;best fishing in florida
&lt;br&gt;best fishing spots in illinois
&lt;br&gt;best fishing spot in colorado
&lt;br&gt;best fishing time
&lt;br&gt;best fishing times
&lt;br&gt;best fishing tecneks for catfish
&lt;br&gt;best fishing techniques for catfish
&lt;br&gt;best fishing vacation
&lt;br&gt;best fishing miami trip
&lt;br&gt;best fishing in southwest ohio
&lt;br&gt;best fishing boat
&lt;br&gt;best fishing spots ontario
&lt;br&gt;best fishing trip
&lt;br&gt;best fishing in romania
&lt;br&gt;colorado best fishing times days
&lt;br&gt;list of the top 50 best fishing lures
&lt;br&gt;best fishing times today
&lt;br&gt;best fishing
&lt;br&gt;best fishing spots in mays landing nj
&lt;br&gt;best fishing days
&lt;br&gt;best fishing spots ontario
&lt;br&gt;best fishing line
&lt;br&gt;best fishing vacations
&lt;br&gt;world of warcraft best fishing
&lt;br&gt;what are the best fishing knots?
&lt;br&gt;best fishing line
&lt;br&gt;maps of best fishing lakes in polk county fl
&lt;br&gt;best fishing lakes in polk county fl
&lt;br&gt;best fishing knot
&lt;br&gt;best fishing pole
&lt;br&gt;best fishing tecneks for catfish
&lt;br&gt;list of the top 50 best fishing lures
&lt;br&gt;best fishing spot in colorado
&lt;br&gt;best fishing area in half moon bay
&lt;br&gt;best fishing great southbay
&lt;br&gt;best fishing time
&lt;br&gt;best fishing spots in new jersey
&lt;br&gt;best fishing southern connecticut
&lt;br&gt;best fishing line for trolling rockfish
&lt;br&gt;best fishing spots in great bay, nh
&lt;br&gt;best fishing knot
&lt;br&gt;best fishing line for trolling rockfish
&lt;br&gt;best fishing southern connecticut
&lt;br&gt;floridas best fishing lures
&lt;br&gt;bait bass best fishing
&lt;br&gt;best fishing pontoons
&lt;br&gt;florida best fishing lures
&lt;br&gt;best fishing fly market reel
&lt;br&gt;best fishing in southwest ohio
&lt;br&gt;best fishing spots at lake somerville
&lt;br&gt;best fishing spots
&lt;br&gt;best fishing time
&lt;br&gt;best fishing spots
&lt;br&gt;best fishing spots in nj
&lt;br&gt;florida best fishing lures
&lt;br&gt;best fishing spots in mayslanding
&lt;br&gt;where is the rhine rivers best fishing spot?
&lt;br&gt;where is the rhine rivers best fishing spot?
&lt;br&gt;best fishing line tests
&lt;br&gt;best fishing vacations
&lt;br&gt;best fishing trip
&lt;br&gt;best fishing times moon
&lt;br&gt;best fishing spot nyc
&lt;br&gt;best fishing in mississippi
&lt;br&gt;best fishing on oahu for kids
&lt;br&gt;best fishing area in half moon bay
&lt;br&gt;maines best fishing lake
&lt;br&gt;florida best fishing lures
&lt;br&gt;best fishing area in half moon bay
&lt;br&gt;best fishing days 2007
&lt;br&gt;best fishing techniques for catfish
&lt;br&gt;florida best fishing lures
&lt;br&gt;best fishing tournament
&lt;br&gt;best fishing techniques for catfish
&lt;br&gt;best fishing times and days
&lt;br&gt;where is the rhine rivers best fishing spot?
&lt;br&gt;best fishing spots at lake somerville
&lt;br&gt;best fishing pole
&lt;br&gt;best fishing in canada
&lt;br&gt;best fishing spots in mays landing nj
&lt;br&gt;best fishing rods
&lt;br&gt;best fishing in myrtle beach sc
&lt;br&gt;best fishing southern connecticut
&lt;br&gt;best fishing days and times
&lt;br&gt;best fishing spots at lake somerville
&lt;br&gt;best fishing spot nyc
&lt;br&gt;list of the top 50 best fishing lures
&lt;br&gt;best fishing sunglasses
&lt;br&gt;the best fishing canoe
&lt;br&gt;best fishing line for a bait caster
&lt;br&gt;do-it best fishing
&lt;br&gt;best fishing trip ever
&lt;br&gt;best fishing lake in virginia
&lt;br&gt;the best fishing line
&lt;br&gt;the best fishing lures
&lt;br&gt;maps of best fishing lakes in polk county fl
&lt;br&gt;best fishing in the north east
&lt;br&gt;best fishing times and days
&lt;br&gt;best fishing trip ever
&lt;br&gt;florida best fishing lures
&lt;br&gt;best fishing rod and reel
&lt;br&gt;dates for best fishing on texas coast
&lt;br&gt;best fishing spots
&lt;br&gt;best fishing lure
&lt;br&gt;what is the best fishing line
&lt;br&gt;best fishing spots and st augustine florida
&lt;br&gt;best fishing time in california
&lt;br&gt;best fishing near disney florida
&lt;br&gt;best fishing spots in illinois
&lt;br&gt;best fishing spots in great bay, nh
&lt;br&gt;best fishing lakes wind river
&lt;br&gt;best fishing spots in mays landing nj
&lt;br&gt;best fishing tournament
&lt;br&gt;best fishing fly market reel
&lt;br&gt;best fishing in southwest ohio
&lt;br&gt;best fishing kayak
&lt;br&gt;best fishing line tests
&lt;br&gt;best fishing days guide chart
&lt;br&gt;best fishing trip ever
&lt;br&gt;best fishing times days
&lt;br&gt;best fishing lure
&lt;br&gt;best fishing black lights
&lt;br&gt;best fishing southern connecticut
&lt;br&gt;best fishing in half moon bay
&lt;br&gt;best fishing in caribian
&lt;br&gt;where is the best fishing spot in the rhine river?
&lt;br&gt;best fishing trip
&lt;br&gt;best fishing vacation
&lt;br&gt;maines best fishing lake
&lt;br&gt;best fishing lakes in polk county fl
&lt;br&gt;the best fishing lures
&lt;br&gt;florida best fishing lures
&lt;br&gt;best fishing in romania
&lt;br&gt;what are the best fishing knots?
&lt;br&gt;best fishing trip ever
&lt;br&gt;where is the rhine rivers best fishing spot?
&lt;br&gt;best fishing lakes in polk county fl
&lt;br&gt;best fishing kayak
&lt;br&gt;best fishing spots in ga
&lt;br&gt;best fishing spots at lake somerville
&lt;br&gt;best fishing pole
&lt;br&gt;floridas best fishing lures
&lt;br&gt;best fishing trip
&lt;br&gt;best fishing days and times
&lt;br&gt;best fishing mountains n. carolina
&lt;br&gt;good better best fishing t-shirt
&lt;br&gt;best fishing in half moon bay
&lt;br&gt;best fishing in ky.
&lt;br&gt;list of best fishing lures ever
&lt;br&gt;best fishing lakes in polk county fl
&lt;br&gt;best fishing rod
&lt;br&gt;best fishing spots in nj
&lt;br&gt;best fishing kayak
&lt;br&gt;best fishing ocean kayaks
&lt;br&gt;best fishing times
&lt;br&gt;do-it best fishing
&lt;br&gt;best fishing miami trip
&lt;br&gt;best fishing bays on lake minnetonka
&lt;br&gt;best fishing in charleston south carolina
&lt;br&gt;the best fishing lures
&lt;br&gt;best fishing boat
&lt;br&gt;best fishing lure
&lt;br&gt;what are the best fishing knots?
&lt;br&gt;best fishing ocean kayaks
&lt;br&gt;best fishing in chile
&lt;br&gt;best fishing in canada
&lt;br&gt;best fishing spots and st augustine florida
&lt;br&gt;best fishing lures
&lt;br&gt;best fishing spots in new jersey
&lt;br&gt;best fishing trip
&lt;br&gt;best fishing in the north east
&lt;br&gt;best fishing in southwest ohio
&lt;br&gt;best fishing lakes in polk county fl
&lt;br&gt;best fishing pole
&lt;br&gt;the best fishing websites
&lt;br&gt;bass best fishing lake
&lt;br&gt;best fishing vidio
&lt;br&gt;best fishing times days
&lt;br&gt;best fishing fly new zealand
&lt;br&gt;best fishing in caribian
&lt;br&gt;where is the rhine rivers best fishing spot?
&lt;br&gt;best fishing in caribian
&lt;br&gt;best fishing great southbay
&lt;br&gt;best fishing lake in virginia
&lt;br&gt;best fishing spots in mayslanding
&lt;br&gt;best fishing in the north east
&lt;br&gt;maines best fishing lake
&lt;br&gt;best fishing techniques for catfish
&lt;br&gt;best fishing rod and reel
&lt;br&gt;best fishing in the north east
&lt;br&gt;best fishing times on lake ontario
&lt;br&gt;best fishing great southbay
&lt;br&gt;good better best fishing t-shirt
&lt;br&gt;best fishing bays on lake minnetonka
&lt;br&gt;best fishing spots and st augustine florida
&lt;br&gt;best fishing in chile
&lt;br&gt;best fishing area in half moon bay
&lt;br&gt;best fishing line spincaster
&lt;br&gt;best fishing in charleston south carolina
&lt;br&gt;best fishing in caribian
&lt;br&gt;best fishing line
&lt;br&gt;best fishing knots
&lt;br&gt;best fishing black lights
&lt;br&gt;best fishing spots ontario
&lt;br&gt;best fishing rod and reel
&lt;br&gt;best fishing rod for berkley firline
&lt;br&gt;best fishing miami trip
&lt;br&gt;list of the top 50 best fishing lures
&lt;br&gt;best fishing spots ontario
&lt;br&gt;best fishing in romania
&lt;br&gt;best fishing great southbay
&lt;br&gt;best fishing spots ontario
&lt;br&gt;bass best fishing lake
&lt;br&gt;list of the top 50 best fishing lures
&lt;br&gt;best fishing spots in ga
&lt;br&gt;maines best fishing lake
&lt;br&gt;best fishing spots ontario
&lt;br&gt;best fishing in romania
&lt;br&gt;best fishing line tests
&lt;br&gt;best fishing bays on lake minnetonka
&lt;br&gt;best fishing rods
&lt;br&gt;best fishing rod
&lt;br&gt;best fishing area in half moon bay
&lt;br&gt;best fishing spots in nj
&lt;br&gt;best fishing rod and reel
&lt;br&gt;best fishing area in half moon bay
&lt;br&gt;best fishing boat
&lt;br&gt;world of warcraft best fishing
&lt;br&gt;best fishing southern connecticut
&lt;br&gt;best fishing line spincaster
&lt;br&gt;best fishing pole
&lt;br&gt;best fishing in florida
&lt;br&gt;best fishing in the north east
&lt;br&gt;best fishing knot
&lt;br&gt;best fishing tournament
&lt;br&gt;best fishing days guide chart
&lt;br&gt;dates for best fishing on texas coast
&lt;br&gt;the best fishing lures
&lt;br&gt;best fishing near disney florida
&lt;br&gt;best fishing days and times
&lt;br&gt;best fishing vacations
&lt;br&gt;best fishing in myrtle beach sc
&lt;br&gt;the best fishing line
&lt;br&gt;best fishing in caribian
&lt;br&gt;where is the best fishing spot in the rhine river?
&lt;br&gt;best fishing
&lt;br&gt;best fishing pole
&lt;br&gt;best fishing in florida
&lt;br&gt;best fishing spots and st augustine florida
&lt;br&gt;ny best fishing
&lt;br&gt;best fishing line spincaster
&lt;br&gt;best fishing lures
&lt;br&gt;best fishing rod for berkley firline
&lt;br&gt;world of warcraft best fishing
&lt;br&gt;best fishing in va
&lt;br&gt;best fishing in southwest ohio
&lt;br&gt;best fishing in southwest ohio
&lt;br&gt;best fishing on texas coast in october
&lt;br&gt;best fishing great southbay
&lt;br&gt;best fishing black lights
&lt;br&gt;best fishing bait
&lt;br&gt;best fishing in northern california
&lt;br&gt;best fishing spots and st augustine florida
&lt;br&gt;maps of best fishing lakes in polk county fl
&lt;br&gt;best fishing in northern california
&lt;br&gt;best fishing bait in florida lakes
&lt;br&gt;best fishing lakes in polk county fl
&lt;br&gt;maps of best fishing lakes in polk county fl
&lt;br&gt;best fishing spots at lake somerville
&lt;br&gt;best fishing vacations
&lt;br&gt;best fishing spot in colorado
&lt;br&gt;best fishing time
&lt;br&gt;world of warcraft best fishing
&lt;br&gt;best fishing fly market reel
&lt;br&gt;best fishing times days
&lt;br&gt;best fishing lakes in polk county fl
&lt;br&gt;best fishing spots in illinois
&lt;br&gt;best fishing vidio
&lt;br&gt;best fishing spots ontario
&lt;br&gt;florida best fishing lures
&lt;br&gt;best fishing mountains n. carolina
&lt;br&gt;best fishing days
&lt;br&gt;best fishing spots in new jersey
&lt;br&gt;best fishing trip ever
&lt;br&gt;best fishing
&lt;br&gt;best fishing tournament
&lt;br&gt;best fishing time in california
&lt;br&gt;best fishing times today
&lt;br&gt;best fishing tecneks for catfish
&lt;br&gt;best fishing in myrtle beach sc
&lt;br&gt;good better best fishing t-shirt
&lt;br&gt;best fishing lakes wind river
&lt;br&gt;best fishing spots in illinois
&lt;br&gt;what is the best fishing line
&lt;br&gt;best fishing rods
&lt;br&gt;best fishing techniques for catfish
&lt;br&gt;best fishing southern connecticut
&lt;br&gt;best fishing line spincaster
&lt;br&gt;best fishing in romania
&lt;br&gt;best fishing southern connecticut
&lt;br&gt;bass best fishing lake
&lt;br&gt;best fishing lakes in polk county fl
&lt;br&gt;georges river best fishing
&lt;br&gt;best fishing boat
&lt;br&gt;best fishing line for a bait caster
&lt;br&gt;best fishing in caribian
&lt;br&gt;best fishing in southwest ohio
&lt;br&gt;best fishing in chile
&lt;br&gt;best fishing in mississippi
&lt;br&gt;where is the best fishing spot in the rhine river?
&lt;br&gt;georges river best fishing
&lt;br&gt;best fishing times and days
&lt;br&gt;best fishing spots ontario
&lt;br&gt;best fishing in caribian
&lt;br&gt;best fishing days in south texas
&lt;br&gt;best fishing rod and reel
&lt;br&gt;best fishing in charleston south carolina
&lt;br&gt;best fishing in florida
&lt;br&gt;best fishing times
&lt;br&gt;best fishing
&lt;br&gt;best fishing times days
&lt;br&gt;best fishing spots at lake somerville
&lt;br&gt;colorado best fishing times days
&lt;br&gt;colorado best fishing times days
&lt;br&gt;best fishing in mississippi
&lt;br&gt;best fishing spot in colorado
&lt;br&gt;best fishing spots in ga
&lt;br&gt;best fishing boat
&lt;br&gt;maines best fishing lake
&lt;br&gt;best fishing on texas coast in october
&lt;br&gt;georges river best fishing
&lt;br&gt;what is the best fishing line
&lt;br&gt;best fishing in charleston south carolina
&lt;br&gt;best fishing knots
&lt;br&gt;best fishing spots
&lt;br&gt;colorado best fishing times days
&lt;br&gt;best fishing knot
&lt;br&gt;best fishing miami trip
&lt;br&gt;best fishing times days
&lt;br&gt;best fishing line for a bait caster
&lt;br&gt;best fishing in caribian
&lt;br&gt;the best fishing websites
&lt;br&gt;best fishing area in half moon bay
&lt;br&gt;best fishing mountains n. carolina
&lt;br&gt;bait bass best fishing
&lt;br&gt;best fishing time in california
&lt;br&gt;best fishing days 2007
&lt;br&gt;best fishing lures
&lt;br&gt;best fishing spots in mays landing nj
&lt;br&gt;best fishing on texas coast in october
&lt;br&gt;best fishing time
&lt;br&gt;best fishing rods
&lt;br&gt;do-it best fishing
&lt;br&gt;the best fishing lures
&lt;br&gt;best fishing spots in nj
&lt;br&gt;best fishing ocean kayaks
&lt;br&gt;list of the top 50 best fishing lures
&lt;br&gt;best fishing spots in nj
&lt;br&gt;good better best fishing t-shirt
&lt;br&gt;best fishing in florida
&lt;br&gt;best fishing rod for berkley firline
&lt;br&gt;best fishing in va
&lt;br&gt;what is the best fishing line
&lt;br&gt;best fishing in florida
&lt;br&gt;the best fishing websites
&lt;br&gt;best fishing in florida
&lt;br&gt;best fishing pole
&lt;br&gt;best fishing techniques for catfish
&lt;br&gt;best fishing in caribian
&lt;br&gt;best fishing times days
&lt;br&gt;the best fishing line
&lt;br&gt;best fishing lures
&lt;br&gt;the best fishing websites
&lt;br&gt;florida best fishing lures
&lt;br&gt;best fishing line
&lt;br&gt;best fishing rods
&lt;br&gt;best fishing in mississippi
&lt;br&gt;bait bass best fishing
&lt;br&gt;best fishing spots
&lt;br&gt;where is the best fishing spot in the rhine river?
&lt;br&gt;best fishing in florida
&lt;br&gt;best fishing times moon
&lt;br&gt;best fishing lure
&lt;br&gt;bait bass best fishing
&lt;br&gt;good better best fishing t-shirt
&lt;br&gt;best fishing trip ever
&lt;br&gt;best fishing bait
&lt;br&gt;ny best fishing
&lt;br&gt;best fishing spots ontario
&lt;br&gt;good better best fishing t-shirt
&lt;br&gt;best fishing ocean kayaks
&lt;br&gt;do-it best fishing
&lt;br&gt;what is the best fishing line
&lt;br&gt;the best fishing lures
&lt;br&gt;best fishing near disney florida
&lt;br&gt;best fishing line spincaster
&lt;br&gt;all-time best fishing lures
&lt;br&gt;best fishing boat
&lt;br&gt;best fishing fly new zealand
&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24893882&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Best-fishing-tp24893882p24893882.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24810319</id>
	<title>Re: embedding with debugging support</title>
	<published>2009-08-04T07:57:53Z</published>
	<updated>2009-08-04T07:57:53Z</updated>
	<author>
		<name>Cristian Tarsoaga-2</name>
	</author>
	<content type="html">No, I didn't do it for two reasons:
&lt;br&gt;1 - that code is not present anymore inside that sample
&lt;br&gt;2 - it seems that such code was needed to enable chrome:// support, but the current sample has this support by default
&lt;br&gt;(I am able to open a simple chrome/XUL example app with no problems)
&lt;br&gt;...so I guess that I don't need that change.
&lt;br&gt;&lt;br&gt;I am not aware of any security issues involved if opening venkman in the same window. But I wouldn't even mind to have such problems :-).
&lt;br&gt;My intention is to only have it in a debug version of my c++ app so that the developers can track any html/js issues.
&lt;br&gt;&lt;br&gt;I'd be very happy to just see the venkman opened and running :-)
&lt;br&gt;&lt;br&gt;I just found some more information here &lt;a href=&quot;https://developer.mozilla.org/en/Debugging_a_XULRunner_Application&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://developer.mozilla.org/en/Debugging_a_XULRunner_Application&lt;/a&gt;&lt;br&gt;But I have to understand how to configure a xul app to try that...
&lt;br&gt;&lt;br&gt;&amp;nbsp; Thanks Gijs,
&lt;br&gt;&amp;nbsp; &amp;nbsp; Chris
&lt;br&gt;&lt;br&gt;Gijs Kruitbosch wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Cristian Tarsoaga wrote:
&lt;br&gt;&amp;gt;&amp;gt; In the end, I was able to start venkman by loading this url from
&lt;br&gt;&amp;gt;&amp;gt; within the demo application: chrome://venkman/content
&lt;br&gt;&amp;gt;&amp;gt; [source: old message from this forum, see
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://osdir.com/ml/mozilla.devel.jsdebugger/2002-04/msg00000.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osdir.com/ml/mozilla.devel.jsdebugger/2002-04/msg00000.html&lt;/a&gt;]
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; But it does not run properly: I was not able to open any http/file url
&lt;br&gt;&amp;gt;&amp;gt; I could also not open DOM Inspector at all...
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Did you make the change suggested in that article, too? If not, that
&lt;br&gt;&amp;gt; would be why it didn't &amp;quot;work&amp;quot;, presumably. However, you would not want
&lt;br&gt;&amp;gt; to load web content in the same browser element, in that case (because
&lt;br&gt;&amp;gt; it will be privileged and be able to do whatever to your computer)... :-\
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ~ Gijs
&lt;/div&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24810319&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/embedding-with-debugging-support-tp24807578p24810319.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24809938</id>
	<title>Re: embedding with debugging support</title>
	<published>2009-08-04T07:37:38Z</published>
	<updated>2009-08-04T07:37:38Z</updated>
	<author>
		<name>Gijs Kruitbosch (&quot;Hannibal&quot;)</name>
	</author>
	<content type="html">Cristian Tarsoaga wrote:
&lt;br&gt;&amp;gt; In the end, I was able to start venkman by loading this url from within the demo application: chrome://venkman/content
&lt;br&gt;&amp;gt; [source: old message from this forum, see &lt;a href=&quot;http://osdir.com/ml/mozilla.devel.jsdebugger/2002-04/msg00000.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osdir.com/ml/mozilla.devel.jsdebugger/2002-04/msg00000.html&lt;/a&gt;]
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; But it does not run properly: I was not able to open any http/file url
&lt;br&gt;&amp;gt; I could also not open DOM Inspector at all...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;Did you make the change suggested in that article, too? If not, that would be 
&lt;br&gt;why it didn't &amp;quot;work&amp;quot;, presumably. However, you would not want to load web 
&lt;br&gt;content in the same browser element, in that case (because it will be privileged 
&lt;br&gt;and be able to do whatever to your computer)... :-\
&lt;br&gt;&lt;br&gt;~ Gijs
&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24809938&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/embedding-with-debugging-support-tp24807578p24809938.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24809828</id>
	<title>Re: embedding with debugging support</title>
	<published>2009-08-04T07:32:00Z</published>
	<updated>2009-08-04T07:32:00Z</updated>
	<author>
		<name>Cristian Tarsoaga-2</name>
	</author>
	<content type="html">Hi Gijs,
&lt;br&gt;&lt;br&gt;&lt;br&gt;I have used these docs: &lt;a href=&quot;https://wiki.mozilla.org/Embedding/NewApi/Win32&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://wiki.mozilla.org/Embedding/NewApi/Win32&lt;/a&gt;&amp;nbsp;to start.
&lt;br&gt;I downloaded xulrunner sources (from here: &lt;a href=&quot;http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/1.9.1/source/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/1.9.1/source/&lt;/a&gt;) and built them.
&lt;br&gt;&lt;br&gt;&lt;br&gt;I am using a slightly modified version of the simple demo app that comes with the xulrunner source tree inside the embedding/tests/winEmbed folder (it runs on Windows)
&lt;br&gt;My xulrunner build includes also dom inspector and venkman as extensions.
&lt;br&gt;(there are some compile time flags that may be used in .mozconfig to determine whether these will be included in the resulting build)
&lt;br&gt;&lt;br&gt;I have full XUL support and Javascript support in that test application. I was able to open some XUL samples or html pages using javascript with no problems.
&lt;br&gt;I just mentioned that I do not have any XUL experience myself, hoping that when/if someone replies will give me all the details needed to setup anything that involves a XUL
&lt;br&gt;application :-)
&lt;br&gt;&lt;br&gt;&lt;br&gt;In the end, I was able to start venkman by loading this url from within the demo application: chrome://venkman/content
&lt;br&gt;[source: old message from this forum, see &lt;a href=&quot;http://osdir.com/ml/mozilla.devel.jsdebugger/2002-04/msg00000.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osdir.com/ml/mozilla.devel.jsdebugger/2002-04/msg00000.html&lt;/a&gt;]
&lt;br&gt;&lt;br&gt;But it does not run properly: I was not able to open any http/file url
&lt;br&gt;I could also not open DOM Inspector at all...
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;thanks :-)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Chris
&lt;br&gt;&lt;br&gt;Gijs Kruitbosch wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Cristian Tarsoaga wrote:
&lt;br&gt;&amp;gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; My name is Chris and I would like to embed Mozilla into a C++ app.
&lt;br&gt;&amp;gt;&amp;gt; I have managed to do this, but I need to have some debugging support
&lt;br&gt;&amp;gt;&amp;gt; (for html, javascript).
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The only way I know of, is to try to embed some extensions like
&lt;br&gt;&amp;gt;&amp;gt; venkman/dom inspector.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The documentation I found for this seems old/confusing. I was not able
&lt;br&gt;&amp;gt;&amp;gt; to embed these after reading this link:
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://developer.mozilla.org/en/XULRunner_tips&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://developer.mozilla.org/en/XULRunner_tips&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Is there any other information available?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Note: I do not use a xul app and I am also not familiar with xul. So
&lt;br&gt;&amp;gt;&amp;gt; far, all I need is a webbrowser window in which I could click and say
&lt;br&gt;&amp;gt;&amp;gt; 'Inspect DOM, debug
&lt;br&gt;&amp;gt;&amp;gt; javascript....&amp;quot;, something like this.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; Thanks a lot
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; Chris
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Hi Chris,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Both Venkman and DOMI are XUL applications. Using either will require
&lt;br&gt;&amp;gt; some sort of XUL support. I myself am not familiar with embedding, so
&lt;br&gt;&amp;gt; can't give you much advice there... How are you embedding Mozilla in
&lt;br&gt;&amp;gt; your C++ app? And what platforms are you running this on?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ~ Gijs
&lt;/div&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24809828&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/embedding-with-debugging-support-tp24807578p24809828.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24808729</id>
	<title>Re: embedding with debugging support</title>
	<published>2009-08-04T06:26:53Z</published>
	<updated>2009-08-04T06:26:53Z</updated>
	<author>
		<name>Gijs Kruitbosch (&quot;Hannibal&quot;)</name>
	</author>
	<content type="html">Cristian Tarsoaga wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; My name is Chris and I would like to embed Mozilla into a C++ app.
&lt;br&gt;&amp;gt; I have managed to do this, but I need to have some debugging support (for html, javascript).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The only way I know of, is to try to embed some extensions like venkman/dom inspector.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The documentation I found for this seems old/confusing. I was not able to embed these after reading this link:
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://developer.mozilla.org/en/XULRunner_tips&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://developer.mozilla.org/en/XULRunner_tips&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Is there any other information available?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Note: I do not use a xul app and I am also not familiar with xul. So far, all I need is a webbrowser window in which I could click and say 'Inspect DOM, debug
&lt;br&gt;&amp;gt; javascript....&amp;quot;, something like this.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; Thanks a lot
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; Chris
&lt;/div&gt;&lt;br&gt;Hi Chris,
&lt;br&gt;&lt;br&gt;Both Venkman and DOMI are XUL applications. Using either will require some sort 
&lt;br&gt;of XUL support. I myself am not familiar with embedding, so can't give you much 
&lt;br&gt;advice there... How are you embedding Mozilla in your C++ app? And what 
&lt;br&gt;platforms are you running this on?
&lt;br&gt;&lt;br&gt;~ Gijs
&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24808729&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/embedding-with-debugging-support-tp24807578p24808729.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24807578</id>
	<title>embedding with debugging support</title>
	<published>2009-08-04T05:34:21Z</published>
	<updated>2009-08-04T05:34:21Z</updated>
	<author>
		<name>Cristian Tarsoaga-2</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;My name is Chris and I would like to embed Mozilla into a C++ app.
&lt;br&gt;I have managed to do this, but I need to have some debugging support (for html, javascript).
&lt;br&gt;&lt;br&gt;The only way I know of, is to try to embed some extensions like venkman/dom inspector.
&lt;br&gt;&lt;br&gt;The documentation I found for this seems old/confusing. I was not able to embed these after reading this link:
&lt;br&gt;&lt;a href=&quot;https://developer.mozilla.org/en/XULRunner_tips&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://developer.mozilla.org/en/XULRunner_tips&lt;/a&gt;&lt;br&gt;&lt;br&gt;Is there any other information available?
&lt;br&gt;&lt;br&gt;Note: I do not use a xul app and I am also not familiar with xul. So far, all I need is a webbrowser window in which I could click and say 'Inspect DOM, debug
&lt;br&gt;javascript....&amp;quot;, something like this.
&lt;br&gt;&lt;br&gt;&amp;nbsp; Thanks a lot
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Chris
&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24807578&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/embedding-with-debugging-support-tp24807578p24807578.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24761393</id>
	<title>Re: FF 3.5 and JS_GC Crashes</title>
	<published>2009-07-31T11:46:32Z</published>
	<updated>2009-07-31T11:46:32Z</updated>
	<author>
		<name>Glenn Boysko</name>
	</author>
	<content type="html">For anyone interested, I was able to resolve the crashing problems
&lt;br&gt;that we were seeing in our extension. We are using the
&lt;br&gt;jsdIDebuggerService interface (and, in particular, objects exposed
&lt;br&gt;from this interface that extend nsIEphemeral). We had not been
&lt;br&gt;checking the isValid property before accessing methods of the object
&lt;br&gt;(e.g., jsdIScript.callCount).
&lt;br&gt;&lt;br&gt;After adding these checks, we are now running without crashing.
&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24761393&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/FF-3.5-and-JS_GC-Crashes-tp24627008p24761393.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24699936</id>
	<title>Re: FF 3.5 and JS_GC Crashes</title>
	<published>2009-07-28T06:49:50Z</published>
	<updated>2009-07-28T06:49:50Z</updated>
	<author>
		<name>Glenn Boysko</name>
	</author>
	<content type="html">Thanks for all of your replies. Let me try a different question: what
&lt;br&gt;is the most common way to get crashes due to JS_GC? What are the most
&lt;br&gt;common pitfalls among new extension developers as they relate to
&lt;br&gt;JavaScript GC problems?
&lt;br&gt;&lt;br&gt;You had mentioned that multiple threads can cause problems--how do you
&lt;br&gt;spawn new threads in a Firefox extension?
&lt;br&gt;&lt;br&gt;We also have an observer service running in this extension (routing
&lt;br&gt;messages). Are those all being raised on the main thread?
&lt;br&gt;&lt;br&gt;Thanks for any help you can provide as it relates to highlighting the
&lt;br&gt;causes of JS_GC.
&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24699936&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/FF-3.5-and-JS_GC-Crashes-tp24627008p24699936.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24689702</id>
	<title>Re: FF 3.5 and JS_GC Crashes</title>
	<published>2009-07-27T15:53:17Z</published>
	<updated>2009-07-27T15:53:17Z</updated>
	<author>
		<name>Blake Kaplan</name>
	</author>
	<content type="html">In mozilla.dev.platform Glenn Boysko &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24689702&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gboysko@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; I see. I haven't used a debug build before. Do you archive a debug
&lt;br&gt;&amp;gt; build of the 3.5 GA release? If so, let me know where it is located
&lt;br&gt;&amp;gt; and the &amp;quot;debugging tricks&amp;quot; and I'll try to track down these crashes.
&lt;br&gt;&lt;br&gt;Unfortunately not. You'd have to build your own. The problem with GC crashes
&lt;br&gt;is that very often the code that caused the bug happened a *long* time ago,
&lt;br&gt;and we only notice (and crash) at a much later date.
&lt;br&gt;-- 
&lt;br&gt;Blake Kaplan
&lt;br&gt;_______________________________________________
&lt;br&gt;dev-apps-js-debugger mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24689702&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-apps-js-debugger@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.mozilla.org/listinfo/dev-apps-js-debugger&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/FF-3.5-and-JS_GC-Crashes-tp24627008p24689702.html" />
</entry>

</feed>
