From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from resqmta-ch2-03v.sys.comcast.net (resqmta-ch2-03v.sys.comcast.net [IPv6:2001:558:fe21:29:69:252:207:35]) by hurricane.the-brannons.com (Postfix) with ESMTPS id 6641D78E83 for ; Mon, 12 Jan 2015 06:50:45 -0800 (PST) Received: from resomta-ch2-09v.sys.comcast.net ([69.252.207.105]) by resqmta-ch2-03v.sys.comcast.net with comcast id f2o01p0052GyhjZ012o9aX; Mon, 12 Jan 2015 14:48:09 +0000 Received: from eklhad ([IPv6:2601:4:5380:4ee:219:21ff:feb9:ba8d]) by resomta-ch2-09v.sys.comcast.net with comcast id f2o91p00908MP57012o9kT; Mon, 12 Jan 2015 14:48:09 +0000 To: Edbrowse-dev@lists.the-brannons.com From: Karl Dahlke Reply-to: Karl Dahlke User-Agent: edbrowse/3.5.2 Date: Mon, 12 Jan 2015 09:48:09 -0500 Message-ID: <20150012094809.eklhad@comcast.net> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20140121; t=1421074089; bh=KkEOra3MdSlD0SaRe/D4vi/2LYD7gIXz/tG/LHCISgg=; h=Received:Received:To:From:Reply-to:Subject:Date:Message-ID: Mime-Version:Content-Type; b=Nlp/NDlXXDXLLrpLZZl7X96dUrAtUP0SjTk0w0d4sHy/ucS8CzwRFG8bj4pvXzWt8 NJIsUWeCWSNFXR4MS6a3j6tZcRzKOdQNkVEoNmQUbeudXM0Vx2HKAToZfFpIgD6b0K pCsec+lON/7cXsCMoboRBciYaRLUG/BBDeSq3u/ejuoMKoHs2g+hVgyV0jqtmhrDhC Z5kfUXZTRoAjB+cpPx74p7iR3rE796Ltogei26EZNIpMHeOEwjQ6GWIwORno5O36n9 Ykfr5PFFstcX1siFrA9Eu/bDZLZMKOV1o3i1hEkdBKW7FtJri7F6YqTbWA3tgk+piX 3HwP6WjGEV8fw== Subject: [Edbrowse-dev] mouse.com X-BeenThere: edbrowse-dev@lists.the-brannons.com X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Edbrowse Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jan 2015 14:50:45 -0000 I stumbled upon mouse.com, which redirects to http://ww1.mouse.com This is js that I can read, it hasn't been crapped on, so I'm trying to figure out what I am doing wrong. Look at lines 47 and 48. It creates a new script object through document.createElement(), and I do that, I think edbrowse is ok so far, but, when I create that object I also link it into the scripts array automatically, but maybe I'm not suppose to do that because the next line, line 48, looks like it might be trying to link it into the array of scripts. Maybe I should remove that action from startwindow.js. Then it uses things like parentNode and insertBefore, that I don't have implemented yet. So this may be a good test case. If I can figure out what it is trying to do, and how it is suppose to work, then I can move edbrowse in that direction. At this point you might be saying, "You can't do that incrementally, you have to start over and design the DOM correctly from scratch." Well that may be true, but that's going to be a while, and I just wonder if there's something I can do here and now to get this to behave as it should. Adam I may need your help here on how it is suppose to work, what I might be able to do as an increment, and what will have to wait for a larger redesign. I did, by the way, implement some parentNodes, but only in the html, it is not clear what parentNode should point to when the object is created by createElement(). Karl Dahlke