CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Tue, 05 Aug 2025 06:47:26 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090422163616
location: https://web.archive.org/web/20090422163616/https://forums.oreilly.com/user/17495/tabsmann/
server-timing: captures_list;dur=0.565026, exclusion.robots;dur=0.020448, exclusion.robots.policy;dur=0.011226, esindex;dur=0.010986, cdx.remote;dur=49.687449, LoadShardBlock;dur=4684.739182, PetaboxLoader3.datanode;dur=56.407539, PetaboxLoader3.resolve;dur=4580.583813
x-app-server: wwwb-app222
x-ts: 302
x-tr: 4759
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app222; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Tue, 05 Aug 2025 06:47:26 GMT
content-type: text/html;charset=utf-8
x-archive-orig-date: Wed, 22 Apr 2009 16:36:17 GMT
x-archive-orig-server: Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8b mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.2.8
x-archive-orig-x-powered-by: PHP/5.2.8
x-archive-orig-cache-control: no-cache, must-revalidate, max-age=0
x-archive-orig-expires: 0
x-archive-orig-pragma: no-cache
x-archive-orig-connection: close
x-archive-orig-transfer-encoding: chunked
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Wed, 22 Apr 2009 16:36:16 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Wed, 22 Apr 2009 16:36:16 GMT", ; rel="memento"; datetime="Wed, 22 Apr 2009 16:36:16 GMT", ; rel="next memento"; datetime="Fri, 12 Feb 2010 11:30:19 GMT", ; rel="last memento"; datetime="Fri, 12 Feb 2010 11:30:19 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_9_20090422134317_crawl100-c/52_9_20090422163514_crawl100.arc.gz
server-timing: captures_list;dur=0.655763, exclusion.robots;dur=0.026140, exclusion.robots.policy;dur=0.011647, esindex;dur=0.014162, cdx.remote;dur=41.399965, LoadShardBlock;dur=50.684968, PetaboxLoader3.datanode;dur=99.666173, load_resource;dur=236.108318, PetaboxLoader3.resolve;dur=106.074408
x-app-server: wwwb-app222
x-ts: 200
x-tr: 404
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
tabsmann - Viewing Profile
O'Reilly Forums > Viewing Profile

Profile
Personal Photo
Rating
Options
Options
Personal Statement
tabsmann doesn't have a personal statement currently.
Personal Info
tabsmann
New Member
Age Unknown years old
![]()
Location Unknown
Birthday Unknown
Interests
No Information
Statistics
Joined: 7-April 09
Profile Views: 56*
Last Seen: 14th April 2009 - 12:24 PM
2 posts (0 per day)
Contact Information
![]() ![]() ![]() ![]() * Profile views updated each hour
![]() |
Topics
Posts
Gallery
Comments
Friends
My Content
14 Apr 2009
Infact, of my 15 years in software deveppment, i deeply feel dispointed for the very first time in my carrer as i struggle in vain with your book. Just from chapter, the code from your so-called lab is not working.
Even after posting my problem twice, in this forum, if forum members cannot resolve it, i rightly think it is your responsibility. Suprisely your guys have remain mute. Do i say all this books and too much head first stuff is just a commercial strategy to make cheap money? Once more, here is my problem in it's clearest and simplest form. Note that i bought upto five head first books recently and if this problem, is not resolve by you guys, it is very likely that i engage legal pursuit against Head First. Here goes my problem. After struggling over chapter 1 to let it work without sucess, i moved on to chapter 2. Yet it didn't work too. I found out that the following code which appears both in chapter 1(in the thumbnail.js) and in chapter 2 in the util.js can not be resolve.(I am run this in Eclipse) function createRequest() { try { request = new XMLHttpRequest(); } catch (tryMS) { try { request = new ActiveXObject("Msxml2.XMLHTTP"); } catch (otherMS) { try { request = new ActiveXObject("Microsoft.XMLHTTP"); } catch (failed) { request = null; } } } return request; } I then downloaded the final version of these chapters from your web site(the lab), imported it into Eclipse to run as a dynamic web projet with all the fills placed under the WebContext directory. Yet, the same problem persist. How do i go about this? The only easy place is to back to the source. That it to you the authors throught this forum. After two successive messages on this problem , no comment from you guys. And Here is the third. I need the response within a time interval of 10 day maximum. Failure which i am not going to let thing go for free !!! I downloaded chapter 1 and 2 from your web site (the lab),
7 Apr 2009
Greetings to all. Please if there is anybody online, kindly look into this code and enable to fix it. It concerns the thumbnails.js of chapter 1.
I just copy it and tried testing. This concerns the function createRequest(), the XMLHttpRequest(); and ActiveXObject can not be resolved. Here is it window.onload = initPage; function initPage() { // find the thumbnails on the page thumbs = document.getElementById("thumbnailPane").getElementsByTagName("img"); // set the handler for each image for (var i = 0; i < thumbs.length; i++) { image = thumbs[i]; // create the onclick function image.onclick = function() { // find the image name detailURL = 'images/' + this.title + '-detail.jpg'; document.getElementById("itemDetail").src = detailURL; getDetails(this.title); } } } function createRequest() { try { request = new XMLHttpRequest(); } catch (tryMS) { try { request = new ActiveXObject("Msxml2.XMLHTTP"); } catch (otherMS) { try { request = new ActiveXObject("Microsoft.XMLHTTP"); } catch (failed) { request = null; } } } return request; } function getDetails(itemName) { request = createRequest(); if (request == null) { alert("Unable to create request"); return; } var url= "getDetails.php?ImageID=" + escape(itemName); request.open("GET", url, true); request.onreadystatechange = displayDetails; request.send(null); } function displayDetails() { if (request.readyState == 4) { if (request.status == 200) { detailDiv = document.getElementById("description"); detailDiv.innerHTML = request.responseText; } } } |
Last Visitors
tabsmann has no visitors to display.
Comments
Other users have left no comments for tabsmann.
Friends
There are no friends to display.
![]() |
![]() |
Lo-Fi Version | Time is now: 22nd April 2009 - 08:36 AM |