har 0.0.1.dev
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/.rspec +1 -0
- data/Gemfile +4 -0
- data/LICENSE +24 -0
- data/README.mdown +36 -0
- data/Rakefile +28 -0
- data/bin/har +4 -0
- data/har.gemspec +27 -0
- data/lib/har.rb +32 -0
- data/lib/har/archive.rb +135 -0
- data/lib/har/page.rb +19 -0
- data/lib/har/schema_type.rb +78 -0
- data/lib/har/schemas/browserType +19 -0
- data/lib/har/schemas/cacheEntryType +25 -0
- data/lib/har/schemas/cacheType +15 -0
- data/lib/har/schemas/contentType +26 -0
- data/lib/har/schemas/cookieType +32 -0
- data/lib/har/schemas/creatorType +18 -0
- data/lib/har/schemas/entryType +46 -0
- data/lib/har/schemas/logType +40 -0
- data/lib/har/schemas/pageTimingsType +17 -0
- data/lib/har/schemas/pageType +29 -0
- data/lib/har/schemas/postDataType +38 -0
- data/lib/har/schemas/recordType +17 -0
- data/lib/har/schemas/requestType +53 -0
- data/lib/har/schemas/responseType +51 -0
- data/lib/har/schemas/timingsType +43 -0
- data/lib/har/serializable.rb +22 -0
- data/lib/har/version.rb +3 -0
- data/lib/har/viewer.rb +99 -0
- data/lib/har/viewer/css/SyntaxHighlighter.css +1 -0
- data/lib/har/viewer/css/aboutTab.css +1 -0
- data/lib/har/viewer/css/domTab.css +1 -0
- data/lib/har/viewer/css/domTree.css +1 -0
- data/lib/har/viewer/css/harPreview.css +1 -0
- data/lib/har/viewer/css/harView.css +1 -0
- data/lib/har/viewer/css/harViewer.css +1 -0
- data/lib/har/viewer/css/homeTab.css +1 -0
- data/lib/har/viewer/css/images/ajax-loader.gif +0 -0
- data/lib/har/viewer/css/images/bg-button.gif +0 -0
- data/lib/har/viewer/css/images/blank.gif +0 -0
- data/lib/har/viewer/css/images/button-background.png +0 -0
- data/lib/har/viewer/css/images/checkmark.gif +0 -0
- data/lib/har/viewer/css/images/checkmark.png +0 -0
- data/lib/har/viewer/css/images/close-sprites.png +0 -0
- data/lib/har/viewer/css/images/contextMenuTarget.png +0 -0
- data/lib/har/viewer/css/images/contextMenuTargetHover.png +0 -0
- data/lib/har/viewer/css/images/download-sprites.png +0 -0
- data/lib/har/viewer/css/images/downloadButtons-aero.png +0 -0
- data/lib/har/viewer/css/images/group.gif +0 -0
- data/lib/har/viewer/css/images/loading_16.gif +0 -0
- data/lib/har/viewer/css/images/menu/Thumbs.db +0 -0
- data/lib/har/viewer/css/images/menu/shadowAlpha.png +0 -0
- data/lib/har/viewer/css/images/menu/tabMenuCheckbox.png +0 -0
- data/lib/har/viewer/css/images/menu/tabMenuPin.png +0 -0
- data/lib/har/viewer/css/images/menu/tabMenuRadio.png +0 -0
- data/lib/har/viewer/css/images/netBarBlocking.gif +0 -0
- data/lib/har/viewer/css/images/netBarBlocking2.gif +0 -0
- data/lib/har/viewer/css/images/netBarCached.gif +0 -0
- data/lib/har/viewer/css/images/netBarConnecting.gif +0 -0
- data/lib/har/viewer/css/images/netBarLoaded.gif +0 -0
- data/lib/har/viewer/css/images/netBarReceiving.gif +0 -0
- data/lib/har/viewer/css/images/netBarResolving.gif +0 -0
- data/lib/har/viewer/css/images/netBarResponded.gif +0 -0
- data/lib/har/viewer/css/images/netBarSending.gif +0 -0
- data/lib/har/viewer/css/images/netBarWaiting.gif +0 -0
- data/lib/har/viewer/css/images/page-timeline.png +0 -0
- data/lib/har/viewer/css/images/save.png +0 -0
- data/lib/har/viewer/css/images/spriteArrows.gif +0 -0
- data/lib/har/viewer/css/images/spriteArrows.png +0 -0
- data/lib/har/viewer/css/images/tabEnabled.png +0 -0
- data/lib/har/viewer/css/images/timeline-sprites.png +0 -0
- data/lib/har/viewer/css/images/tooltipConnectorUp.png +0 -0
- data/lib/har/viewer/css/images/twisty-sprites.png +0 -0
- data/lib/har/viewer/css/images/twistyClosed.png +0 -0
- data/lib/har/viewer/css/images/twistyOpen.png +0 -0
- data/lib/har/viewer/css/infoTip.css +1 -0
- data/lib/har/viewer/css/pageList.css +1 -0
- data/lib/har/viewer/css/pageStats.css +1 -0
- data/lib/har/viewer/css/pageTimeline.css +1 -0
- data/lib/har/viewer/css/popupMenu.css +1 -0
- data/lib/har/viewer/css/previewTab.css +1 -0
- data/lib/har/viewer/css/requestBody.css +1 -0
- data/lib/har/viewer/css/requestList.css +1 -0
- data/lib/har/viewer/css/schemaTab.css +1 -0
- data/lib/har/viewer/css/tabView.css +1 -0
- data/lib/har/viewer/css/toolTip.css +1 -0
- data/lib/har/viewer/css/toolbar.css +1 -0
- data/lib/har/viewer/css/xhrSpy.css +1 -0
- data/lib/har/viewer/index.html +13 -0
- data/lib/har/viewer/scripts/app.build.js +0 -0
- data/lib/har/viewer/scripts/core/cookies.js +2 -0
- data/lib/har/viewer/scripts/core/lib.js +23 -0
- data/lib/har/viewer/scripts/core/trace.js +26 -0
- data/lib/har/viewer/scripts/domplate/domTree.js +5 -0
- data/lib/har/viewer/scripts/domplate/domplate.js +263 -0
- data/lib/har/viewer/scripts/domplate/infoTip.js +4 -0
- data/lib/har/viewer/scripts/domplate/popupMenu.js +14 -0
- data/lib/har/viewer/scripts/domplate/tabView.js +6 -0
- data/lib/har/viewer/scripts/domplate/toolTip.js +3 -0
- data/lib/har/viewer/scripts/domplate/toolbar.js +3 -0
- data/lib/har/viewer/scripts/downloadify/LICENSE.txt +22 -0
- data/lib/har/viewer/scripts/downloadify/README.textile +89 -0
- data/lib/har/viewer/scripts/downloadify/js/downloadify.min.js +6 -0
- data/lib/har/viewer/scripts/downloadify/js/swfobject.js +18 -0
- data/lib/har/viewer/scripts/downloadify/media/downloadify.swf +0 -0
- data/lib/har/viewer/scripts/downloadify/src/Downloadify.as +162 -0
- data/lib/har/viewer/scripts/downloadify/src/downloadify.js +6 -0
- data/lib/har/viewer/scripts/excanvas/excanvas.js +21 -0
- data/lib/har/viewer/scripts/harPreview.js +149 -0
- data/lib/har/viewer/scripts/harViewer.js +244 -0
- data/lib/har/viewer/scripts/jquery-plugins/jquery.json.js +6 -0
- data/lib/har/viewer/scripts/nls/harViewer.js +1 -0
- data/lib/har/viewer/scripts/nls/homeTab.js +1 -0
- data/lib/har/viewer/scripts/nls/pageStats.js +2 -0
- data/lib/har/viewer/scripts/nls/pageTimeline.js +1 -0
- data/lib/har/viewer/scripts/nls/previewTab.js +1 -0
- data/lib/har/viewer/scripts/nls/requestBody.js +1 -0
- data/lib/har/viewer/scripts/nls/requestList.js +2 -0
- data/lib/har/viewer/scripts/preview/harModel.js +7 -0
- data/lib/har/viewer/scripts/preview/harSchema.js +308 -0
- data/lib/har/viewer/scripts/preview/jsonSchema.js +7 -0
- data/lib/har/viewer/scripts/preview/pageList.js +4 -0
- data/lib/har/viewer/scripts/preview/ref.js +5 -0
- data/lib/har/viewer/scripts/preview/requestBody.js +11 -0
- data/lib/har/viewer/scripts/preview/requestList.js +27 -0
- data/lib/har/viewer/scripts/requireplugins-jquery-1.4.2.js +204 -0
- data/lib/har/viewer/scripts/syntax-highlighter/README.txt +9 -0
- data/lib/har/viewer/scripts/syntax-highlighter/shCore.js +20 -0
- data/lib/har/viewer/scripts/tabs/aboutTab.html +93 -0
- data/lib/har/viewer/scripts/tabs/aboutTab.js +2 -0
- data/lib/har/viewer/scripts/tabs/domTab.js +1 -0
- data/lib/har/viewer/scripts/tabs/homeTab.html +34 -0
- data/lib/har/viewer/scripts/tabs/homeTab.js +5 -0
- data/lib/har/viewer/scripts/tabs/pageStats.js +14 -0
- data/lib/har/viewer/scripts/tabs/pageTimeline.js +10 -0
- data/lib/har/viewer/scripts/tabs/previewTab.js +6 -0
- data/lib/har/viewer/scripts/tabs/schemaTab.js +2 -0
- data/lib/har/viewer/scripts/xhr-spy/spy.js +2 -0
- data/lib/har/viewer/scripts/xhr-spy/spy.php +13 -0
- data/lib/har/viewer/scripts/xhr-spy/xhr.js +6 -0
- data/lib/har/viewer/scripts/xhr-spy/xhrSpyBookmarklet.js +1 -0
- data/schema.json +201 -0
- data/spec/fixtures/entry1.json +124 -0
- data/spec/fixtures/hars/bad.har +2563 -0
- data/spec/fixtures/hars/browser-blocking-time.har +2567 -0
- data/spec/fixtures/hars/google.com.har +612 -0
- data/spec/fixtures/hars/inline-scripts-block.har +1066 -0
- data/spec/fixtures/hars/softwareishard.com.har +5323 -0
- data/spec/har/archive_spec.rb +130 -0
- data/spec/har/entry_spec.rb +16 -0
- data/spec/har/page_spec.rb +24 -0
- data/spec/har/viewer_spec.rb +17 -0
- data/spec/spec_helper.rb +34 -0
- metadata +283 -0
@@ -0,0 +1,10 @@
|
|
1
|
+
require.def("tabs/pageTimeline",["domplate/domplate","core/lib","core/trace","i18n!nls/pageTimeline","preview/harModel"],function(i,c,k,f,j){with(i){var g=function(){this.listeners=[];this.element=null;this.maxElapsedTime=-1;this.lastSelectedBar=null};g.prototype=domplate({graphCols:FOR("page","$input|getPages",TD({"class":"pageTimelineCol"},DIV({"class":"pageBar",_input:"$input",_page:"$page",title:f.pageBarTooltip,style:"height: $page|getHeight\\px",onmousemove:"$onMouseMove",onclick:"$onClick"}))),
|
2
|
+
pageGraph:TABLE({"class":"pageTimelineTable",cellpadding:0,cellspacing:0},TBODY(TR({"class":"pageTimelineRow"},TAG("$graphCols",{input:"$input"})))),tag:DIV({"class":"pageTimelineBody",style:"height: auto; display: none"},TABLE({style:"margin: 7px;",cellpadding:0,cellspacing:0},TBODY(TR(TD(TAG("$pageGraph",{input:"$input"}))),TR(TD({"class":"pageDescContainer",colspan:2}))))),getHeight:function(a){var b=1;a=a.pageTimings.onLoad;if(a>0&&this.maxElapsedTime>0)b=Math.round(a/this.maxElapsedTime*100);
|
3
|
+
return Math.max(1,b)},onClick:function(a){var b=$.event.fix(a||window.event);a=b.target;if(c.hasClass(a,"pageBar")){var d=c.isControlClick(b);b=c.isShiftClick(b);var e=c.getAncestorByClass(a,"pageTimelineRow");!d&&!b&&h.unselectAll(e,a);h.toggle(a);this.selectionChanged()}},onMouseMove:function(a){a=$.event.fix(a||window.event).target;if(c.hasClass(a,"pageBar"))if(this.highlightedPage!=a.page){this.highlightedPage=a.page;var b=c.getElementByClass(this.element,"pageDescContainer");g.Desc.render(b,
|
4
|
+
a)}},getPages:function(a){return a.log.pages?a.log.pages:[]},getPageBar:function(a){if(this.element)for(var b=c.getElementByClass(this.element,"pageTimelineTable").firstChild.firstChild.firstChild;b;){if(b.firstChild.page==a)return b.firstChild;b=b.nextSibling}},recalcLayout:function(){for(var a=this.maxElapsedTime=0,b=c.getElementsByClass(this.element,"pageBar"),d=0;d<b.length;d++){var e=b[d].page.pageTimings.onLoad;if(e>0&&this.maxElapsedTime<e)this.maxElapsedTime=e}if(a!=this.maxElapsedTime)for(d=
|
5
|
+
0;d<b.length;d++)b[d].style.height=this.getHeight(b[d].page)+"px"},updateDesc:function(){if(this.isVisible())if(!this.highlightedPage){var a=c.getElementByClass(this.element,"pageBar");a&&c.fireEvent(a,"mousemove")}},addListener:function(a){this.listeners.push(a)},removeListener:function(a){remove(this.listeners,a)},selectionChanged:function(){var a=this.getSelection();c.dispatch(this.listeners,"onSelectionChange",[a])},removeSelection:function(){if(this.element){var a=c.getElementByClass(this.element,
|
6
|
+
"pageTimelineRow");h.unselectAll(a);this.selectionChanged()}},getSelection:function(){if(!this.isVisible())return[];var a=c.getElementByClass(this.element,"pageTimelineRow");return h.getSelection(a)},show:function(a){if(!this.isVisible()){if(!a||$.browser.msie)this.element.style.display="block";else $(this.element).slideDown();c.setClass(this.element,"opened");this.updateDesc()}},hide:function(a){if(this.isVisible()){if(!a||$.browser.msie)this.element.style.display="none";else $(this.element).slideUp();
|
7
|
+
c.removeClass(this.element,"opened");this.removeSelection()}},isVisible:function(){return c.hasClass(this.element,"opened")},toggle:function(a){this.isVisible()?this.hide(a):this.show(a)},render:function(a){this.element=this.tag.replace({input:{log:{pages:[]}}},a,this);this.recalcLayout();return this.element},append:function(a){if(this.element){var b=c.getElementByClass(this.element,"pageTimelineRow");this.graphCols.insertCols({input:a},b,this);this.recalcLayout();this.updateDesc()}}});g.Desc=domplate({tag:DIV({"class":"pageDescBox"},
|
8
|
+
DIV({"class":"connector"}),DIV({"class":"desc"},SPAN({"class":"summary"},"$object|getSummary"),SPAN({"class":"time"},"$object.page|getTime"),SPAN({"class":"title"},"$object.page|getTitle"),PRE({"class":"comment"},"$object.page|getComment"))),getSummary:function(a){var b="",d=a.page.pageTimings.onLoad;if(d>0)b+=f.pageLoad+": "+c.formatTime(d)+", ";a=j.getPageEntries(a.input,a.page).length;b+=a+" "+(a==1?f.request:f.requests);return b},getTime:function(a){a=c.parseISO8601(a.startedDateTime);return(new Date(a)).toLocaleString()},
|
9
|
+
getTitle:function(a){return a.title},getComment:function(a){return a.comment?a.comment:""},render:function(a,b){a=this.tag.replace({object:{input:b.input,page:b.page}},a);c.$(a,"connector").style.marginLeft=b.parentNode.offsetLeft+"px";return a}});var h={isSelected:function(a){return c.hasClass(a,"selected")},toggle:function(a){c.toggleClass(a,"selected")},select:function(a){this.isSelected(a)||c.setClass(a,"selected")},unselect:function(a){this.isSelected(a)&&c.removeClass(a,"selected")},getSelection:function(a){var b=
|
10
|
+
[];a=c.getElementsByClass(a,"pageBar");for(var d=0;d<a.length;d++){var e=a[d];this.isSelected(e)&&b.push(e.page)}return b},unselectAll:function(a,b){a=c.getElementsByClass(a,"pageBar");for(var d=0;d<a.length;d++)b!=a[d]&&this.unselect(a[d])}};return g}});
|
@@ -0,0 +1,6 @@
|
|
1
|
+
require.def("tabs/previewTab",["domplate/domplate","domplate/tabView","core/lib","i18n!nls/previewTab","domplate/toolbar","tabs/pageTimeline","tabs/pageStats","preview/pageList","core/cookies","downloadify/js/swfobject","downloadify/src/downloadify"],function(e,h,d,c,i,j,k,l,f){with(e){e=function(a){this.model=a;this.toolbar=new i;this.timeline=new j;this.stats=new k(a,this.timeline);a=this.getToolbarButtons();for(var b=0;b<a.length;b++)this.toolbar.addButton(a[b])};e.prototype=d.extend(h.Tab.prototype,
|
2
|
+
{id:"Preview",label:c.previewTabLabel,tabBodyTag:DIV({"class":"tab$tab.id\\Body tabBody",_repObject:"$tab"},DIV({"class":"previewToolbar"}),DIV({"class":"previewTimeline"}),DIV({"class":"previewStats"}),DIV({"class":"previewList"})),errorTable:TABLE({"class":"errorTable",cellpadding:0,cellspacing:5},TBODY(FOR("error","$errors",TR({"class":"errorRow",_repObject:"$error"},TD({"class":"errorProperty"},SPAN("$error.property")),TD(" "),TD({"class":"errorMessage"},SPAN("$error.message")))))),onUpdateBody:function(a,
|
3
|
+
b){this.toolbar.render(d.$(b,"previewToolbar"));this.stats.render(d.$(b,"previewStats"));this.timeline.render(d.$(b,"previewTimeline"));(a=this.model.input)&&f.getCookie("timeline")=="true"&&this.onTimeline(false);a&&f.getCookie("stats")=="true"&&this.onStats(false);var g=this.model;$(".harDownloadButton").downloadify({filename:function(){return"netData.har"},data:function(){return g?g.toJSON():""},onComplete:function(){},onCancel:function(){},onError:function(){alert(c.downloadError)},swf:"scripts/downloadify/media/downloadify.swf",
|
4
|
+
downloadImage:"css/images/download-sprites.png",width:16,height:16,transparent:true,append:false})},getToolbarButtons:function(){var a=[{id:"showTimeline",label:c.showTimelineButton,tooltiptext:c.showTimelineTooltip,command:d.bindFixed(this.onTimeline,this,true)},{id:"showStats",label:c.showStatsButton,tooltiptext:c.showStatsTooltip,command:d.bindFixed(this.onStats,this,true)},{label:c.clearButton,tooltiptext:c.clearTooltip,command:d.bindFixed(this.onClear,this)}];$.browser.mozilla&&a.push({tooltiptext:c.downloadTooltip,
|
5
|
+
className:"harDownloadButton"});return a},onTimeline:function(a){this.timeline.toggle(a);a=this.toolbar.getButton("showTimeline");var b=this.timeline.isVisible();a.label=c[b?"hideTimelineButton":"showTimelineButton"];this.toolbar.render();f.setCookie("timeline",b)},onStats:function(a){this.stats.toggle(a);a=this.toolbar.getButton("showStats");var b=this.stats.isVisible();a.label=c[b?"hideStatsButton":"showStatsButton"];this.toolbar.render();f.setCookie("stats",b)},onClear:function(){var a=document.location.href,
|
6
|
+
b=a.indexOf("?");document.location=a.substr(0,b)},append:function(a){(new l(a)).append(d.$(this._body,"previewList"));this.timeline.append(a)},appendError:function(a){a.errors&&this.errorTable.append(a,d.$(this._body,"previewList"))}});return e}});
|
@@ -0,0 +1,2 @@
|
|
1
|
+
require.def("tabs/schemaTab",["domplate/domplate","domplate/tabView","core/lib","i18n!nls/harViewer","syntax-highlighter/shCore","core/trace"],function(a,h,i,d,e,f){with(a){a=function(){};a.prototype={id:"Schema",label:d.schemaTabLabel,bodyTag:PRE({"class":"javascript:nocontrols:",name:"code"}),onUpdateBody:function(j,g){$.ajax({url:"scripts/preview/harSchema.js",context:this,success:function(b){var c=g.firstChild;c.innerHTML=b;e.SyntaxHighlighter.HighlightAll(c)},error:function(b){f.error("SchemaTab.onUpdateBody; ERROR ",
|
2
|
+
b)}})}};return a}});
|
@@ -0,0 +1,2 @@
|
|
1
|
+
require.def("xhr-spy/spy",["preview/requestList","preview/harModel","domplate/domplate","core/lib","xhr-spy/xhr","core/trace"],function(e,h,f,c,g){with(f){var d=domplate({tag:DIV({"class":"xhrSpyFrame"},DIV({"class":"content"})),xhr:DIV({"class":"xhrSpyRow"},SPAN("$spy.url")),render:function(a){this.element=this.tag.append({},a,this);this.requestList=new e(b);this.requestList.render(this.element)},append:function(a){b.log.entries.push(a);a.pageref=b.log.pages[0].id;this.requestList.render(c.getElementByClass(this.element,
|
2
|
+
"content"),b.log.pages[0])}}),b={log:{version:"1.2",creator:{name:"XHRSpy Bookmarklet",version:"2.0"},browser:{name:"Firefox",version:"xxx"},pages:[{startedDateTime:"",id:"page1",title:"Google",pageTimings:{}}],entries:[]}};d.render(c.getBody(document));g.prototype.log=function(){return d.append(this)}}});
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
3
|
+
<head>
|
4
|
+
<title>XHR Spy @VERSION@</title>
|
5
|
+
</head>
|
6
|
+
<body class="harBody">
|
7
|
+
<div id="content" version="@VERSION@"></div>
|
8
|
+
<script src="../requireplugins-jquery-1.4.2.js"></script>
|
9
|
+
<script>require(["xhr-spy/spy"]);</script>
|
10
|
+
<link rel="stylesheet" href="../../css/xhrSpy.css" type="text/css"/>
|
11
|
+
<?php include("../../ga.php") ?>
|
12
|
+
</body>
|
13
|
+
</html>
|
@@ -0,0 +1,6 @@
|
|
1
|
+
require.def("xhr-spy/xhr",["core/lib"],function(i){function n(){this.requestHeaders=[];this.responseHeaders=[]}var t=function(a){function k(){for(var b in a)try{var c=a[b];i.isFunction(c)||(f[b]=c)}catch(e){}}function o(){for(var b in f)try{var c=f[b];a[b]||(a[b]=c)}catch(e){}}function u(){d.logRow=d.log();i.setClass(d.logRow,"loading")}function p(){d.response.status=a.status;d.response.statusText=a.statusText;(new Date).getTime();var b=a.status==200;v(a,d);setTimeout(function(){var c=a.responseText;
|
2
|
+
d.response.content.text=c;d.response.content.size=c;d.response.bodySize=c?c.length:0;i.removeClass(d.logRow,"loading");b||i.setClass(d.logRow,"error")},200);d.loaded=true;k()}function v(b,c){b=(b=b.getAllResponseHeaders())?b.split(/[\n\r]/):[];for(var e=/^(\S+):\s*(.*)/,g=0,l=b.length;g<l;g++){var j=b[g].match(e);if(j){var q=j[1];j=j[2];if(q=="Content-Type")c.response.mimeType=j;c.response.headers.push({name:[q],value:[j]})}}}function r(){f.readyState=a.readyState;if(a.readyState==4){p();a.onreadystatechange=
|
3
|
+
function(){}}f.onreadystatechange()}a=a;var d=new n,f=this;this.readyState=0;this.onreadystatechange=function(){};this.open=function(b,c,e,g,l){k();d.request.method=b;d.request.url=c;d.async=e;d.request.queryString=i.parseURLParams(c);if(!$.browser.msie&&e)a.onreadystatechange=r;typeof a.open.apply!="undefined"?a.open.apply(a,arguments):a.open(b,c,e,g,l);if($.browser.msie&&e)a.onreadystatechange=r};this.send=function(b){d.request.postData.text=b;d.timings.send=(new Date).getTime();o();try{a.send(b)}catch(c){throw c;
|
4
|
+
}finally{u();if(!d.async){f.readyState=a.readyState;p()}}};this.setRequestHeader=function(b,c){d.requestHeaders.push({name:[b],value:[c]});return a.setRequestHeader(b,c)};this.getResponseHeader=function(b){return a.getResponseHeader(b)};this.getAllResponseHeaders=function(){return a.getAllResponseHeaders()};this.abort=function(){return a.abort()};var w=a.open&&typeof a.open.apply!="undefined";for(var h in a)if(h!="onreadystatechange")try{var s=a[h];if(i.isFunction(s)){if(typeof f[h]=="undefined")this[h]=
|
5
|
+
w?function(){return a[h].apply(a,arguments)}:function(b,c,e,g,l){return a[h](b,c,e,g,l)}}else this[h]=s}catch(y){}return this},m=window.parent;if(/msie 6/i.test(navigator.appVersion))m.ActiveXObject=function(a){try{var k=new m._ActiveXObject(a);return" MSXML2.XMLHTTP.5.0 MSXML2.XMLHTTP.4.0 MSXML2.XMLHTTP.3.0 MSXML2.XMLHTTP Microsoft.XMLHTTP ".indexOf(" "+a+" ")!=-1?new t(k):k}catch(o){}};else{var x=m.XMLHttpRequest;m.XMLHttpRequest=function(){return new t(new x)}}n.prototype={async:null,href:null,
|
6
|
+
loaded:false,logRow:null,responseText:null,requestHeaders:null,responseHeaders:null,sourceLink:null,response:{headers:[],content:{text:""}},request:{url:"",method:"",bodySize:0,headers:[],postData:{}},timings:{dns:-1,connect:-1,blocked:-1,send:-1,wait:-1,receive:-1,ssl:-1,comment:-1,connect:-1},getURL:function(){return this.href},log:function(){}};return n});
|
@@ -0,0 +1 @@
|
|
1
|
+
(function(){var c=document.getElementsByTagName("head")[0],b=document.createElement,a=b("script");a.type="text/javascript";a.src="http://legoas/har/viewer/webapp/scripts/requireplugins-jquery-1.4.2.js";c.appendChild(a);a=b("script");a.type="text/javascript";a.src="ttp://legoas/har/viewer/webapp/scripts/xhrSpy.js";document.getElementsByTagName("head")[0].appendChild(a)})();
|
data/schema.json
ADDED
@@ -0,0 +1,201 @@
|
|
1
|
+
{
|
2
|
+
"logType": {
|
3
|
+
"id": "logType",
|
4
|
+
"description": "HTTP Archive structure.",
|
5
|
+
"type": "object",
|
6
|
+
"properties": {
|
7
|
+
"log": {
|
8
|
+
"type": "object",
|
9
|
+
"properties": {
|
10
|
+
"version": {"type": "string", "required": true},
|
11
|
+
"creator": {"$ref": "creatorType", "required": true},
|
12
|
+
"browser": {"$ref": "browserType", "required": true},
|
13
|
+
"pages": {"type": "array", "items": {"$ref": "pageType"}},
|
14
|
+
"entries": {"type": "array", "items": {"$ref": "entryType"}, "required": true},
|
15
|
+
"comment": {"type": "string"}
|
16
|
+
}
|
17
|
+
}
|
18
|
+
}
|
19
|
+
},
|
20
|
+
"creatorType": {
|
21
|
+
"id": "creatorType",
|
22
|
+
"description": "Name and version info of the log creator app.",
|
23
|
+
"type": "object",
|
24
|
+
"properties": {
|
25
|
+
"name": {"type": "string", "required": true},
|
26
|
+
"version": {"type": "string", "required": true},
|
27
|
+
"comment": {"type": "string"}
|
28
|
+
}
|
29
|
+
},
|
30
|
+
"browserType": {
|
31
|
+
"id": "browserType",
|
32
|
+
"description": "Name and version info of used browser.",
|
33
|
+
"type": "object",
|
34
|
+
"optional": true,
|
35
|
+
"properties": {
|
36
|
+
"name": {"type": "string", "required": true},
|
37
|
+
"version": {"type": "string", "required": true},
|
38
|
+
"comment": {"type": "string"}
|
39
|
+
}
|
40
|
+
},
|
41
|
+
"pageType": {
|
42
|
+
"id": "pageType",
|
43
|
+
"description": "Exported web page",
|
44
|
+
"optional": true,
|
45
|
+
"properties": {
|
46
|
+
"startedDateTime": {"type": "string", "format": "date-time", "pattern": "^(\\d{4})(-)?(\\d\\d)(-)?(\\d\\d)(T)?(\\d\\d)(:)?(\\d\\d)(:)?(\\d\\d)(\\.\\d+)?(Z|([+-])(\\d\\d)(:)?(\\d\\d))", "required": true},
|
47
|
+
"id": {"type": "string", "unique": true, "required": true},
|
48
|
+
"title": {"type": "string", "required": true},
|
49
|
+
"pageTimings": {"$ref": "pageTimingsType", "required": true},
|
50
|
+
"comment": {"type": "string"}
|
51
|
+
}
|
52
|
+
},
|
53
|
+
"pageTimingsType": {
|
54
|
+
"id": "pageTimingsType",
|
55
|
+
"description": "Timing info about page load",
|
56
|
+
"properties": {
|
57
|
+
"onContentLoad": {"type": "number", "min": -1},
|
58
|
+
"onLoad": {"type": "number", "min": -1},
|
59
|
+
"comment": {"type": "string"}
|
60
|
+
}
|
61
|
+
},
|
62
|
+
"entryType": {
|
63
|
+
"id": "entryType",
|
64
|
+
"description": "Request and Response related info",
|
65
|
+
"optional": true,
|
66
|
+
"properties": {
|
67
|
+
"pageref": {"type": "string"},
|
68
|
+
"startedDateTime": {"type": "string", "format": "date-time", "pattern": "^(\\d{4})(-)?(\\d\\d)(-)?(\\d\\d)(T)?(\\d\\d)(:)?(\\d\\d)(:)?(\\d\\d)(\\.\\d+)?(Z|([+-])(\\d\\d)(:)?(\\d\\d))", "required": true},
|
69
|
+
"time": {"type": "integer", "min": 0, "required": true},
|
70
|
+
"request" : {"$ref": "requestType", "required": true},
|
71
|
+
"response" : {"$ref": "responseType", "required": true},
|
72
|
+
"cache" : {"$ref": "cacheType", "required": true},
|
73
|
+
"timings" : {"$ref": "timingsType", "required": true},
|
74
|
+
"serverIPAddress" : {"type": "string"},
|
75
|
+
"connection" : {"type": "string"},
|
76
|
+
"comment": {"type": "string"}
|
77
|
+
}
|
78
|
+
},
|
79
|
+
"requestType": {
|
80
|
+
"id": "requestType",
|
81
|
+
"description": "Monitored request",
|
82
|
+
"properties": {
|
83
|
+
"method": {"type": "string", "required": true},
|
84
|
+
"url": {"type": "string", "required": true},
|
85
|
+
"httpVersion": {"type" : "string", "required": true},
|
86
|
+
"cookies" : {"type": "array", "items": {"$ref": "cookieType"}, "required": true},
|
87
|
+
"headers" : {"type": "array", "items": {"$ref": "recordType"}, "required": true},
|
88
|
+
"queryString" : {"type": "array", "items": {"$ref": "recordType"}, "required": true},
|
89
|
+
"postData" : {"$ref": "postDataType"},
|
90
|
+
"headersSize" : {"type": "integer", "required": true},
|
91
|
+
"bodySize" : {"type": "integer", "required": true},
|
92
|
+
"comment": {"type": "string"}
|
93
|
+
}
|
94
|
+
},
|
95
|
+
"recordType": {
|
96
|
+
"id": "recordType",
|
97
|
+
"description": "Helper name-value pair structure.",
|
98
|
+
"properties": {
|
99
|
+
"name": {"type": "string", "required": true},
|
100
|
+
"value": {"type": "string", "required": true},
|
101
|
+
"comment": {"type": "string"}
|
102
|
+
}
|
103
|
+
},
|
104
|
+
"responseType": {
|
105
|
+
"id": "responseType",
|
106
|
+
"description": "Monitored Response.",
|
107
|
+
"properties": {
|
108
|
+
"status": {"type": "integer", "required": true},
|
109
|
+
"statusText": {"type": "string", "required": true},
|
110
|
+
"httpVersion": {"type": "string", "required": true},
|
111
|
+
"cookies" : {"type": "array", "items": {"$ref": "cookieType"}, "required": true},
|
112
|
+
"headers" : {"type": "array", "items": {"$ref": "recordType"}, "required": true},
|
113
|
+
"content" : {"$ref": "contentType", "required": true},
|
114
|
+
"redirectURL" : {"type": "string", "required": true},
|
115
|
+
"headersSize" : {"type": "integer", "required": true},
|
116
|
+
"bodySize" : {"type": "integer", "required": true},
|
117
|
+
"comment": {"type": "string"}
|
118
|
+
}
|
119
|
+
},
|
120
|
+
"cookieType": {
|
121
|
+
"id": "cookieType",
|
122
|
+
"description": "Cookie description.",
|
123
|
+
"properties": {
|
124
|
+
"name": {"type": "string", "required": true},
|
125
|
+
"value": {"type": "string", "required": true},
|
126
|
+
"path": {"type": "string"},
|
127
|
+
"domain" : {"type": "string"},
|
128
|
+
"expires" : {"type": "string"},
|
129
|
+
"httpOnly" : {"type": "boolean"},
|
130
|
+
"secure" : {"type": "boolean"},
|
131
|
+
"comment": {"type": "string"}
|
132
|
+
}
|
133
|
+
},
|
134
|
+
"postDataType": {
|
135
|
+
"id": "postDataType",
|
136
|
+
"description": "Posted data info.",
|
137
|
+
"optional": true,
|
138
|
+
"properties": {
|
139
|
+
"mimeType": {"type": "string", "required": true},
|
140
|
+
"text": {"type": "string"},
|
141
|
+
"params": {
|
142
|
+
"type": "array",
|
143
|
+
"properties": {
|
144
|
+
"name": {"type": "string", "required": true},
|
145
|
+
"value": {"type": "string"},
|
146
|
+
"fileName": {"type": "string"},
|
147
|
+
"contentType": {"type": "string"},
|
148
|
+
"comment": {"type": "string"}
|
149
|
+
}
|
150
|
+
},
|
151
|
+
"comment": {"type": "string"}
|
152
|
+
}
|
153
|
+
},
|
154
|
+
"contentType": {
|
155
|
+
"id": "contentType",
|
156
|
+
"description": "Response content",
|
157
|
+
"properties": {
|
158
|
+
"size": {"type": "integer", "required": true},
|
159
|
+
"compression": {"type": "integer"},
|
160
|
+
"mimeType": {"type": "string", "required": true},
|
161
|
+
"text": {"type": "string"},
|
162
|
+
"encoding": {"type": "string"},
|
163
|
+
"comment": {"type": "string"}
|
164
|
+
}
|
165
|
+
},
|
166
|
+
"cacheType": {
|
167
|
+
"id": "cacheType",
|
168
|
+
"description": "Info about a response coming from the cache.",
|
169
|
+
"properties": {
|
170
|
+
"beforeRequest": {"$ref": "cacheEntryType"},
|
171
|
+
"afterRequest": {"$ref": "cacheEntryType"},
|
172
|
+
"comment": {"type": "string"}
|
173
|
+
}
|
174
|
+
},
|
175
|
+
"cacheEntryType": {
|
176
|
+
"id": "cacheEntryType",
|
177
|
+
"optional": true,
|
178
|
+
"description": "Info about cache entry.",
|
179
|
+
"properties": {
|
180
|
+
"expires": {"type": "string"},
|
181
|
+
"lastAccess": {"type": "string", "required": true},
|
182
|
+
"eTag": {"type": "string", "required": true},
|
183
|
+
"hitCount": {"type": "integer", "required": true},
|
184
|
+
"comment": {"type": "string"}
|
185
|
+
}
|
186
|
+
},
|
187
|
+
"timingsType": {
|
188
|
+
"id": "timingsType",
|
189
|
+
"description": "Info about request-response timing.",
|
190
|
+
"properties": {
|
191
|
+
"dns": {"type": "integer", "min": -1, "required": true},
|
192
|
+
"connect": {"type": "integer", "min": -1, "required": true},
|
193
|
+
"blocked": {"type": "integer", "min": -1, "required": true},
|
194
|
+
"send": {"type": "integer", "min": -1, "required": true},
|
195
|
+
"wait": {"type": "integer", "min": -1, "required": true},
|
196
|
+
"receive": {"type": "integer", "min": -1, "required": true},
|
197
|
+
"ssl": {"type": "integer", "min": -1},
|
198
|
+
"comment": {"type": "string"}
|
199
|
+
}
|
200
|
+
}
|
201
|
+
}
|
@@ -0,0 +1,124 @@
|
|
1
|
+
{
|
2
|
+
"pageref": "page_62143",
|
3
|
+
"startedDateTime": "2010-01-02T14:51:01.186+01:00",
|
4
|
+
"time": 63,
|
5
|
+
"request": {
|
6
|
+
"method": "GET",
|
7
|
+
"url": "http://www.google.cz/",
|
8
|
+
"httpVersion": "HTTP/1.1",
|
9
|
+
"cookies": [
|
10
|
+
{
|
11
|
+
"name": "PREF",
|
12
|
+
"value": "ID"
|
13
|
+
},
|
14
|
+
{
|
15
|
+
"name": "NID",
|
16
|
+
"value": "29"
|
17
|
+
}
|
18
|
+
],
|
19
|
+
"headers": [
|
20
|
+
{
|
21
|
+
"name": "Host",
|
22
|
+
"value": "www.google.cz"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"name": "User-Agent",
|
26
|
+
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2b6pre) Gecko/20091230 Namoroka/3.6b6pre (.NET CLR 3.5.30729)"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"name": "Accept",
|
30
|
+
"value": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"name": "Accept-Language",
|
34
|
+
"value": "en-us,en;q=0.5"
|
35
|
+
},
|
36
|
+
{
|
37
|
+
"name": "Accept-Encoding",
|
38
|
+
"value": "gzip,deflate"
|
39
|
+
},
|
40
|
+
{
|
41
|
+
"name": "Accept-Charset",
|
42
|
+
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"name": "Keep-Alive",
|
46
|
+
"value": "115"
|
47
|
+
},
|
48
|
+
{
|
49
|
+
"name": "Connection",
|
50
|
+
"value": "keep-alive"
|
51
|
+
},
|
52
|
+
{
|
53
|
+
"name": "Cookie",
|
54
|
+
"value": "PREF=ID=580ec4c5a3534337:U=37a8fcc41ff49f78:TM=1260796678:LM=1260796682:S=9BgbomVM6pcnfah0; NID=29=OHyg2zMZl4IpG8C4a-Z5itM3gCXOuBPogGpTPVFPNsdpmIHJWX78ymRL_gqptvhr_IQrP319GQ1fxlKUsqaIokpxasPIIDq5ijatDmYiyamnCfJz8rXyNvt5GPjCJp2I"
|
55
|
+
}
|
56
|
+
],
|
57
|
+
"queryString": [
|
58
|
+
|
59
|
+
],
|
60
|
+
"headersSize": 632,
|
61
|
+
"bodySize": -1
|
62
|
+
},
|
63
|
+
"response": {
|
64
|
+
"status": 200,
|
65
|
+
"statusText": "OK",
|
66
|
+
"httpVersion": "HTTP/1.1",
|
67
|
+
"cookies": [
|
68
|
+
|
69
|
+
],
|
70
|
+
"headers": [
|
71
|
+
{
|
72
|
+
"name": "Date",
|
73
|
+
"value": "Sat, 02 Jan 2010 13:51:06 GMT"
|
74
|
+
},
|
75
|
+
{
|
76
|
+
"name": "Expires",
|
77
|
+
"value": "-1"
|
78
|
+
},
|
79
|
+
{
|
80
|
+
"name": "Cache-Control",
|
81
|
+
"value": "private, max-age=0"
|
82
|
+
},
|
83
|
+
{
|
84
|
+
"name": "Content-Type",
|
85
|
+
"value": "text/html; charset=UTF-8"
|
86
|
+
},
|
87
|
+
{
|
88
|
+
"name": "Content-Encoding",
|
89
|
+
"value": "gzip"
|
90
|
+
},
|
91
|
+
{
|
92
|
+
"name": "Server",
|
93
|
+
"value": "gws"
|
94
|
+
},
|
95
|
+
{
|
96
|
+
"name": "Content-Length",
|
97
|
+
"value": "3694"
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"name": "X-XSS-Protection",
|
101
|
+
"value": "0"
|
102
|
+
}
|
103
|
+
],
|
104
|
+
"content": {
|
105
|
+
"size": 8564,
|
106
|
+
"mimeType": "text/html",
|
107
|
+
"text": "<!doctype html><html onmousemove=\"google&&google.fade&&google.fade()\"><head><meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\"><title>Google</title><script>window.google={kEI:\"Sk8_S5PhGNT4_AbC2-HhBQ\",kEXPI:\"17259,18167,23129\",kCSI:{e:\"17259,18167,23129\",ei:\"Sk8_S5PhGNT4_AbC2-HhBQ\"},kHL:\"cs\",time:function(){return(new Date).getTime()},log:function(b,d,c){var a=new Image,e=google,g=e.lc,f=e.li;a.onerror=(a.onload=(a.onabort=function(){delete g[f]}));g[f]=a;c=c||\"/gen_204?atyp=i&ct=\"+b+\"&cad=\"+d+\"&zx=\"+google.time();a.src=c;e.li=f+1},lc:[],li:0};\nwindow.google.sn=\"webhp\";window.google.timers={load:{t:{start:(new Date).getTime()}}};try{}catch(u){}window.google.jsrt_kill=1;\nvar _gjwl=location;function _gjuc(){var e=_gjwl.href.indexOf(\"#\");if(e>=0){var a=_gjwl.href.substring(e);if(a.indexOf(\"&q=\")>0||a.indexOf(\"#q=\")>=0){a=a.substring(1);if(a.indexOf(\"#\")==-1){for(var c=0;c<a.length;){var d=c;if(a.charAt(d)==\"&\")++d;var b=a.indexOf(\"&\",d);if(b==-1)b=a.length;var f=a.substring(d,b);if(f.indexOf(\"fp=\")==0){a=a.substring(0,c)+a.substring(b,a.length);b=c}else if(f==\"cad=h\")return 0;c=b}_gjwl.href=\"/search?\"+a+\"&cad=h\";return 1}}}return 0}function _gjp(){!(window._gjwl.hash&&\nwindow._gjuc())&&setTimeout(_gjp,500)};\nwindow._gjp && _gjp()</script><style>td{line-height:.8em;}.gac_m td{line-height:17px;}form{margin-bottom:20px;}body,td,a,p,.h{font-family:arial,sans-serif}.h{color:#36c;font-size:20px}.q{color:#00c}.ts td{padding:0}.ts{border-collapse:collapse}em{font-weight:bold;font-style:normal}.lst{font:17px arial,sans-serif;margin-bottom:.2em;vertical-align:bottom;}input{font-family:inherit}.lsb,.gac_sb{font-size:15px;height:1.85em!important;margin:.2em;}#fctr,#ghead,#pmocntr,#sbl,#tba,#tbe,.fade{opacity:0;}#fctr,#ghead,#pmocntr,#sbl,#tba,#tbe,.fade{background:#fff;}#gbar{float:left;height:22px}.gbh,.gbd{border-top:1px solid #c9d7f1;font-size:1px}.gbh{height:0;position:absolute;top:24px;width:100%}#gbs,.gbm{background:#fff;left:0;position:absolute;text-align:left;visibility:hidden;z-index:1000}.gbm{border:1px solid;border-color:#c9d7f1 #36c #36c #a2bae7;z-index:1001}#guser{padding-bottom:7px !important;text-align:right}#gbar,#guser{font-size:13px;padding-top:1px !important}.gb1,.gb3,.gb3i,.gb3f{zoom:1;margin-right:.5em}.gb2,.gb2i,.gb2f{display:block;padding:.2em .5em}a.gb1,a.gb2,a.gb3,a.gb4{color:#00c !important}.gb2,.gb2i,.gb2f,.gb3,.gb3i,.gb3f{text-decoration:none}a.gb2:hover{background:#36c;color:#fff !important}</style><noscript><style>#fctr,#ghead,#pmocntr,#sbl,#tba,#tbe,.fade{opacity:1;}</style></noscript><script>google.y={};google.x=function(e,g){google.y[e.id]=[e,g];return false};window.gbar={qs:function(){},tg:function(e){var o={id:'gbar'};for(i in e)o[i]=e[i];google.x(o,function(){gbar.tg(o)})}};</script></head><body bgcolor=#ffffff text=#000000 link=#0000cc vlink=#551a8b alink=#ff0000 onload=\"document.f.q.focus();if(document.images)new Image().src='/images/nav_logo7.png'\" topmargin=3 marginheight=3><textarea id=csi style=display:none></textarea><div id=ghead><div id=gbar><nobr><b class=gb1>Web</b> <a href=\"http://images.google.cz/imghp?hl=cs&tab=wi\" onclick=gbar.qs(this) class=gb1>Obrázky</a> <a href=\"http://video.google.cz/?hl=cs&tab=wv\" onclick=gbar.qs(this) class=gb1>Videa</a> <a href=\"http://maps.google.cz/maps?hl=cs&tab=wl\" onclick=gbar.qs(this) class=gb1>Mapy</a> <a href=\"http://news.google.cz/nwshp?hl=cs&tab=wn\" onclick=gbar.qs(this) class=gb1>Zprávy</a> <a href=\"http://translate.google.cz/?hl=cs&tab=wT\" onclick=gbar.qs(this) class=gb1>Překladač</a> <a href=\"http://mail.google.com/mail/?hl=cs&tab=wm\" class=gb1>Gmail</a> <a href=\"http://www.google.cz/intl/cs/options/\" onclick=\"this.blur();gbar.tg(event);return !1\" aria-haspopup=true class=gb3><u>další</u> <small>▼</small></a><div class=gbm id=gbi><a href=\"http://blogsearch.google.cz/?hl=cs&tab=wb\" onclick=gbar.qs(this) class=gb2>Blogy</a> <a href=\"http://www.youtube.com/?hl=cs&tab=w1&gl=CZ\" onclick=gbar.qs(this) class=gb2>YouTube</a> <a href=\"http://www.google.com/calendar/render?hl=cs&tab=wc\" class=gb2>Kalendář</a> <a href=\"http://picasaweb.google.cz/home?hl=cs&tab=wq\" onclick=gbar.qs(this) class=gb2>Fotografie</a> <a href=\"http://docs.google.com/?hl=cs&tab=wo\" class=gb2>Dokumenty</a> <a href=\"http://www.google.cz/reader/view/?hl=cs&tab=wy\" class=gb2>Reader</a> <a href=\"http://sites.google.com/?hl=cs&tab=w3\" class=gb2>Weby</a> <a href=\"http://groups.google.cz/grphp?hl=cs&tab=wg\" onclick=gbar.qs(this) class=gb2>Skupiny</a> <div class=gb2><div class=gbd></div></div><a href=\"http://www.google.cz/intl/cs/options/\" class=gb2>dále také »</a> </div></nobr></div><div id=guser width=100%><nobr><a href=\"/url?sa=p&pref=ig&pval=3&q=http://www.google.cz/ig%3Fhl%3Dcs%26source%3Diglk&usg=AFQjCNEjIy3HcIoHHp-ysNPPMy6WitPxSg\" class=gb4>iGoogle</a> | <a href=\"/preferences?hl=cs\" class=gb4>Nastavení vyhledávání</a> | <a href=\"https://www.google.com/accounts/Login?hl=cs&continue=http://www.google.cz/\" class=gb4>Přihlásit se</a></nobr></div><div class=gbh style=left:0></div><div class=gbh style=right:0></div></div> <center><br clear=all id=lgpd><div align=left style=\"background:url(/intl/en_com/images/logo_plain.png) no-repeat;height:110px;width:276px\" title=\"Google\" id=logo onload=\"window.lol&&lol()\"><div nowrap style=\"color:#666;font-size:16px;font-weight:bold;left:208px;position:relative;top:78px\">Česká republika</div></div><br><form action=\"/search\" name=f><table cellpadding=0 cellspacing=0><tr valign=top><td width=25%> </td><td align=center nowrap><input name=hl type=hidden value=cs><input name=source type=hidden value=hp><input autocomplete=\"off\" onblur=\"google&&google.fade&&google.fade()\" maxlength=2048 name=q size=55 class=lst title=\"Vyhledat Googlem\" value=\"\"><br><input name=btnG type=submit value=\"Vyhledat Googlem\" class=lsb><input name=btnI type=submit value=\"Zkusím štěstí\" class=lsb></td><td nowrap width=25% align=left id=sbl><font size=-2> <a href=/advanced_search?hl=cs>Rozšířené vyhledávání</a><br> <a href=/language_tools?hl=cs>Jazykové nástroje</a></font></td></tr><tr><td align=center colspan=3><font size=-1><span style=\"text-align:left\" class=fade><input id=all type=radio name=lr value=\"\" checked><label for=all> Prohledat Web </label> <input id=il type=radio name=lr value=\"lang_cs\"><label for=il> Stránky pouze česky </label> </span></font></td></tr></table></form><br><span id=footer><center id=fctr><br><font size=-1><a href=\"/intl/cs/ads/\">Inzerujte s Googlem</a> - <a href=\"/intl/cs/about.html\">Vše o Google</a> - <a href=\"http://www.google.com/ncr\">Google.com in English</a></font><p><font size=-2>©2010 - <a href=\"/intl/cs/privacy.html\">Osobní údaje</a></font></p></center></span> <div id=xjsd></div><div id=xjsi><script>if(google.y)google.y.first=[];if(google.y)google.y.first=[];google.dstr=[];google.rein=[];window.setTimeout(function(){var a=document.createElement(\"script\");a.src=\"/extern_js/f/CgJjcxICY3orMAo4QUAdLCswDjgKLCswFjgULCswFzgELCswGDgELCswGTgNLCswJTjJiAEsKzAmOAgsKzAnOAIsKzA8OAEsKzBFOAAs/n26cL0r9CnM.js\";(document.getElementById(\"xjsd\")||document.body).appendChild(a);if(google.timers&&google.timers.load.t)google.timers.load.t.xjsls=(new Date).getTime();},0);\n;google.y.first.push(function(){google.ac.b=true;google.ac.i(document.f,document.f.q,'','');(function(){\nvar a=window.google.f={};a.f=1;a.s=1;a.a=(new Date).getTime();function m(b,g,e,f){var d,c=[],i=[];for(var h=0,k;k=b[h++];){var l=document.getElementById(k);if(l)c.push(l)}for(var h=0,j;j=g[h++];){var o=n(j[0],j[1]);while(d=o.pop())c.push(d)}while(d=c.pop())i.push([d,\"opacity\",e,f,0,\"\"]);return i}function n(b,\ng){var e=[];for(var f=document.getElementsByTagName(b),d=0,c=f[d];c=f[d++];)if(c.className==g)e.push(c);return e}google.fade=function(b){b=b||window.event;var g=1;if(b&&b.type==\"mousemove\"){var e=b.clientX,f=b.clientY;g=a.x||a.y?Math.abs(a.x-e)+Math.abs(a.y-f):0;a.x=e;a.y=f}var d=(new Date).getTime(),c=d-a.a;if(google.fx&&g&&c>602)if(a.f){a.f=0;var i=[\"fctr\",\"ghead\",\n\"pmocntr\",\"sbl\",\"tba\",\"tbe\"],h=[[\"span\",\"fade\"],[\"div\",\"gbh\"]];google.fx.animate(602,m(i,h,0,1))}};\n})();\n});if(google.j&&google.j.en&&google.j.xi){window.setTimeout(google.j.xi,0);google.fade=null;}</script></div><script>(function(){\nfunction a(){google.timers.load.t.ol=(new Date).getTime();google.report&&google.timers.load.t.xjs&&google.report(google.timers.load,google.kCSI)}if(window.addEventListener)window.addEventListener(\"load\",a,false);else if(window.attachEvent)window.attachEvent(\"onload\",a);google.timers.load.t.prt=(new Date).getTime();\n})();\n</script>"
|
108
|
+
},
|
109
|
+
"redirectURL": "",
|
110
|
+
"headersSize": 224,
|
111
|
+
"bodySize": 3694
|
112
|
+
},
|
113
|
+
"cache": {
|
114
|
+
|
115
|
+
},
|
116
|
+
"timings": {
|
117
|
+
"dns": 0,
|
118
|
+
"connect": 0,
|
119
|
+
"blocked": 0,
|
120
|
+
"send": 0,
|
121
|
+
"wait": 63,
|
122
|
+
"receive": 0
|
123
|
+
}
|
124
|
+
}
|
@@ -0,0 +1,2563 @@
|
|
1
|
+
{
|
2
|
+
"log": {
|
3
|
+
"version": "1.1",
|
4
|
+
"browser": {
|
5
|
+
"name": "Firefox",
|
6
|
+
"version": "3.6b6pre"
|
7
|
+
},
|
8
|
+
"pages": [
|
9
|
+
{
|
10
|
+
"startedDateTime": "2010-01-02T15:39:42.040+01:00",
|
11
|
+
"id": "page_7689",
|
12
|
+
"title": "Cuzillion",
|
13
|
+
"pageTimings": {
|
14
|
+
"onContentLoad": 531,
|
15
|
+
"onLoad": 5176
|
16
|
+
},
|
17
|
+
"comment": "Default limit on number of concurrent requests was set to 6 in this case. See the 7th and 8th request (click this bar to see the list of requests), these were blocked till the first and second finished."
|
18
|
+
},
|
19
|
+
{
|
20
|
+
"startedDateTime": "2010-01-02T16:40:21.935+01:00",
|
21
|
+
"id": "page_12043",
|
22
|
+
"title": "Cuzillion",
|
23
|
+
"pageTimings": {
|
24
|
+
"onContentLoad": 530,
|
25
|
+
"onLoad": 9591
|
26
|
+
},
|
27
|
+
"comment": "The limit was set to 2 for this test case."
|
28
|
+
}
|
29
|
+
],
|
30
|
+
"entries": [
|
31
|
+
{
|
32
|
+
"pageref": "page_7689",
|
33
|
+
"startedDateTime": "2010-01-02T15:39:42.040+01:00",
|
34
|
+
"time": 440,
|
35
|
+
"request": {
|
36
|
+
"method": "GET",
|
37
|
+
"url": "http://stevesouders.com/cuzillion/?c0=bi1hfff2_0_f&c1=bi1hfff2_0_f&c2=bi1hfff2_0_f&c3=bi1hfff2_0_f&c4=bi1hfff2_0_f&c5=bi1hfff2_0_f&c6=bi1hfff2_0_f&c7=bi1hfff2_0_f&t=1258547264277",
|
38
|
+
"httpVersion": "HTTP/1.1",
|
39
|
+
"cookies": [
|
40
|
+
],
|
41
|
+
"headers": [
|
42
|
+
{
|
43
|
+
"name": "Host",
|
44
|
+
"value": "stevesouders.com"
|
45
|
+
},
|
46
|
+
{
|
47
|
+
"name": "User-Agent",
|
48
|
+
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2b6pre) Gecko/20091230 Namoroka/3.6b6pre (.NET CLR 3.5.30729)"
|
49
|
+
},
|
50
|
+
{
|
51
|
+
"name": "Accept",
|
52
|
+
"value": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"name": "Accept-Language",
|
56
|
+
"value": "en-us,en;q=0.5"
|
57
|
+
},
|
58
|
+
{
|
59
|
+
"name": "Accept-Encoding",
|
60
|
+
"value": "gzip,deflate"
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"name": "Accept-Charset",
|
64
|
+
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"name": "Keep-Alive",
|
68
|
+
"value": "115"
|
69
|
+
},
|
70
|
+
{
|
71
|
+
"name": "Connection",
|
72
|
+
"value": "keep-alive"
|
73
|
+
}
|
74
|
+
],
|
75
|
+
"queryString": [
|
76
|
+
{
|
77
|
+
"name": "c0",
|
78
|
+
"value": "bi1hfff2_0_f"
|
79
|
+
},
|
80
|
+
{
|
81
|
+
"name": "c1",
|
82
|
+
"value": "bi1hfff2_0_f"
|
83
|
+
},
|
84
|
+
{
|
85
|
+
"name": "c2",
|
86
|
+
"value": "bi1hfff2_0_f"
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"name": "c3",
|
90
|
+
"value": "bi1hfff2_0_f"
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"name": "c4",
|
94
|
+
"value": "bi1hfff2_0_f"
|
95
|
+
},
|
96
|
+
{
|
97
|
+
"name": "c5",
|
98
|
+
"value": "bi1hfff2_0_f"
|
99
|
+
},
|
100
|
+
{
|
101
|
+
"name": "c6",
|
102
|
+
"value": "bi1hfff2_0_f"
|
103
|
+
},
|
104
|
+
{
|
105
|
+
"name": "c7",
|
106
|
+
"value": "bi1hfff2_0_f"
|
107
|
+
},
|
108
|
+
{
|
109
|
+
"name": "t",
|
110
|
+
"value": "1258547264277"
|
111
|
+
}
|
112
|
+
],
|
113
|
+
"headersSize": 552,
|
114
|
+
"bodySize": -1
|
115
|
+
},
|
116
|
+
"response": {
|
117
|
+
"status": 200,
|
118
|
+
"statusText": "OK",
|
119
|
+
"httpVersion": "HTTP/1.1",
|
120
|
+
"cookies": [
|
121
|
+
],
|
122
|
+
"headers": [
|
123
|
+
{
|
124
|
+
"name": "Date",
|
125
|
+
"value": "Sat, 02 Jan 2010 14:39:47 GMT"
|
126
|
+
},
|
127
|
+
{
|
128
|
+
"name": "Server",
|
129
|
+
"value": "Apache"
|
130
|
+
},
|
131
|
+
{
|
132
|
+
"name": "X-Powered-By",
|
133
|
+
"value": "PHP/5.2.3"
|
134
|
+
},
|
135
|
+
{
|
136
|
+
"name": "Vary",
|
137
|
+
"value": "Accept-Encoding"
|
138
|
+
},
|
139
|
+
{
|
140
|
+
"name": "Content-Encoding",
|
141
|
+
"value": "gzip"
|
142
|
+
},
|
143
|
+
{
|
144
|
+
"name": "Content-Length",
|
145
|
+
"value": "2439"
|
146
|
+
},
|
147
|
+
{
|
148
|
+
"name": "Keep-Alive",
|
149
|
+
"value": "timeout=2, max=100"
|
150
|
+
},
|
151
|
+
{
|
152
|
+
"name": "Connection",
|
153
|
+
"value": "Keep-Alive"
|
154
|
+
},
|
155
|
+
{
|
156
|
+
"name": "Content-Type",
|
157
|
+
"value": "text/html"
|
158
|
+
}
|
159
|
+
],
|
160
|
+
"content": {
|
161
|
+
"size": 11576,
|
162
|
+
"mimeType": "text/html",
|
163
|
+
"text": "\n<script>\nvar gTop = Number(new Date());\nvar gScriptMsg = \"\";\nfunction cuz_addHandler(elem, sType, fn, capture) {\n capture = (capture) ? true : false;\n if (elem.addEventListener) {\n elem.addEventListener(sType, fn, capture);\n }\n else if (elem.attachEvent) {\n elem.attachEvent(\"on\" + sType, fn);\n }\n else {\n // Netscape 4\n if ( elem[\"on\" + sType] ) {\n // Do nothing - we don't want to overwrite an existing handler.\n }\n else {\n elem[\"on\" + sType] = fn;\n }\n }\n}\nfunction doOnload() {\n\tvar end = Number(new Date());\n document.getElementById('loadtime').innerHTML = 'page load time: ' + (end - gTop) + ' ms';\n\tif ( gScriptMsg && document.getElementById('loadedscripts') ) {\n\t\tdocument.getElementById('loadedscripts').innerHTML += gScriptMsg;\n\t}\n}\ncuz_addHandler(window, 'load', doOnload);\nvar gbEnabled = false;\nfunction enableEdit() {\n\tif ( gbEnabled ) return;\n\tgbEnabled = true;\n\taddStylesheet('cuzillion.1.1.css');\n\taddScript('cuzillion.1.5.js');\n}\nfunction addStylesheet(url) {\n\tvar stylesheet = document.createElement('link');\n\tstylesheet.rel = 'stylesheet';\n\tstylesheet.type = 'text/css';\n\tstylesheet.href = url;\n\tdocument.getElementsByTagName('head')[0].appendChild(stylesheet);\n}\nfunction addScript(url) {\n\tvar script = document.createElement('script');\n\tscript.src = url;\n\tdocument.getElementsByTagName('head')[0].appendChild(script);\n}\nfunction scriptSleepOnload(sUrl) {\n\tvar now = Number(new Date());\n\tvar msg = \"<nobr>\" + (now - gTop) + \"ms: \\\"\" + sUrl + \"\\\" done</nobr>\\n\";\n\tif ( document.getElementById('loadedscripts') ) {\n\t\tdocument.getElementById('loadedscripts').innerHTML += msg;\n\t}\n\telse {\n\t\tgScriptMsg += msg;\n\t}\n}\nfunction reloadPage(url) {\n\tdocument.body.innerHTML = '';\n\tdocument.location = url;\n}\nfunction cleanText(sText) {\n return sText.replace(/<.*?>/g, '');\n}\n</script>\n<html>\n<head>\n<title>Cuzillion</title>\n<link rel=\"icon\" href=\"favicon.ico\" type=\"image/x-icon\">\n<!--\nCopyright 2008 Google Inc.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n</head>\n\n<body style='margin: 0px; padding: 0px; font-family: \"Trebuchet MS\", \"Bitstream Vera Serif\", Utopia, \"Times New Roman\", times, serif;'>\n\n<div style=\"background: #333; color: white; padding: 8px;\">\n <div style=\"float:right; margin-top: 2px;\">\n <a href=\"help.php#examples\" style=\"color: white; font-size: 0.9em; text-decoration: none;\">Examples</a> | <a href=\"help.php\" style=\"color: white; font-size: 0.9em; text-decoration: none;\">Help</a><br><a href=\"http://stevesouders.com/\" style=\"color: white; font-size: 0.9em; text-decoration: none;\">stevesouders.com</a>\n </div>\n <font style=\"font-size: 2em; font-weight: bold; margin-right: 10px;\"><a href=\".\" style=\"color:white; text-decoration: none;\"><img border=0 src=\"logo-32x32.gif\"> Cuzillion</a></font><i>'cuz there are a zillion pages to check</i>\n</div>\n\n<div id=content style=\"margin: 8px;\">\n\n\n<!-- begin resources for inbody -->\n<!-- image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags -->\n<img src='http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=1&t=1262443187'>\n\n<!-- image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags -->\n<img src='http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=2&t=1262443187'>\n\n<!-- image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags -->\n<img src='http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=3&t=1262443187'>\n\n<!-- image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags -->\n<img src='http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=4&t=1262443187'>\n\n<!-- image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags -->\n<img src='http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=5&t=1262443187'>\n\n<!-- image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags -->\n<img src='http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=6&t=1262443187'>\n\n<!-- image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags -->\n<img src='http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=7&t=1262443187'>\n\n<!-- image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags -->\n<img src='http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=8&t=1262443187'>\n\n<!-- end resources for inbody -->\n\n<div id=floattray style=\"float: left; width: 170px; margin-right: 30px;\">\n <div id=step1text style=\"text-align: left; margin: 0 0 4px 4px; height: 50px; padding-top: 12px;\"></div>\n <div id=comptray>\n \n </div>\n</div>\n\n<div id=pageavatar style=\"float: left; width: 310px; margin-right: 30px;\">\n <div id=step2text style=\"text-align: left; margin: 0 0 4px 4px; height: 50px; padding-top: 12px;\"></div>\n <div style=\"background: #CCC; border: 1px solid black; \">\n <code style=\"font-size: 1.2em; font-weight: bold; color: #666666; display: block;\"><HTML></code>\n <code style=\"font-size: 1.2em; font-weight: bold; color: #666666; display: block;\"><HEAD></code>\n <div class=\"drop\" style=\"border: 1px solid #EEE; background: #EEE; padding: 12px 0 12px 0; width: 300px; margin: 0 0 0 4px;\">\n\t <ul style=\"margin: 0; padding: 0;\" id=inhead></ul>\n\t <div id=inheadTarget></div>\n\t</div>\n <code style=\"font-size: 1.2em; font-weight: bold; color: #666666; display: block;\"></HEAD></code>\n <code style=\"font-size: 1.2em; font-weight: bold; color: #666666; display: block;\"><BODY></code>\n <div class=\"drop\" style=\"border: 1px solid #EEE; background: #EEE; padding: 12px 0 12px 0; width: 300px; margin: 0 0 0 4px;\">\n\t <ul style=\"margin: 0; padding: 0;\" id=inbody><li onclick='enableEdit()' id='acomp1' class='sortitem image' style='cursor: move; list-style: none; border-width: 2px; border-style: solid; border-color: #555; margin: 4px;'><div id=acomp1Div class='component image' style='padding: 2px; font-family: Arial; text-align: center; display: block; text-decoration: none; color: white; background: #000080; text-align: left;'><span>image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags</span></div>\n<li onclick='enableEdit()' id='acomp2' class='sortitem image' style='cursor: move; list-style: none; border-width: 2px; border-style: solid; border-color: #555; margin: 4px;'><div id=acomp2Div class='component image' style='padding: 2px; font-family: Arial; text-align: center; display: block; text-decoration: none; color: white; background: #000080; text-align: left;'><span>image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags</span></div>\n<li onclick='enableEdit()' id='acomp3' class='sortitem image' style='cursor: move; list-style: none; border-width: 2px; border-style: solid; border-color: #555; margin: 4px;'><div id=acomp3Div class='component image' style='padding: 2px; font-family: Arial; text-align: center; display: block; text-decoration: none; color: white; background: #000080; text-align: left;'><span>image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags</span></div>\n<li onclick='enableEdit()' id='acomp4' class='sortitem image' style='cursor: move; list-style: none; border-width: 2px; border-style: solid; border-color: #555; margin: 4px;'><div id=acomp4Div class='component image' style='padding: 2px; font-family: Arial; text-align: center; display: block; text-decoration: none; color: white; background: #000080; text-align: left;'><span>image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags</span></div>\n<li onclick='enableEdit()' id='acomp5' class='sortitem image' style='cursor: move; list-style: none; border-width: 2px; border-style: solid; border-color: #555; margin: 4px;'><div id=acomp5Div class='component image' style='padding: 2px; font-family: Arial; text-align: center; display: block; text-decoration: none; color: white; background: #000080; text-align: left;'><span>image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags</span></div>\n<li onclick='enableEdit()' id='acomp6' class='sortitem image' style='cursor: move; list-style: none; border-width: 2px; border-style: solid; border-color: #555; margin: 4px;'><div id=acomp6Div class='component image' style='padding: 2px; font-family: Arial; text-align: center; display: block; text-decoration: none; color: white; background: #000080; text-align: left;'><span>image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags</span></div>\n<li onclick='enableEdit()' id='acomp7' class='sortitem image' style='cursor: move; list-style: none; border-width: 2px; border-style: solid; border-color: #555; margin: 4px;'><div id=acomp7Div class='component image' style='padding: 2px; font-family: Arial; text-align: center; display: block; text-decoration: none; color: white; background: #000080; text-align: left;'><span>image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags</span></div>\n<li onclick='enableEdit()' id='acomp8' class='sortitem image' style='cursor: move; list-style: none; border-width: 2px; border-style: solid; border-color: #555; margin: 4px;'><div id=acomp8Div class='component image' style='padding: 2px; font-family: Arial; text-align: center; display: block; text-decoration: none; color: white; background: #000080; text-align: left;'><span>image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags</span></div>\n</ul>\n\t <div id=inbodyTarget></div>\n\t</div>\n <code style=\"font-size: 1.2em; font-weight: bold; color: #666666; display: block;\"></BODY></code>\n <code style=\"font-size: 1.2em; font-weight: bold; color: #666666; display: block;\"></HTML></code>\n </div>\n <div id=loadtime style=\"text-align: left; margin-top: 10px;\"></div>\n <div id=loadedscripts style=\"text-align: left; margin-top: 10px; width: 300px; font-size: 0.9em;\"></div>\n</div> <!-- end pageavatar -->\n\n<div style=\"position: absolute; left: 560px;\">\n <div id=step3text style=\"text-align: left; margin: 0 0 4px 4px; height: 50px; padding-top: 12px;\"></div>\n <div id=pagesubmit style=\"text-align: left;\">\n<nobr>\n<input type=button value=\"Edit\" onclick=\"enableEdit()\"> \n<input type=button value=\"Reload\" onclick=\"reloadPage('/cuzillion/?c0=bi1hfff2_0_f&c1=bi1hfff2_0_f&c2=bi1hfff2_0_f&c3=bi1hfff2_0_f&c4=bi1hfff2_0_f&c5=bi1hfff2_0_f&c6=bi1hfff2_0_f&c7=bi1hfff2_0_f&t=1262443187')\"> \n<input type=button value=\"Clear\" onclick=\"document.location='.'\"> \n</nobr>\n </div>\n</div>\n\n<div style=\"clear: both;\">\n</div>\n\n</div> <!-- content -->\n\n\n\n</body>\n\n</html>\n"
|
164
|
+
},
|
165
|
+
"redirectURL": "",
|
166
|
+
"headersSize": 247,
|
167
|
+
"bodySize": 2439
|
168
|
+
},
|
169
|
+
"cache": {
|
170
|
+
},
|
171
|
+
"timings": {
|
172
|
+
"dns": 0,
|
173
|
+
"connect": 186,
|
174
|
+
"blocked": 1,
|
175
|
+
"send": 0,
|
176
|
+
"wait": 253,
|
177
|
+
"receive": 0
|
178
|
+
}
|
179
|
+
},
|
180
|
+
{
|
181
|
+
"pageref": "page_7689",
|
182
|
+
"startedDateTime": "2010-01-02T15:39:42.513+01:00",
|
183
|
+
"time": 2405,
|
184
|
+
"request": {
|
185
|
+
"method": "GET",
|
186
|
+
"url": "http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=1&t=1262443187",
|
187
|
+
"httpVersion": "HTTP/1.1",
|
188
|
+
"cookies": [
|
189
|
+
],
|
190
|
+
"headers": [
|
191
|
+
{
|
192
|
+
"name": "Host",
|
193
|
+
"value": "1.cuzillion.com"
|
194
|
+
},
|
195
|
+
{
|
196
|
+
"name": "User-Agent",
|
197
|
+
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2b6pre) Gecko/20091230 Namoroka/3.6b6pre (.NET CLR 3.5.30729)"
|
198
|
+
},
|
199
|
+
{
|
200
|
+
"name": "Accept",
|
201
|
+
"value": "image/png,image/*;q=0.8,*/*;q=0.5"
|
202
|
+
},
|
203
|
+
{
|
204
|
+
"name": "Accept-Language",
|
205
|
+
"value": "en-us,en;q=0.5"
|
206
|
+
},
|
207
|
+
{
|
208
|
+
"name": "Accept-Encoding",
|
209
|
+
"value": "gzip,deflate"
|
210
|
+
},
|
211
|
+
{
|
212
|
+
"name": "Accept-Charset",
|
213
|
+
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
214
|
+
},
|
215
|
+
{
|
216
|
+
"name": "Keep-Alive",
|
217
|
+
"value": "115"
|
218
|
+
},
|
219
|
+
{
|
220
|
+
"name": "Connection",
|
221
|
+
"value": "keep-alive"
|
222
|
+
},
|
223
|
+
{
|
224
|
+
"name": "Referer",
|
225
|
+
"value": "http://stevesouders.com/cuzillion/?c0=bi1hfff2_0_f&c1=bi1hfff2_0_f&c2=bi1hfff2_0_f&c3=bi1hfff2_0_f&c4=bi1hfff2_0_f&c5=bi1hfff2_0_f&c6=bi1hfff2_0_f&c7=bi1hfff2_0_f&t=1258547264277"
|
226
|
+
}
|
227
|
+
],
|
228
|
+
"queryString": [
|
229
|
+
{
|
230
|
+
"name": "n",
|
231
|
+
"value": "1"
|
232
|
+
},
|
233
|
+
{
|
234
|
+
"name": "sleep",
|
235
|
+
"value": "2"
|
236
|
+
},
|
237
|
+
{
|
238
|
+
"name": "t",
|
239
|
+
"value": "1262443187"
|
240
|
+
},
|
241
|
+
{
|
242
|
+
"name": "type",
|
243
|
+
"value": "gif"
|
244
|
+
}
|
245
|
+
],
|
246
|
+
"headersSize": 606,
|
247
|
+
"bodySize": -1
|
248
|
+
},
|
249
|
+
"response": {
|
250
|
+
"status": 200,
|
251
|
+
"statusText": "OK",
|
252
|
+
"httpVersion": "HTTP/1.1",
|
253
|
+
"cookies": [
|
254
|
+
],
|
255
|
+
"headers": [
|
256
|
+
{
|
257
|
+
"name": "Date",
|
258
|
+
"value": "Sat, 02 Jan 2010 14:39:48 GMT"
|
259
|
+
},
|
260
|
+
{
|
261
|
+
"name": "Server",
|
262
|
+
"value": "Apache"
|
263
|
+
},
|
264
|
+
{
|
265
|
+
"name": "Expires",
|
266
|
+
"value": "Mon, 01 Feb 2010 14:39:50 GMT"
|
267
|
+
},
|
268
|
+
{
|
269
|
+
"name": "Cache-Control",
|
270
|
+
"value": "public, max-age=2592000"
|
271
|
+
},
|
272
|
+
{
|
273
|
+
"name": "Last-Modified",
|
274
|
+
"value": "Sun, 15 Jan 2006 12:00:00 GMT"
|
275
|
+
},
|
276
|
+
{
|
277
|
+
"name": "Content-Length",
|
278
|
+
"value": "1525"
|
279
|
+
},
|
280
|
+
{
|
281
|
+
"name": "Keep-Alive",
|
282
|
+
"value": "timeout=2, max=100"
|
283
|
+
},
|
284
|
+
{
|
285
|
+
"name": "Connection",
|
286
|
+
"value": "Keep-Alive"
|
287
|
+
},
|
288
|
+
{
|
289
|
+
"name": "Content-Type",
|
290
|
+
"value": "image/gif"
|
291
|
+
}
|
292
|
+
],
|
293
|
+
"content": {
|
294
|
+
"size": 1525,
|
295
|
+
"mimeType": "image/gif"
|
296
|
+
},
|
297
|
+
"redirectURL": "",
|
298
|
+
"headersSize": 301,
|
299
|
+
"bodySize": 1525
|
300
|
+
},
|
301
|
+
"cache": {
|
302
|
+
},
|
303
|
+
"timings": {
|
304
|
+
"dns": 0,
|
305
|
+
"connect": 185,
|
306
|
+
"blocked": 0,
|
307
|
+
"send": 0,
|
308
|
+
"wait": 2220,
|
309
|
+
"receive": 0
|
310
|
+
}
|
311
|
+
},
|
312
|
+
{
|
313
|
+
"pageref": "page_7689",
|
314
|
+
"startedDateTime": "2010-01-02T15:39:42.515+01:00",
|
315
|
+
"time": 2490,
|
316
|
+
"request": {
|
317
|
+
"method": "GET",
|
318
|
+
"url": "http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=2&t=1262443187",
|
319
|
+
"httpVersion": "HTTP/1.1",
|
320
|
+
"cookies": [
|
321
|
+
],
|
322
|
+
"headers": [
|
323
|
+
{
|
324
|
+
"name": "Host",
|
325
|
+
"value": "1.cuzillion.com"
|
326
|
+
},
|
327
|
+
{
|
328
|
+
"name": "User-Agent",
|
329
|
+
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2b6pre) Gecko/20091230 Namoroka/3.6b6pre (.NET CLR 3.5.30729)"
|
330
|
+
},
|
331
|
+
{
|
332
|
+
"name": "Accept",
|
333
|
+
"value": "image/png,image/*;q=0.8,*/*;q=0.5"
|
334
|
+
},
|
335
|
+
{
|
336
|
+
"name": "Accept-Language",
|
337
|
+
"value": "en-us,en;q=0.5"
|
338
|
+
},
|
339
|
+
{
|
340
|
+
"name": "Accept-Encoding",
|
341
|
+
"value": "gzip,deflate"
|
342
|
+
},
|
343
|
+
{
|
344
|
+
"name": "Accept-Charset",
|
345
|
+
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
346
|
+
},
|
347
|
+
{
|
348
|
+
"name": "Keep-Alive",
|
349
|
+
"value": "115"
|
350
|
+
},
|
351
|
+
{
|
352
|
+
"name": "Connection",
|
353
|
+
"value": "keep-alive"
|
354
|
+
},
|
355
|
+
{
|
356
|
+
"name": "Referer",
|
357
|
+
"value": "http://stevesouders.com/cuzillion/?c0=bi1hfff2_0_f&c1=bi1hfff2_0_f&c2=bi1hfff2_0_f&c3=bi1hfff2_0_f&c4=bi1hfff2_0_f&c5=bi1hfff2_0_f&c6=bi1hfff2_0_f&c7=bi1hfff2_0_f&t=1258547264277"
|
358
|
+
}
|
359
|
+
],
|
360
|
+
"queryString": [
|
361
|
+
{
|
362
|
+
"name": "n",
|
363
|
+
"value": "2"
|
364
|
+
},
|
365
|
+
{
|
366
|
+
"name": "sleep",
|
367
|
+
"value": "2"
|
368
|
+
},
|
369
|
+
{
|
370
|
+
"name": "t",
|
371
|
+
"value": "1262443187"
|
372
|
+
},
|
373
|
+
{
|
374
|
+
"name": "type",
|
375
|
+
"value": "gif"
|
376
|
+
}
|
377
|
+
],
|
378
|
+
"headersSize": 606,
|
379
|
+
"bodySize": -1
|
380
|
+
},
|
381
|
+
"response": {
|
382
|
+
"status": 200,
|
383
|
+
"statusText": "OK",
|
384
|
+
"httpVersion": "HTTP/1.1",
|
385
|
+
"cookies": [
|
386
|
+
],
|
387
|
+
"headers": [
|
388
|
+
{
|
389
|
+
"name": "Date",
|
390
|
+
"value": "Sat, 02 Jan 2010 14:39:48 GMT"
|
391
|
+
},
|
392
|
+
{
|
393
|
+
"name": "Server",
|
394
|
+
"value": "Apache"
|
395
|
+
},
|
396
|
+
{
|
397
|
+
"name": "Expires",
|
398
|
+
"value": "Mon, 01 Feb 2010 14:39:50 GMT"
|
399
|
+
},
|
400
|
+
{
|
401
|
+
"name": "Cache-Control",
|
402
|
+
"value": "public, max-age=2592000"
|
403
|
+
},
|
404
|
+
{
|
405
|
+
"name": "Last-Modified",
|
406
|
+
"value": "Sun, 15 Jan 2006 12:00:00 GMT"
|
407
|
+
},
|
408
|
+
{
|
409
|
+
"name": "Keep-Alive",
|
410
|
+
"value": "timeout=2, max=100"
|
411
|
+
},
|
412
|
+
{
|
413
|
+
"name": "Connection",
|
414
|
+
"value": "Keep-Alive"
|
415
|
+
},
|
416
|
+
{
|
417
|
+
"name": "Transfer-Encoding",
|
418
|
+
"value": "chunked"
|
419
|
+
},
|
420
|
+
{
|
421
|
+
"name": "Content-Type",
|
422
|
+
"value": "image/gif"
|
423
|
+
}
|
424
|
+
],
|
425
|
+
"content": {
|
426
|
+
"size": 492,
|
427
|
+
"mimeType": "image/gif"
|
428
|
+
},
|
429
|
+
"redirectURL": "",
|
430
|
+
"headersSize": 307,
|
431
|
+
"bodySize": 492
|
432
|
+
},
|
433
|
+
"cache": {
|
434
|
+
},
|
435
|
+
"timings": {
|
436
|
+
"dns": 0,
|
437
|
+
"connect": 187,
|
438
|
+
"blocked": 0,
|
439
|
+
"send": 0,
|
440
|
+
"wait": 2302,
|
441
|
+
"receive": 1
|
442
|
+
}
|
443
|
+
},
|
444
|
+
{
|
445
|
+
"pageref": "page_7689",
|
446
|
+
"startedDateTime": "2010-01-02T15:39:42.517+01:00",
|
447
|
+
"time": 2465,
|
448
|
+
"request": {
|
449
|
+
"method": "GET",
|
450
|
+
"url": "http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=3&t=1262443187",
|
451
|
+
"httpVersion": "HTTP/1.1",
|
452
|
+
"cookies": [
|
453
|
+
],
|
454
|
+
"headers": [
|
455
|
+
{
|
456
|
+
"name": "Host",
|
457
|
+
"value": "1.cuzillion.com"
|
458
|
+
},
|
459
|
+
{
|
460
|
+
"name": "User-Agent",
|
461
|
+
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2b6pre) Gecko/20091230 Namoroka/3.6b6pre (.NET CLR 3.5.30729)"
|
462
|
+
},
|
463
|
+
{
|
464
|
+
"name": "Accept",
|
465
|
+
"value": "image/png,image/*;q=0.8,*/*;q=0.5"
|
466
|
+
},
|
467
|
+
{
|
468
|
+
"name": "Accept-Language",
|
469
|
+
"value": "en-us,en;q=0.5"
|
470
|
+
},
|
471
|
+
{
|
472
|
+
"name": "Accept-Encoding",
|
473
|
+
"value": "gzip,deflate"
|
474
|
+
},
|
475
|
+
{
|
476
|
+
"name": "Accept-Charset",
|
477
|
+
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
478
|
+
},
|
479
|
+
{
|
480
|
+
"name": "Keep-Alive",
|
481
|
+
"value": "115"
|
482
|
+
},
|
483
|
+
{
|
484
|
+
"name": "Connection",
|
485
|
+
"value": "keep-alive"
|
486
|
+
},
|
487
|
+
{
|
488
|
+
"name": "Referer",
|
489
|
+
"value": "http://stevesouders.com/cuzillion/?c0=bi1hfff2_0_f&c1=bi1hfff2_0_f&c2=bi1hfff2_0_f&c3=bi1hfff2_0_f&c4=bi1hfff2_0_f&c5=bi1hfff2_0_f&c6=bi1hfff2_0_f&c7=bi1hfff2_0_f&t=1258547264277"
|
490
|
+
}
|
491
|
+
],
|
492
|
+
"queryString": [
|
493
|
+
{
|
494
|
+
"name": "n",
|
495
|
+
"value": "3"
|
496
|
+
},
|
497
|
+
{
|
498
|
+
"name": "sleep",
|
499
|
+
"value": "2"
|
500
|
+
},
|
501
|
+
{
|
502
|
+
"name": "t",
|
503
|
+
"value": "1262443187"
|
504
|
+
},
|
505
|
+
{
|
506
|
+
"name": "type",
|
507
|
+
"value": "gif"
|
508
|
+
}
|
509
|
+
],
|
510
|
+
"headersSize": 606,
|
511
|
+
"bodySize": -1
|
512
|
+
},
|
513
|
+
"response": {
|
514
|
+
"status": 200,
|
515
|
+
"statusText": "OK",
|
516
|
+
"httpVersion": "HTTP/1.1",
|
517
|
+
"cookies": [
|
518
|
+
],
|
519
|
+
"headers": [
|
520
|
+
{
|
521
|
+
"name": "Date",
|
522
|
+
"value": "Sat, 02 Jan 2010 14:39:48 GMT"
|
523
|
+
},
|
524
|
+
{
|
525
|
+
"name": "Server",
|
526
|
+
"value": "Apache"
|
527
|
+
},
|
528
|
+
{
|
529
|
+
"name": "Expires",
|
530
|
+
"value": "Mon, 01 Feb 2010 14:39:50 GMT"
|
531
|
+
},
|
532
|
+
{
|
533
|
+
"name": "Cache-Control",
|
534
|
+
"value": "public, max-age=2592000"
|
535
|
+
},
|
536
|
+
{
|
537
|
+
"name": "Last-Modified",
|
538
|
+
"value": "Sun, 15 Jan 2006 12:00:00 GMT"
|
539
|
+
},
|
540
|
+
{
|
541
|
+
"name": "Content-Length",
|
542
|
+
"value": "1076"
|
543
|
+
},
|
544
|
+
{
|
545
|
+
"name": "Keep-Alive",
|
546
|
+
"value": "timeout=2, max=100"
|
547
|
+
},
|
548
|
+
{
|
549
|
+
"name": "Connection",
|
550
|
+
"value": "Keep-Alive"
|
551
|
+
},
|
552
|
+
{
|
553
|
+
"name": "Content-Type",
|
554
|
+
"value": "image/gif"
|
555
|
+
}
|
556
|
+
],
|
557
|
+
"content": {
|
558
|
+
"size": 1076,
|
559
|
+
"mimeType": "image/gif"
|
560
|
+
},
|
561
|
+
"redirectURL": "",
|
562
|
+
"headersSize": 301,
|
563
|
+
"bodySize": 1076
|
564
|
+
},
|
565
|
+
"cache": {
|
566
|
+
},
|
567
|
+
"timings": {
|
568
|
+
"dns": 1,
|
569
|
+
"connect": 189,
|
570
|
+
"blocked": 1,
|
571
|
+
"send": 0,
|
572
|
+
"wait": 2274,
|
573
|
+
"receive": 0
|
574
|
+
}
|
575
|
+
},
|
576
|
+
{
|
577
|
+
"pageref": "page_7689",
|
578
|
+
"startedDateTime": "2010-01-02T15:39:42.519+01:00",
|
579
|
+
"time": 2446,
|
580
|
+
"request": {
|
581
|
+
"method": "GET",
|
582
|
+
"url": "http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=4&t=1262443187",
|
583
|
+
"httpVersion": "HTTP/1.1",
|
584
|
+
"cookies": [
|
585
|
+
],
|
586
|
+
"headers": [
|
587
|
+
{
|
588
|
+
"name": "Host",
|
589
|
+
"value": "1.cuzillion.com"
|
590
|
+
},
|
591
|
+
{
|
592
|
+
"name": "User-Agent",
|
593
|
+
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2b6pre) Gecko/20091230 Namoroka/3.6b6pre (.NET CLR 3.5.30729)"
|
594
|
+
},
|
595
|
+
{
|
596
|
+
"name": "Accept",
|
597
|
+
"value": "image/png,image/*;q=0.8,*/*;q=0.5"
|
598
|
+
},
|
599
|
+
{
|
600
|
+
"name": "Accept-Language",
|
601
|
+
"value": "en-us,en;q=0.5"
|
602
|
+
},
|
603
|
+
{
|
604
|
+
"name": "Accept-Encoding",
|
605
|
+
"value": "gzip,deflate"
|
606
|
+
},
|
607
|
+
{
|
608
|
+
"name": "Accept-Charset",
|
609
|
+
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
610
|
+
},
|
611
|
+
{
|
612
|
+
"name": "Keep-Alive",
|
613
|
+
"value": "115"
|
614
|
+
},
|
615
|
+
{
|
616
|
+
"name": "Connection",
|
617
|
+
"value": "keep-alive"
|
618
|
+
},
|
619
|
+
{
|
620
|
+
"name": "Referer",
|
621
|
+
"value": "http://stevesouders.com/cuzillion/?c0=bi1hfff2_0_f&c1=bi1hfff2_0_f&c2=bi1hfff2_0_f&c3=bi1hfff2_0_f&c4=bi1hfff2_0_f&c5=bi1hfff2_0_f&c6=bi1hfff2_0_f&c7=bi1hfff2_0_f&t=1258547264277"
|
622
|
+
}
|
623
|
+
],
|
624
|
+
"queryString": [
|
625
|
+
{
|
626
|
+
"name": "n",
|
627
|
+
"value": "4"
|
628
|
+
},
|
629
|
+
{
|
630
|
+
"name": "sleep",
|
631
|
+
"value": "2"
|
632
|
+
},
|
633
|
+
{
|
634
|
+
"name": "t",
|
635
|
+
"value": "1262443187"
|
636
|
+
},
|
637
|
+
{
|
638
|
+
"name": "type",
|
639
|
+
"value": "gif"
|
640
|
+
}
|
641
|
+
],
|
642
|
+
"headersSize": 606,
|
643
|
+
"bodySize": -1
|
644
|
+
},
|
645
|
+
"response": {
|
646
|
+
"status": 200,
|
647
|
+
"statusText": "OK",
|
648
|
+
"httpVersion": "HTTP/1.1",
|
649
|
+
"cookies": [
|
650
|
+
],
|
651
|
+
"headers": [
|
652
|
+
{
|
653
|
+
"name": "Date",
|
654
|
+
"value": "Sat, 02 Jan 2010 14:39:48 GMT"
|
655
|
+
},
|
656
|
+
{
|
657
|
+
"name": "Server",
|
658
|
+
"value": "Apache"
|
659
|
+
},
|
660
|
+
{
|
661
|
+
"name": "Expires",
|
662
|
+
"value": "Mon, 01 Feb 2010 14:39:50 GMT"
|
663
|
+
},
|
664
|
+
{
|
665
|
+
"name": "Cache-Control",
|
666
|
+
"value": "public, max-age=2592000"
|
667
|
+
},
|
668
|
+
{
|
669
|
+
"name": "Last-Modified",
|
670
|
+
"value": "Sun, 15 Jan 2006 12:00:00 GMT"
|
671
|
+
},
|
672
|
+
{
|
673
|
+
"name": "Content-Length",
|
674
|
+
"value": "492"
|
675
|
+
},
|
676
|
+
{
|
677
|
+
"name": "Keep-Alive",
|
678
|
+
"value": "timeout=2, max=100"
|
679
|
+
},
|
680
|
+
{
|
681
|
+
"name": "Connection",
|
682
|
+
"value": "Keep-Alive"
|
683
|
+
},
|
684
|
+
{
|
685
|
+
"name": "Content-Type",
|
686
|
+
"value": "image/gif"
|
687
|
+
}
|
688
|
+
],
|
689
|
+
"content": {
|
690
|
+
"size": 492,
|
691
|
+
"mimeType": "image/gif"
|
692
|
+
},
|
693
|
+
"redirectURL": "",
|
694
|
+
"headersSize": 300,
|
695
|
+
"bodySize": 492
|
696
|
+
},
|
697
|
+
"cache": {
|
698
|
+
},
|
699
|
+
"timings": {
|
700
|
+
"dns": 0,
|
701
|
+
"connect": 189,
|
702
|
+
"blocked": 1,
|
703
|
+
"send": 0,
|
704
|
+
"wait": 2256,
|
705
|
+
"receive": 0
|
706
|
+
}
|
707
|
+
},
|
708
|
+
{
|
709
|
+
"pageref": "page_7689",
|
710
|
+
"startedDateTime": "2010-01-02T15:39:42.521+01:00",
|
711
|
+
"time": 2454,
|
712
|
+
"request": {
|
713
|
+
"method": "GET",
|
714
|
+
"url": "http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=5&t=1262443187",
|
715
|
+
"httpVersion": "HTTP/1.1",
|
716
|
+
"cookies": [
|
717
|
+
],
|
718
|
+
"headers": [
|
719
|
+
{
|
720
|
+
"name": "Host",
|
721
|
+
"value": "1.cuzillion.com"
|
722
|
+
},
|
723
|
+
{
|
724
|
+
"name": "User-Agent",
|
725
|
+
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2b6pre) Gecko/20091230 Namoroka/3.6b6pre (.NET CLR 3.5.30729)"
|
726
|
+
},
|
727
|
+
{
|
728
|
+
"name": "Accept",
|
729
|
+
"value": "image/png,image/*;q=0.8,*/*;q=0.5"
|
730
|
+
},
|
731
|
+
{
|
732
|
+
"name": "Accept-Language",
|
733
|
+
"value": "en-us,en;q=0.5"
|
734
|
+
},
|
735
|
+
{
|
736
|
+
"name": "Accept-Encoding",
|
737
|
+
"value": "gzip,deflate"
|
738
|
+
},
|
739
|
+
{
|
740
|
+
"name": "Accept-Charset",
|
741
|
+
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
742
|
+
},
|
743
|
+
{
|
744
|
+
"name": "Keep-Alive",
|
745
|
+
"value": "115"
|
746
|
+
},
|
747
|
+
{
|
748
|
+
"name": "Connection",
|
749
|
+
"value": "keep-alive"
|
750
|
+
},
|
751
|
+
{
|
752
|
+
"name": "Referer",
|
753
|
+
"value": "http://stevesouders.com/cuzillion/?c0=bi1hfff2_0_f&c1=bi1hfff2_0_f&c2=bi1hfff2_0_f&c3=bi1hfff2_0_f&c4=bi1hfff2_0_f&c5=bi1hfff2_0_f&c6=bi1hfff2_0_f&c7=bi1hfff2_0_f&t=1258547264277"
|
754
|
+
}
|
755
|
+
],
|
756
|
+
"queryString": [
|
757
|
+
{
|
758
|
+
"name": "n",
|
759
|
+
"value": "5"
|
760
|
+
},
|
761
|
+
{
|
762
|
+
"name": "sleep",
|
763
|
+
"value": "2"
|
764
|
+
},
|
765
|
+
{
|
766
|
+
"name": "t",
|
767
|
+
"value": "1262443187"
|
768
|
+
},
|
769
|
+
{
|
770
|
+
"name": "type",
|
771
|
+
"value": "gif"
|
772
|
+
}
|
773
|
+
],
|
774
|
+
"headersSize": 606,
|
775
|
+
"bodySize": -1
|
776
|
+
},
|
777
|
+
"response": {
|
778
|
+
"status": 200,
|
779
|
+
"statusText": "OK",
|
780
|
+
"httpVersion": "HTTP/1.1",
|
781
|
+
"cookies": [
|
782
|
+
],
|
783
|
+
"headers": [
|
784
|
+
{
|
785
|
+
"name": "Date",
|
786
|
+
"value": "Sat, 02 Jan 2010 14:39:48 GMT"
|
787
|
+
},
|
788
|
+
{
|
789
|
+
"name": "Server",
|
790
|
+
"value": "Apache"
|
791
|
+
},
|
792
|
+
{
|
793
|
+
"name": "Expires",
|
794
|
+
"value": "Mon, 01 Feb 2010 14:39:50 GMT"
|
795
|
+
},
|
796
|
+
{
|
797
|
+
"name": "Cache-Control",
|
798
|
+
"value": "public, max-age=2592000"
|
799
|
+
},
|
800
|
+
{
|
801
|
+
"name": "Last-Modified",
|
802
|
+
"value": "Sun, 15 Jan 2006 12:00:00 GMT"
|
803
|
+
},
|
804
|
+
{
|
805
|
+
"name": "Content-Length",
|
806
|
+
"value": "1525"
|
807
|
+
},
|
808
|
+
{
|
809
|
+
"name": "Keep-Alive",
|
810
|
+
"value": "timeout=2, max=100"
|
811
|
+
},
|
812
|
+
{
|
813
|
+
"name": "Connection",
|
814
|
+
"value": "Keep-Alive"
|
815
|
+
},
|
816
|
+
{
|
817
|
+
"name": "Content-Type",
|
818
|
+
"value": "image/gif"
|
819
|
+
}
|
820
|
+
],
|
821
|
+
"content": {
|
822
|
+
"size": 1525,
|
823
|
+
"mimeType": "image/gif"
|
824
|
+
},
|
825
|
+
"redirectURL": "",
|
826
|
+
"headersSize": 301,
|
827
|
+
"bodySize": 1525
|
828
|
+
},
|
829
|
+
"cache": {
|
830
|
+
},
|
831
|
+
"timings": {
|
832
|
+
"dns": 0,
|
833
|
+
"connect": 194,
|
834
|
+
"blocked": 1,
|
835
|
+
"send": 0,
|
836
|
+
"wait": 2259,
|
837
|
+
"receive": 0
|
838
|
+
}
|
839
|
+
},
|
840
|
+
{
|
841
|
+
"pageref": "page_7689",
|
842
|
+
"startedDateTime": "2010-01-02T15:39:42.523+01:00",
|
843
|
+
"time": 2465,
|
844
|
+
"request": {
|
845
|
+
"method": "GET",
|
846
|
+
"url": "http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=6&t=1262443187",
|
847
|
+
"httpVersion": "HTTP/1.1",
|
848
|
+
"cookies": [
|
849
|
+
],
|
850
|
+
"headers": [
|
851
|
+
{
|
852
|
+
"name": "Host",
|
853
|
+
"value": "1.cuzillion.com"
|
854
|
+
},
|
855
|
+
{
|
856
|
+
"name": "User-Agent",
|
857
|
+
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2b6pre) Gecko/20091230 Namoroka/3.6b6pre (.NET CLR 3.5.30729)"
|
858
|
+
},
|
859
|
+
{
|
860
|
+
"name": "Accept",
|
861
|
+
"value": "image/png,image/*;q=0.8,*/*;q=0.5"
|
862
|
+
},
|
863
|
+
{
|
864
|
+
"name": "Accept-Language",
|
865
|
+
"value": "en-us,en;q=0.5"
|
866
|
+
},
|
867
|
+
{
|
868
|
+
"name": "Accept-Encoding",
|
869
|
+
"value": "gzip,deflate"
|
870
|
+
},
|
871
|
+
{
|
872
|
+
"name": "Accept-Charset",
|
873
|
+
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
874
|
+
},
|
875
|
+
{
|
876
|
+
"name": "Keep-Alive",
|
877
|
+
"value": "115"
|
878
|
+
},
|
879
|
+
{
|
880
|
+
"name": "Connection",
|
881
|
+
"value": "keep-alive"
|
882
|
+
},
|
883
|
+
{
|
884
|
+
"name": "Referer",
|
885
|
+
"value": "http://stevesouders.com/cuzillion/?c0=bi1hfff2_0_f&c1=bi1hfff2_0_f&c2=bi1hfff2_0_f&c3=bi1hfff2_0_f&c4=bi1hfff2_0_f&c5=bi1hfff2_0_f&c6=bi1hfff2_0_f&c7=bi1hfff2_0_f&t=1258547264277"
|
886
|
+
}
|
887
|
+
],
|
888
|
+
"queryString": [
|
889
|
+
{
|
890
|
+
"name": "n",
|
891
|
+
"value": "6"
|
892
|
+
},
|
893
|
+
{
|
894
|
+
"name": "sleep",
|
895
|
+
"value": "2"
|
896
|
+
},
|
897
|
+
{
|
898
|
+
"name": "t",
|
899
|
+
"value": "1262443187"
|
900
|
+
},
|
901
|
+
{
|
902
|
+
"name": "type",
|
903
|
+
"value": "gif"
|
904
|
+
}
|
905
|
+
],
|
906
|
+
"headersSize": 606,
|
907
|
+
"bodySize": -1
|
908
|
+
},
|
909
|
+
"response": {
|
910
|
+
"status": 200,
|
911
|
+
"statusText": "OK",
|
912
|
+
"httpVersion": "HTTP/1.1",
|
913
|
+
"cookies": [
|
914
|
+
],
|
915
|
+
"headers": [
|
916
|
+
{
|
917
|
+
"name": "Date",
|
918
|
+
"value": "Sat, 02 Jan 2010 14:39:48 GMT"
|
919
|
+
},
|
920
|
+
{
|
921
|
+
"name": "Server",
|
922
|
+
"value": "Apache"
|
923
|
+
},
|
924
|
+
{
|
925
|
+
"name": "Expires",
|
926
|
+
"value": "Mon, 01 Feb 2010 14:39:50 GMT"
|
927
|
+
},
|
928
|
+
{
|
929
|
+
"name": "Cache-Control",
|
930
|
+
"value": "public, max-age=2592000"
|
931
|
+
},
|
932
|
+
{
|
933
|
+
"name": "Last-Modified",
|
934
|
+
"value": "Sun, 15 Jan 2006 12:00:00 GMT"
|
935
|
+
},
|
936
|
+
{
|
937
|
+
"name": "Content-Length",
|
938
|
+
"value": "1525"
|
939
|
+
},
|
940
|
+
{
|
941
|
+
"name": "Keep-Alive",
|
942
|
+
"value": "timeout=2, max=100"
|
943
|
+
},
|
944
|
+
{
|
945
|
+
"name": "Connection",
|
946
|
+
"value": "Keep-Alive"
|
947
|
+
},
|
948
|
+
{
|
949
|
+
"name": "Content-Type",
|
950
|
+
"value": "image/gif"
|
951
|
+
}
|
952
|
+
],
|
953
|
+
"content": {
|
954
|
+
"size": 1525,
|
955
|
+
"mimeType": "image/gif"
|
956
|
+
},
|
957
|
+
"redirectURL": "",
|
958
|
+
"headersSize": 301,
|
959
|
+
"bodySize": 1525
|
960
|
+
},
|
961
|
+
"cache": {
|
962
|
+
},
|
963
|
+
"timings": {
|
964
|
+
"dns": 0,
|
965
|
+
"connect": 194,
|
966
|
+
"blocked": 1,
|
967
|
+
"send": 0,
|
968
|
+
"wait": 2270,
|
969
|
+
"receive": 0
|
970
|
+
}
|
971
|
+
},
|
972
|
+
{
|
973
|
+
"pageref": "page_7689",
|
974
|
+
"startedDateTime": "2010-01-02T15:39:42.525+01:00",
|
975
|
+
"time": 4610,
|
976
|
+
"request": {
|
977
|
+
"method": "GET",
|
978
|
+
"url": "http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=7&t=1262443187",
|
979
|
+
"httpVersion": "HTTP/1.1",
|
980
|
+
"cookies": [
|
981
|
+
],
|
982
|
+
"headers": [
|
983
|
+
{
|
984
|
+
"name": "Host",
|
985
|
+
"value": "1.cuzillion.com"
|
986
|
+
},
|
987
|
+
{
|
988
|
+
"name": "User-Agent",
|
989
|
+
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2b6pre) Gecko/20091230 Namoroka/3.6b6pre (.NET CLR 3.5.30729)"
|
990
|
+
},
|
991
|
+
{
|
992
|
+
"name": "Accept",
|
993
|
+
"value": "image/png,image/*;q=0.8,*/*;q=0.5"
|
994
|
+
},
|
995
|
+
{
|
996
|
+
"name": "Accept-Language",
|
997
|
+
"value": "en-us,en;q=0.5"
|
998
|
+
},
|
999
|
+
{
|
1000
|
+
"name": "Accept-Encoding",
|
1001
|
+
"value": "gzip,deflate"
|
1002
|
+
},
|
1003
|
+
{
|
1004
|
+
"name": "Accept-Charset",
|
1005
|
+
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
1006
|
+
},
|
1007
|
+
{
|
1008
|
+
"name": "Keep-Alive",
|
1009
|
+
"value": "115"
|
1010
|
+
},
|
1011
|
+
{
|
1012
|
+
"name": "Connection",
|
1013
|
+
"value": "keep-alive"
|
1014
|
+
},
|
1015
|
+
{
|
1016
|
+
"name": "Referer",
|
1017
|
+
"value": "http://stevesouders.com/cuzillion/?c0=bi1hfff2_0_f&c1=bi1hfff2_0_f&c2=bi1hfff2_0_f&c3=bi1hfff2_0_f&c4=bi1hfff2_0_f&c5=bi1hfff2_0_f&c6=bi1hfff2_0_f&c7=bi1hfff2_0_f&t=1258547264277"
|
1018
|
+
}
|
1019
|
+
],
|
1020
|
+
"queryString": [
|
1021
|
+
{
|
1022
|
+
"name": "n",
|
1023
|
+
"value": "7"
|
1024
|
+
},
|
1025
|
+
{
|
1026
|
+
"name": "sleep",
|
1027
|
+
"value": "2"
|
1028
|
+
},
|
1029
|
+
{
|
1030
|
+
"name": "t",
|
1031
|
+
"value": "1262443187"
|
1032
|
+
},
|
1033
|
+
{
|
1034
|
+
"name": "type",
|
1035
|
+
"value": "gif"
|
1036
|
+
}
|
1037
|
+
],
|
1038
|
+
"headersSize": 606,
|
1039
|
+
"bodySize": -1
|
1040
|
+
},
|
1041
|
+
"response": {
|
1042
|
+
"status": 200,
|
1043
|
+
"statusText": "OK",
|
1044
|
+
"httpVersion": "HTTP/1.1",
|
1045
|
+
"cookies": [
|
1046
|
+
],
|
1047
|
+
"headers": [
|
1048
|
+
{
|
1049
|
+
"name": "Date",
|
1050
|
+
"value": "Sat, 02 Jan 2010 14:39:50 GMT"
|
1051
|
+
},
|
1052
|
+
{
|
1053
|
+
"name": "Server",
|
1054
|
+
"value": "Apache"
|
1055
|
+
},
|
1056
|
+
{
|
1057
|
+
"name": "Expires",
|
1058
|
+
"value": "Mon, 01 Feb 2010 14:39:52 GMT"
|
1059
|
+
},
|
1060
|
+
{
|
1061
|
+
"name": "Cache-Control",
|
1062
|
+
"value": "public, max-age=2592000"
|
1063
|
+
},
|
1064
|
+
{
|
1065
|
+
"name": "Last-Modified",
|
1066
|
+
"value": "Sun, 15 Jan 2006 12:00:00 GMT"
|
1067
|
+
},
|
1068
|
+
{
|
1069
|
+
"name": "Content-Length",
|
1070
|
+
"value": "1076"
|
1071
|
+
},
|
1072
|
+
{
|
1073
|
+
"name": "Keep-Alive",
|
1074
|
+
"value": "timeout=2, max=99"
|
1075
|
+
},
|
1076
|
+
{
|
1077
|
+
"name": "Connection",
|
1078
|
+
"value": "Keep-Alive"
|
1079
|
+
},
|
1080
|
+
{
|
1081
|
+
"name": "Content-Type",
|
1082
|
+
"value": "image/gif"
|
1083
|
+
}
|
1084
|
+
],
|
1085
|
+
"content": {
|
1086
|
+
"size": 1076,
|
1087
|
+
"mimeType": "image/gif"
|
1088
|
+
},
|
1089
|
+
"redirectURL": "",
|
1090
|
+
"headersSize": 300,
|
1091
|
+
"bodySize": 1076
|
1092
|
+
},
|
1093
|
+
"cache": {
|
1094
|
+
},
|
1095
|
+
"timings": {
|
1096
|
+
"dns": 0,
|
1097
|
+
"connect": 0,
|
1098
|
+
"blocked": 2394,
|
1099
|
+
"send": 0,
|
1100
|
+
"wait": 2216,
|
1101
|
+
"receive": 0
|
1102
|
+
}
|
1103
|
+
},
|
1104
|
+
{
|
1105
|
+
"pageref": "page_7689",
|
1106
|
+
"startedDateTime": "2010-01-02T15:39:42.526+01:00",
|
1107
|
+
"time": 4652,
|
1108
|
+
"request": {
|
1109
|
+
"method": "GET",
|
1110
|
+
"url": "http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=8&t=1262443187",
|
1111
|
+
"httpVersion": "HTTP/1.1",
|
1112
|
+
"cookies": [
|
1113
|
+
],
|
1114
|
+
"headers": [
|
1115
|
+
{
|
1116
|
+
"name": "Host",
|
1117
|
+
"value": "1.cuzillion.com"
|
1118
|
+
},
|
1119
|
+
{
|
1120
|
+
"name": "User-Agent",
|
1121
|
+
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2b6pre) Gecko/20091230 Namoroka/3.6b6pre (.NET CLR 3.5.30729)"
|
1122
|
+
},
|
1123
|
+
{
|
1124
|
+
"name": "Accept",
|
1125
|
+
"value": "image/png,image/*;q=0.8,*/*;q=0.5"
|
1126
|
+
},
|
1127
|
+
{
|
1128
|
+
"name": "Accept-Language",
|
1129
|
+
"value": "en-us,en;q=0.5"
|
1130
|
+
},
|
1131
|
+
{
|
1132
|
+
"name": "Accept-Encoding",
|
1133
|
+
"value": "gzip,deflate"
|
1134
|
+
},
|
1135
|
+
{
|
1136
|
+
"name": "Accept-Charset",
|
1137
|
+
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
1138
|
+
},
|
1139
|
+
{
|
1140
|
+
"name": "Keep-Alive",
|
1141
|
+
"value": "115"
|
1142
|
+
},
|
1143
|
+
{
|
1144
|
+
"name": "Connection",
|
1145
|
+
"value": "keep-alive"
|
1146
|
+
},
|
1147
|
+
{
|
1148
|
+
"name": "Referer",
|
1149
|
+
"value": "http://stevesouders.com/cuzillion/?c0=bi1hfff2_0_f&c1=bi1hfff2_0_f&c2=bi1hfff2_0_f&c3=bi1hfff2_0_f&c4=bi1hfff2_0_f&c5=bi1hfff2_0_f&c6=bi1hfff2_0_f&c7=bi1hfff2_0_f&t=1258547264277"
|
1150
|
+
}
|
1151
|
+
],
|
1152
|
+
"queryString": [
|
1153
|
+
{
|
1154
|
+
"name": "n",
|
1155
|
+
"value": "8"
|
1156
|
+
},
|
1157
|
+
{
|
1158
|
+
"name": "sleep",
|
1159
|
+
"value": "2"
|
1160
|
+
},
|
1161
|
+
{
|
1162
|
+
"name": "t",
|
1163
|
+
"value": "1262443187"
|
1164
|
+
},
|
1165
|
+
{
|
1166
|
+
"name": "type",
|
1167
|
+
"value": "gif"
|
1168
|
+
}
|
1169
|
+
],
|
1170
|
+
"headersSize": 606,
|
1171
|
+
"bodySize": -1
|
1172
|
+
},
|
1173
|
+
"response": {
|
1174
|
+
"status": 200,
|
1175
|
+
"statusText": "OK",
|
1176
|
+
"httpVersion": "HTTP/1.1",
|
1177
|
+
"cookies": [
|
1178
|
+
],
|
1179
|
+
"headers": [
|
1180
|
+
{
|
1181
|
+
"name": "Date",
|
1182
|
+
"value": "Sat, 02 Jan 2010 14:39:50 GMT"
|
1183
|
+
},
|
1184
|
+
{
|
1185
|
+
"name": "Server",
|
1186
|
+
"value": "Apache"
|
1187
|
+
},
|
1188
|
+
{
|
1189
|
+
"name": "Expires",
|
1190
|
+
"value": "Mon, 01 Feb 2010 14:39:52 GMT"
|
1191
|
+
},
|
1192
|
+
{
|
1193
|
+
"name": "Cache-Control",
|
1194
|
+
"value": "public, max-age=2592000"
|
1195
|
+
},
|
1196
|
+
{
|
1197
|
+
"name": "Last-Modified",
|
1198
|
+
"value": "Sun, 15 Jan 2006 12:00:00 GMT"
|
1199
|
+
},
|
1200
|
+
{
|
1201
|
+
"name": "Content-Length",
|
1202
|
+
"value": "1076"
|
1203
|
+
},
|
1204
|
+
{
|
1205
|
+
"name": "Keep-Alive",
|
1206
|
+
"value": "timeout=2, max=99"
|
1207
|
+
},
|
1208
|
+
{
|
1209
|
+
"name": "Connection",
|
1210
|
+
"value": "Keep-Alive"
|
1211
|
+
},
|
1212
|
+
{
|
1213
|
+
"name": "Content-Type",
|
1214
|
+
"value": "image/gif"
|
1215
|
+
}
|
1216
|
+
],
|
1217
|
+
"content": {
|
1218
|
+
"size": 1076,
|
1219
|
+
"mimeType": "image/gif"
|
1220
|
+
},
|
1221
|
+
"redirectURL": "",
|
1222
|
+
"headersSize": 300,
|
1223
|
+
"bodySize": 1076
|
1224
|
+
},
|
1225
|
+
"cache": {
|
1226
|
+
},
|
1227
|
+
"timings": {
|
1228
|
+
"dns": 0,
|
1229
|
+
"connect": 0,
|
1230
|
+
"blocked": 2439,
|
1231
|
+
"send": 0,
|
1232
|
+
"wait": 2213,
|
1233
|
+
"receive": 0
|
1234
|
+
}
|
1235
|
+
},
|
1236
|
+
{
|
1237
|
+
"pageref": "page_12043",
|
1238
|
+
"startedDateTime": "2010-01-02T16:40:21.935+01:00",
|
1239
|
+
"time": 438,
|
1240
|
+
"request": {
|
1241
|
+
"method": "GET",
|
1242
|
+
"url": "http://stevesouders.com/cuzillion/?c0=bi1hfff2_0_f&c1=bi1hfff2_0_f&c2=bi1hfff2_0_f&c3=bi1hfff2_0_f&c4=bi1hfff2_0_f&c5=bi1hfff2_0_f&c6=bi1hfff2_0_f&c7=bi1hfff2_0_f&t=1258547264277",
|
1243
|
+
"httpVersion": "HTTP/1.1",
|
1244
|
+
"cookies": [
|
1245
|
+
],
|
1246
|
+
"headers": [
|
1247
|
+
{
|
1248
|
+
"name": "Host",
|
1249
|
+
"value": "stevesouders.com"
|
1250
|
+
},
|
1251
|
+
{
|
1252
|
+
"name": "User-Agent",
|
1253
|
+
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2b6pre) Gecko/20091230 Namoroka/3.6b6pre (.NET CLR 3.5.30729)"
|
1254
|
+
},
|
1255
|
+
{
|
1256
|
+
"name": "Accept",
|
1257
|
+
"value": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
|
1258
|
+
},
|
1259
|
+
{
|
1260
|
+
"name": "Accept-Language",
|
1261
|
+
"value": "en-us,en;q=0.5"
|
1262
|
+
},
|
1263
|
+
{
|
1264
|
+
"name": "Accept-Encoding",
|
1265
|
+
"value": "gzip,deflate"
|
1266
|
+
},
|
1267
|
+
{
|
1268
|
+
"name": "Accept-Charset",
|
1269
|
+
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
1270
|
+
},
|
1271
|
+
{
|
1272
|
+
"name": "Keep-Alive",
|
1273
|
+
"value": "115"
|
1274
|
+
},
|
1275
|
+
{
|
1276
|
+
"name": "Connection",
|
1277
|
+
"value": "keep-alive"
|
1278
|
+
}
|
1279
|
+
],
|
1280
|
+
"queryString": [
|
1281
|
+
{
|
1282
|
+
"name": "c0",
|
1283
|
+
"value": "bi1hfff2_0_f"
|
1284
|
+
},
|
1285
|
+
{
|
1286
|
+
"name": "c1",
|
1287
|
+
"value": "bi1hfff2_0_f"
|
1288
|
+
},
|
1289
|
+
{
|
1290
|
+
"name": "c2",
|
1291
|
+
"value": "bi1hfff2_0_f"
|
1292
|
+
},
|
1293
|
+
{
|
1294
|
+
"name": "c3",
|
1295
|
+
"value": "bi1hfff2_0_f"
|
1296
|
+
},
|
1297
|
+
{
|
1298
|
+
"name": "c4",
|
1299
|
+
"value": "bi1hfff2_0_f"
|
1300
|
+
},
|
1301
|
+
{
|
1302
|
+
"name": "c5",
|
1303
|
+
"value": "bi1hfff2_0_f"
|
1304
|
+
},
|
1305
|
+
{
|
1306
|
+
"name": "c6",
|
1307
|
+
"value": "bi1hfff2_0_f"
|
1308
|
+
},
|
1309
|
+
{
|
1310
|
+
"name": "c7",
|
1311
|
+
"value": "bi1hfff2_0_f"
|
1312
|
+
},
|
1313
|
+
{
|
1314
|
+
"name": "t",
|
1315
|
+
"value": "1258547264277"
|
1316
|
+
}
|
1317
|
+
],
|
1318
|
+
"headersSize": 552,
|
1319
|
+
"bodySize": -1
|
1320
|
+
},
|
1321
|
+
"response": {
|
1322
|
+
"status": 200,
|
1323
|
+
"statusText": "OK",
|
1324
|
+
"httpVersion": "HTTP/1.1",
|
1325
|
+
"cookies": [
|
1326
|
+
],
|
1327
|
+
"headers": [
|
1328
|
+
{
|
1329
|
+
"name": "Date",
|
1330
|
+
"value": "Sat, 02 Jan 2010 15:40:27 GMT"
|
1331
|
+
},
|
1332
|
+
{
|
1333
|
+
"name": "Server",
|
1334
|
+
"value": "Apache"
|
1335
|
+
},
|
1336
|
+
{
|
1337
|
+
"name": "X-Powered-By",
|
1338
|
+
"value": "PHP/5.2.3"
|
1339
|
+
},
|
1340
|
+
{
|
1341
|
+
"name": "Vary",
|
1342
|
+
"value": "Accept-Encoding"
|
1343
|
+
},
|
1344
|
+
{
|
1345
|
+
"name": "Content-Encoding",
|
1346
|
+
"value": "gzip"
|
1347
|
+
},
|
1348
|
+
{
|
1349
|
+
"name": "Content-Length",
|
1350
|
+
"value": "2439"
|
1351
|
+
},
|
1352
|
+
{
|
1353
|
+
"name": "Keep-Alive",
|
1354
|
+
"value": "timeout=2, max=100"
|
1355
|
+
},
|
1356
|
+
{
|
1357
|
+
"name": "Connection",
|
1358
|
+
"value": "Keep-Alive"
|
1359
|
+
},
|
1360
|
+
{
|
1361
|
+
"name": "Content-Type",
|
1362
|
+
"value": "text/html"
|
1363
|
+
}
|
1364
|
+
],
|
1365
|
+
"content": {
|
1366
|
+
"size": 11576,
|
1367
|
+
"mimeType": "text/html",
|
1368
|
+
"text": "\n<script>\nvar gTop = Number(new Date());\nvar gScriptMsg = \"\";\nfunction cuz_addHandler(elem, sType, fn, capture) {\n capture = (capture) ? true : false;\n if (elem.addEventListener) {\n elem.addEventListener(sType, fn, capture);\n }\n else if (elem.attachEvent) {\n elem.attachEvent(\"on\" + sType, fn);\n }\n else {\n // Netscape 4\n if ( elem[\"on\" + sType] ) {\n // Do nothing - we don't want to overwrite an existing handler.\n }\n else {\n elem[\"on\" + sType] = fn;\n }\n }\n}\nfunction doOnload() {\n\tvar end = Number(new Date());\n document.getElementById('loadtime').innerHTML = 'page load time: ' + (end - gTop) + ' ms';\n\tif ( gScriptMsg && document.getElementById('loadedscripts') ) {\n\t\tdocument.getElementById('loadedscripts').innerHTML += gScriptMsg;\n\t}\n}\ncuz_addHandler(window, 'load', doOnload);\nvar gbEnabled = false;\nfunction enableEdit() {\n\tif ( gbEnabled ) return;\n\tgbEnabled = true;\n\taddStylesheet('cuzillion.1.1.css');\n\taddScript('cuzillion.1.5.js');\n}\nfunction addStylesheet(url) {\n\tvar stylesheet = document.createElement('link');\n\tstylesheet.rel = 'stylesheet';\n\tstylesheet.type = 'text/css';\n\tstylesheet.href = url;\n\tdocument.getElementsByTagName('head')[0].appendChild(stylesheet);\n}\nfunction addScript(url) {\n\tvar script = document.createElement('script');\n\tscript.src = url;\n\tdocument.getElementsByTagName('head')[0].appendChild(script);\n}\nfunction scriptSleepOnload(sUrl) {\n\tvar now = Number(new Date());\n\tvar msg = \"<nobr>\" + (now - gTop) + \"ms: \\\"\" + sUrl + \"\\\" done</nobr>\\n\";\n\tif ( document.getElementById('loadedscripts') ) {\n\t\tdocument.getElementById('loadedscripts').innerHTML += msg;\n\t}\n\telse {\n\t\tgScriptMsg += msg;\n\t}\n}\nfunction reloadPage(url) {\n\tdocument.body.innerHTML = '';\n\tdocument.location = url;\n}\nfunction cleanText(sText) {\n return sText.replace(/<.*?>/g, '');\n}\n</script>\n<html>\n<head>\n<title>Cuzillion</title>\n<link rel=\"icon\" href=\"favicon.ico\" type=\"image/x-icon\">\n<!--\nCopyright 2008 Google Inc.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n</head>\n\n<body style='margin: 0px; padding: 0px; font-family: \"Trebuchet MS\", \"Bitstream Vera Serif\", Utopia, \"Times New Roman\", times, serif;'>\n\n<div style=\"background: #333; color: white; padding: 8px;\">\n <div style=\"float:right; margin-top: 2px;\">\n <a href=\"help.php#examples\" style=\"color: white; font-size: 0.9em; text-decoration: none;\">Examples</a> | <a href=\"help.php\" style=\"color: white; font-size: 0.9em; text-decoration: none;\">Help</a><br><a href=\"http://stevesouders.com/\" style=\"color: white; font-size: 0.9em; text-decoration: none;\">stevesouders.com</a>\n </div>\n <font style=\"font-size: 2em; font-weight: bold; margin-right: 10px;\"><a href=\".\" style=\"color:white; text-decoration: none;\"><img border=0 src=\"logo-32x32.gif\"> Cuzillion</a></font><i>'cuz there are a zillion pages to check</i>\n</div>\n\n<div id=content style=\"margin: 8px;\">\n\n\n<!-- begin resources for inbody -->\n<!-- image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags -->\n<img src='http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=1&t=1262446827'>\n\n<!-- image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags -->\n<img src='http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=2&t=1262446827'>\n\n<!-- image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags -->\n<img src='http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=3&t=1262446827'>\n\n<!-- image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags -->\n<img src='http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=4&t=1262446827'>\n\n<!-- image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags -->\n<img src='http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=5&t=1262446827'>\n\n<!-- image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags -->\n<img src='http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=6&t=1262446827'>\n\n<!-- image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags -->\n<img src='http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=7&t=1262446827'>\n\n<!-- image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags -->\n<img src='http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=8&t=1262446827'>\n\n<!-- end resources for inbody -->\n\n<div id=floattray style=\"float: left; width: 170px; margin-right: 30px;\">\n <div id=step1text style=\"text-align: left; margin: 0 0 4px 4px; height: 50px; padding-top: 12px;\"></div>\n <div id=comptray>\n \n </div>\n</div>\n\n<div id=pageavatar style=\"float: left; width: 310px; margin-right: 30px;\">\n <div id=step2text style=\"text-align: left; margin: 0 0 4px 4px; height: 50px; padding-top: 12px;\"></div>\n <div style=\"background: #CCC; border: 1px solid black; \">\n <code style=\"font-size: 1.2em; font-weight: bold; color: #666666; display: block;\"><HTML></code>\n <code style=\"font-size: 1.2em; font-weight: bold; color: #666666; display: block;\"><HEAD></code>\n <div class=\"drop\" style=\"border: 1px solid #EEE; background: #EEE; padding: 12px 0 12px 0; width: 300px; margin: 0 0 0 4px;\">\n\t <ul style=\"margin: 0; padding: 0;\" id=inhead></ul>\n\t <div id=inheadTarget></div>\n\t</div>\n <code style=\"font-size: 1.2em; font-weight: bold; color: #666666; display: block;\"></HEAD></code>\n <code style=\"font-size: 1.2em; font-weight: bold; color: #666666; display: block;\"><BODY></code>\n <div class=\"drop\" style=\"border: 1px solid #EEE; background: #EEE; padding: 12px 0 12px 0; width: 300px; margin: 0 0 0 4px;\">\n\t <ul style=\"margin: 0; padding: 0;\" id=inbody><li onclick='enableEdit()' id='acomp1' class='sortitem image' style='cursor: move; list-style: none; border-width: 2px; border-style: solid; border-color: #555; margin: 4px;'><div id=acomp1Div class='component image' style='padding: 2px; font-family: Arial; text-align: center; display: block; text-decoration: none; color: white; background: #000080; text-align: left;'><span>image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags</span></div>\n<li onclick='enableEdit()' id='acomp2' class='sortitem image' style='cursor: move; list-style: none; border-width: 2px; border-style: solid; border-color: #555; margin: 4px;'><div id=acomp2Div class='component image' style='padding: 2px; font-family: Arial; text-align: center; display: block; text-decoration: none; color: white; background: #000080; text-align: left;'><span>image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags</span></div>\n<li onclick='enableEdit()' id='acomp3' class='sortitem image' style='cursor: move; list-style: none; border-width: 2px; border-style: solid; border-color: #555; margin: 4px;'><div id=acomp3Div class='component image' style='padding: 2px; font-family: Arial; text-align: center; display: block; text-decoration: none; color: white; background: #000080; text-align: left;'><span>image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags</span></div>\n<li onclick='enableEdit()' id='acomp4' class='sortitem image' style='cursor: move; list-style: none; border-width: 2px; border-style: solid; border-color: #555; margin: 4px;'><div id=acomp4Div class='component image' style='padding: 2px; font-family: Arial; text-align: center; display: block; text-decoration: none; color: white; background: #000080; text-align: left;'><span>image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags</span></div>\n<li onclick='enableEdit()' id='acomp5' class='sortitem image' style='cursor: move; list-style: none; border-width: 2px; border-style: solid; border-color: #555; margin: 4px;'><div id=acomp5Div class='component image' style='padding: 2px; font-family: Arial; text-align: center; display: block; text-decoration: none; color: white; background: #000080; text-align: left;'><span>image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags</span></div>\n<li onclick='enableEdit()' id='acomp6' class='sortitem image' style='cursor: move; list-style: none; border-width: 2px; border-style: solid; border-color: #555; margin: 4px;'><div id=acomp6Div class='component image' style='padding: 2px; font-family: Arial; text-align: center; display: block; text-decoration: none; color: white; background: #000080; text-align: left;'><span>image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags</span></div>\n<li onclick='enableEdit()' id='acomp7' class='sortitem image' style='cursor: move; list-style: none; border-width: 2px; border-style: solid; border-color: #555; margin: 4px;'><div id=acomp7Div class='component image' style='padding: 2px; font-family: Arial; text-align: center; display: block; text-decoration: none; color: white; background: #000080; text-align: left;'><span>image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags</span></div>\n<li onclick='enableEdit()' id='acomp8' class='sortitem image' style='cursor: move; list-style: none; border-width: 2px; border-style: solid; border-color: #555; margin: 4px;'><div id=acomp8Div class='component image' style='padding: 2px; font-family: Arial; text-align: center; display: block; text-decoration: none; color: white; background: #000080; text-align: left;'><span>image<p style='margin: 0 4px 4px 12px; font-size: 0.8em;'> on domain1 with a 2 second delay using HTML tags</span></div>\n</ul>\n\t <div id=inbodyTarget></div>\n\t</div>\n <code style=\"font-size: 1.2em; font-weight: bold; color: #666666; display: block;\"></BODY></code>\n <code style=\"font-size: 1.2em; font-weight: bold; color: #666666; display: block;\"></HTML></code>\n </div>\n <div id=loadtime style=\"text-align: left; margin-top: 10px;\"></div>\n <div id=loadedscripts style=\"text-align: left; margin-top: 10px; width: 300px; font-size: 0.9em;\"></div>\n</div> <!-- end pageavatar -->\n\n<div style=\"position: absolute; left: 560px;\">\n <div id=step3text style=\"text-align: left; margin: 0 0 4px 4px; height: 50px; padding-top: 12px;\"></div>\n <div id=pagesubmit style=\"text-align: left;\">\n<nobr>\n<input type=button value=\"Edit\" onclick=\"enableEdit()\"> \n<input type=button value=\"Reload\" onclick=\"reloadPage('/cuzillion/?c0=bi1hfff2_0_f&c1=bi1hfff2_0_f&c2=bi1hfff2_0_f&c3=bi1hfff2_0_f&c4=bi1hfff2_0_f&c5=bi1hfff2_0_f&c6=bi1hfff2_0_f&c7=bi1hfff2_0_f&t=1262446827')\"> \n<input type=button value=\"Clear\" onclick=\"document.location='.'\"> \n</nobr>\n </div>\n</div>\n\n<div style=\"clear: both;\">\n</div>\n\n</div> <!-- content -->\n\n\n\n</body>\n\n</html>\n"
|
1369
|
+
},
|
1370
|
+
"redirectURL": "",
|
1371
|
+
"headersSize": 247,
|
1372
|
+
"bodySize": 2439
|
1373
|
+
},
|
1374
|
+
"cache": {
|
1375
|
+
},
|
1376
|
+
"timings": {
|
1377
|
+
"dns": 0,
|
1378
|
+
"connect": 183,
|
1379
|
+
"blocked": 0,
|
1380
|
+
"send": 0,
|
1381
|
+
"wait": 255,
|
1382
|
+
"receive": 0
|
1383
|
+
}
|
1384
|
+
},
|
1385
|
+
{
|
1386
|
+
"pageref": "page_12043",
|
1387
|
+
"startedDateTime": "2010-01-02T16:40:22.403+01:00",
|
1388
|
+
"time": 200,
|
1389
|
+
"request": {
|
1390
|
+
"method": "GET",
|
1391
|
+
"url": "http://stevesouders.com/cuzillion/logo-32x32.gif",
|
1392
|
+
"httpVersion": "HTTP/1.1",
|
1393
|
+
"cookies": [
|
1394
|
+
],
|
1395
|
+
"headers": [
|
1396
|
+
{
|
1397
|
+
"name": "Host",
|
1398
|
+
"value": "stevesouders.com"
|
1399
|
+
},
|
1400
|
+
{
|
1401
|
+
"name": "User-Agent",
|
1402
|
+
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2b6pre) Gecko/20091230 Namoroka/3.6b6pre (.NET CLR 3.5.30729)"
|
1403
|
+
},
|
1404
|
+
{
|
1405
|
+
"name": "Accept",
|
1406
|
+
"value": "image/png,image/*;q=0.8,*/*;q=0.5"
|
1407
|
+
},
|
1408
|
+
{
|
1409
|
+
"name": "Accept-Language",
|
1410
|
+
"value": "en-us,en;q=0.5"
|
1411
|
+
},
|
1412
|
+
{
|
1413
|
+
"name": "Accept-Encoding",
|
1414
|
+
"value": "gzip,deflate"
|
1415
|
+
},
|
1416
|
+
{
|
1417
|
+
"name": "Accept-Charset",
|
1418
|
+
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
1419
|
+
},
|
1420
|
+
{
|
1421
|
+
"name": "Keep-Alive",
|
1422
|
+
"value": "115"
|
1423
|
+
},
|
1424
|
+
{
|
1425
|
+
"name": "Connection",
|
1426
|
+
"value": "keep-alive"
|
1427
|
+
},
|
1428
|
+
{
|
1429
|
+
"name": "Referer",
|
1430
|
+
"value": "http://stevesouders.com/cuzillion/?c0=bi1hfff2_0_f&c1=bi1hfff2_0_f&c2=bi1hfff2_0_f&c3=bi1hfff2_0_f&c4=bi1hfff2_0_f&c5=bi1hfff2_0_f&c6=bi1hfff2_0_f&c7=bi1hfff2_0_f&t=1258547264277"
|
1431
|
+
}
|
1432
|
+
],
|
1433
|
+
"queryString": [
|
1434
|
+
],
|
1435
|
+
"headersSize": 581,
|
1436
|
+
"bodySize": -1
|
1437
|
+
},
|
1438
|
+
"response": {
|
1439
|
+
"status": 200,
|
1440
|
+
"statusText": "OK",
|
1441
|
+
"httpVersion": "HTTP/1.1",
|
1442
|
+
"cookies": [
|
1443
|
+
],
|
1444
|
+
"headers": [
|
1445
|
+
{
|
1446
|
+
"name": "Date",
|
1447
|
+
"value": "Sat, 02 Jan 2010 15:40:27 GMT"
|
1448
|
+
},
|
1449
|
+
{
|
1450
|
+
"name": "Server",
|
1451
|
+
"value": "Apache"
|
1452
|
+
},
|
1453
|
+
{
|
1454
|
+
"name": "Last-Modified",
|
1455
|
+
"value": "Mon, 16 Nov 2009 20:19:20 GMT"
|
1456
|
+
},
|
1457
|
+
{
|
1458
|
+
"name": "Accept-Ranges",
|
1459
|
+
"value": "bytes"
|
1460
|
+
},
|
1461
|
+
{
|
1462
|
+
"name": "Content-Length",
|
1463
|
+
"value": "1057"
|
1464
|
+
},
|
1465
|
+
{
|
1466
|
+
"name": "Cache-Control",
|
1467
|
+
"value": "max-age=315360000"
|
1468
|
+
},
|
1469
|
+
{
|
1470
|
+
"name": "Expires",
|
1471
|
+
"value": "Tue, 31 Dec 2019 15:40:27 GMT"
|
1472
|
+
},
|
1473
|
+
{
|
1474
|
+
"name": "Keep-Alive",
|
1475
|
+
"value": "timeout=2, max=99"
|
1476
|
+
},
|
1477
|
+
{
|
1478
|
+
"name": "Connection",
|
1479
|
+
"value": "Keep-Alive"
|
1480
|
+
},
|
1481
|
+
{
|
1482
|
+
"name": "Content-Type",
|
1483
|
+
"value": "image/gif"
|
1484
|
+
}
|
1485
|
+
],
|
1486
|
+
"content": {
|
1487
|
+
"size": 1057,
|
1488
|
+
"mimeType": "image/gif"
|
1489
|
+
},
|
1490
|
+
"redirectURL": "",
|
1491
|
+
"headersSize": 316,
|
1492
|
+
"bodySize": 1057
|
1493
|
+
},
|
1494
|
+
"cache": {
|
1495
|
+
},
|
1496
|
+
"timings": {
|
1497
|
+
"dns": 0,
|
1498
|
+
"connect": 0,
|
1499
|
+
"blocked": 0,
|
1500
|
+
"send": 0,
|
1501
|
+
"wait": 192,
|
1502
|
+
"receive": 8
|
1503
|
+
}
|
1504
|
+
},
|
1505
|
+
{
|
1506
|
+
"pageref": "page_12043",
|
1507
|
+
"startedDateTime": "2010-01-02T16:40:22.403+01:00",
|
1508
|
+
"time": 2437,
|
1509
|
+
"request": {
|
1510
|
+
"method": "GET",
|
1511
|
+
"url": "http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=1&t=1262446827",
|
1512
|
+
"httpVersion": "HTTP/1.1",
|
1513
|
+
"cookies": [
|
1514
|
+
],
|
1515
|
+
"headers": [
|
1516
|
+
{
|
1517
|
+
"name": "Host",
|
1518
|
+
"value": "1.cuzillion.com"
|
1519
|
+
},
|
1520
|
+
{
|
1521
|
+
"name": "User-Agent",
|
1522
|
+
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2b6pre) Gecko/20091230 Namoroka/3.6b6pre (.NET CLR 3.5.30729)"
|
1523
|
+
},
|
1524
|
+
{
|
1525
|
+
"name": "Accept",
|
1526
|
+
"value": "image/png,image/*;q=0.8,*/*;q=0.5"
|
1527
|
+
},
|
1528
|
+
{
|
1529
|
+
"name": "Accept-Language",
|
1530
|
+
"value": "en-us,en;q=0.5"
|
1531
|
+
},
|
1532
|
+
{
|
1533
|
+
"name": "Accept-Encoding",
|
1534
|
+
"value": "gzip,deflate"
|
1535
|
+
},
|
1536
|
+
{
|
1537
|
+
"name": "Accept-Charset",
|
1538
|
+
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
1539
|
+
},
|
1540
|
+
{
|
1541
|
+
"name": "Keep-Alive",
|
1542
|
+
"value": "115"
|
1543
|
+
},
|
1544
|
+
{
|
1545
|
+
"name": "Connection",
|
1546
|
+
"value": "keep-alive"
|
1547
|
+
},
|
1548
|
+
{
|
1549
|
+
"name": "Referer",
|
1550
|
+
"value": "http://stevesouders.com/cuzillion/?c0=bi1hfff2_0_f&c1=bi1hfff2_0_f&c2=bi1hfff2_0_f&c3=bi1hfff2_0_f&c4=bi1hfff2_0_f&c5=bi1hfff2_0_f&c6=bi1hfff2_0_f&c7=bi1hfff2_0_f&t=1258547264277"
|
1551
|
+
}
|
1552
|
+
],
|
1553
|
+
"queryString": [
|
1554
|
+
{
|
1555
|
+
"name": "n",
|
1556
|
+
"value": "1"
|
1557
|
+
},
|
1558
|
+
{
|
1559
|
+
"name": "sleep",
|
1560
|
+
"value": "2"
|
1561
|
+
},
|
1562
|
+
{
|
1563
|
+
"name": "t",
|
1564
|
+
"value": "1262446827"
|
1565
|
+
},
|
1566
|
+
{
|
1567
|
+
"name": "type",
|
1568
|
+
"value": "gif"
|
1569
|
+
}
|
1570
|
+
],
|
1571
|
+
"headersSize": 606,
|
1572
|
+
"bodySize": -1
|
1573
|
+
},
|
1574
|
+
"response": {
|
1575
|
+
"status": 200,
|
1576
|
+
"statusText": "OK",
|
1577
|
+
"httpVersion": "HTTP/1.1",
|
1578
|
+
"cookies": [
|
1579
|
+
],
|
1580
|
+
"headers": [
|
1581
|
+
{
|
1582
|
+
"name": "Date",
|
1583
|
+
"value": "Sat, 02 Jan 2010 15:40:28 GMT"
|
1584
|
+
},
|
1585
|
+
{
|
1586
|
+
"name": "Server",
|
1587
|
+
"value": "Apache"
|
1588
|
+
},
|
1589
|
+
{
|
1590
|
+
"name": "Expires",
|
1591
|
+
"value": "Mon, 01 Feb 2010 15:40:30 GMT"
|
1592
|
+
},
|
1593
|
+
{
|
1594
|
+
"name": "Cache-Control",
|
1595
|
+
"value": "public, max-age=2592000"
|
1596
|
+
},
|
1597
|
+
{
|
1598
|
+
"name": "Last-Modified",
|
1599
|
+
"value": "Sun, 15 Jan 2006 12:00:00 GMT"
|
1600
|
+
},
|
1601
|
+
{
|
1602
|
+
"name": "Content-Length",
|
1603
|
+
"value": "1076"
|
1604
|
+
},
|
1605
|
+
{
|
1606
|
+
"name": "Keep-Alive",
|
1607
|
+
"value": "timeout=2, max=100"
|
1608
|
+
},
|
1609
|
+
{
|
1610
|
+
"name": "Connection",
|
1611
|
+
"value": "Keep-Alive"
|
1612
|
+
},
|
1613
|
+
{
|
1614
|
+
"name": "Content-Type",
|
1615
|
+
"value": "image/gif"
|
1616
|
+
}
|
1617
|
+
],
|
1618
|
+
"content": {
|
1619
|
+
"size": 1076,
|
1620
|
+
"mimeType": "image/gif"
|
1621
|
+
},
|
1622
|
+
"redirectURL": "",
|
1623
|
+
"headersSize": 301,
|
1624
|
+
"bodySize": 1076
|
1625
|
+
},
|
1626
|
+
"cache": {
|
1627
|
+
},
|
1628
|
+
"timings": {
|
1629
|
+
"dns": 2,
|
1630
|
+
"connect": 188,
|
1631
|
+
"blocked": 0,
|
1632
|
+
"send": 0,
|
1633
|
+
"wait": 2247,
|
1634
|
+
"receive": 0
|
1635
|
+
}
|
1636
|
+
},
|
1637
|
+
{
|
1638
|
+
"pageref": "page_12043",
|
1639
|
+
"startedDateTime": "2010-01-02T16:40:22.405+01:00",
|
1640
|
+
"time": 2418,
|
1641
|
+
"request": {
|
1642
|
+
"method": "GET",
|
1643
|
+
"url": "http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=2&t=1262446827",
|
1644
|
+
"httpVersion": "HTTP/1.1",
|
1645
|
+
"cookies": [
|
1646
|
+
],
|
1647
|
+
"headers": [
|
1648
|
+
{
|
1649
|
+
"name": "Host",
|
1650
|
+
"value": "1.cuzillion.com"
|
1651
|
+
},
|
1652
|
+
{
|
1653
|
+
"name": "User-Agent",
|
1654
|
+
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2b6pre) Gecko/20091230 Namoroka/3.6b6pre (.NET CLR 3.5.30729)"
|
1655
|
+
},
|
1656
|
+
{
|
1657
|
+
"name": "Accept",
|
1658
|
+
"value": "image/png,image/*;q=0.8,*/*;q=0.5"
|
1659
|
+
},
|
1660
|
+
{
|
1661
|
+
"name": "Accept-Language",
|
1662
|
+
"value": "en-us,en;q=0.5"
|
1663
|
+
},
|
1664
|
+
{
|
1665
|
+
"name": "Accept-Encoding",
|
1666
|
+
"value": "gzip,deflate"
|
1667
|
+
},
|
1668
|
+
{
|
1669
|
+
"name": "Accept-Charset",
|
1670
|
+
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
1671
|
+
},
|
1672
|
+
{
|
1673
|
+
"name": "Keep-Alive",
|
1674
|
+
"value": "115"
|
1675
|
+
},
|
1676
|
+
{
|
1677
|
+
"name": "Connection",
|
1678
|
+
"value": "keep-alive"
|
1679
|
+
},
|
1680
|
+
{
|
1681
|
+
"name": "Referer",
|
1682
|
+
"value": "http://stevesouders.com/cuzillion/?c0=bi1hfff2_0_f&c1=bi1hfff2_0_f&c2=bi1hfff2_0_f&c3=bi1hfff2_0_f&c4=bi1hfff2_0_f&c5=bi1hfff2_0_f&c6=bi1hfff2_0_f&c7=bi1hfff2_0_f&t=1258547264277"
|
1683
|
+
}
|
1684
|
+
],
|
1685
|
+
"queryString": [
|
1686
|
+
{
|
1687
|
+
"name": "n",
|
1688
|
+
"value": "2"
|
1689
|
+
},
|
1690
|
+
{
|
1691
|
+
"name": "sleep",
|
1692
|
+
"value": "2"
|
1693
|
+
},
|
1694
|
+
{
|
1695
|
+
"name": "t",
|
1696
|
+
"value": "1262446827"
|
1697
|
+
},
|
1698
|
+
{
|
1699
|
+
"name": "type",
|
1700
|
+
"value": "gif"
|
1701
|
+
}
|
1702
|
+
],
|
1703
|
+
"headersSize": 606,
|
1704
|
+
"bodySize": -1
|
1705
|
+
},
|
1706
|
+
"response": {
|
1707
|
+
"status": 200,
|
1708
|
+
"statusText": "OK",
|
1709
|
+
"httpVersion": "HTTP/1.1",
|
1710
|
+
"cookies": [
|
1711
|
+
],
|
1712
|
+
"headers": [
|
1713
|
+
{
|
1714
|
+
"name": "Date",
|
1715
|
+
"value": "Sat, 02 Jan 2010 15:40:28 GMT"
|
1716
|
+
},
|
1717
|
+
{
|
1718
|
+
"name": "Server",
|
1719
|
+
"value": "Apache"
|
1720
|
+
},
|
1721
|
+
{
|
1722
|
+
"name": "Expires",
|
1723
|
+
"value": "Mon, 01 Feb 2010 15:40:30 GMT"
|
1724
|
+
},
|
1725
|
+
{
|
1726
|
+
"name": "Cache-Control",
|
1727
|
+
"value": "public, max-age=2592000"
|
1728
|
+
},
|
1729
|
+
{
|
1730
|
+
"name": "Last-Modified",
|
1731
|
+
"value": "Sun, 15 Jan 2006 12:00:00 GMT"
|
1732
|
+
},
|
1733
|
+
{
|
1734
|
+
"name": "Content-Length",
|
1735
|
+
"value": "492"
|
1736
|
+
},
|
1737
|
+
{
|
1738
|
+
"name": "Keep-Alive",
|
1739
|
+
"value": "timeout=2, max=100"
|
1740
|
+
},
|
1741
|
+
{
|
1742
|
+
"name": "Connection",
|
1743
|
+
"value": "Keep-Alive"
|
1744
|
+
},
|
1745
|
+
{
|
1746
|
+
"name": "Content-Type",
|
1747
|
+
"value": "image/gif"
|
1748
|
+
}
|
1749
|
+
],
|
1750
|
+
"content": {
|
1751
|
+
"size": 492,
|
1752
|
+
"mimeType": "image/gif"
|
1753
|
+
},
|
1754
|
+
"redirectURL": "",
|
1755
|
+
"headersSize": 300,
|
1756
|
+
"bodySize": 492
|
1757
|
+
},
|
1758
|
+
"cache": {
|
1759
|
+
},
|
1760
|
+
"timings": {
|
1761
|
+
"dns": 0,
|
1762
|
+
"connect": 190,
|
1763
|
+
"blocked": 3,
|
1764
|
+
"send": 0,
|
1765
|
+
"wait": 2225,
|
1766
|
+
"receive": 0
|
1767
|
+
}
|
1768
|
+
},
|
1769
|
+
{
|
1770
|
+
"pageref": "page_12043",
|
1771
|
+
"startedDateTime": "2010-01-02T16:40:22.405+01:00",
|
1772
|
+
"time": 4633,
|
1773
|
+
"request": {
|
1774
|
+
"method": "GET",
|
1775
|
+
"url": "http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=3&t=1262446827",
|
1776
|
+
"httpVersion": "HTTP/1.1",
|
1777
|
+
"cookies": [
|
1778
|
+
],
|
1779
|
+
"headers": [
|
1780
|
+
{
|
1781
|
+
"name": "Host",
|
1782
|
+
"value": "1.cuzillion.com"
|
1783
|
+
},
|
1784
|
+
{
|
1785
|
+
"name": "User-Agent",
|
1786
|
+
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2b6pre) Gecko/20091230 Namoroka/3.6b6pre (.NET CLR 3.5.30729)"
|
1787
|
+
},
|
1788
|
+
{
|
1789
|
+
"name": "Accept",
|
1790
|
+
"value": "image/png,image/*;q=0.8,*/*;q=0.5"
|
1791
|
+
},
|
1792
|
+
{
|
1793
|
+
"name": "Accept-Language",
|
1794
|
+
"value": "en-us,en;q=0.5"
|
1795
|
+
},
|
1796
|
+
{
|
1797
|
+
"name": "Accept-Encoding",
|
1798
|
+
"value": "gzip,deflate"
|
1799
|
+
},
|
1800
|
+
{
|
1801
|
+
"name": "Accept-Charset",
|
1802
|
+
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
1803
|
+
},
|
1804
|
+
{
|
1805
|
+
"name": "Keep-Alive",
|
1806
|
+
"value": "115"
|
1807
|
+
},
|
1808
|
+
{
|
1809
|
+
"name": "Connection",
|
1810
|
+
"value": "keep-alive"
|
1811
|
+
},
|
1812
|
+
{
|
1813
|
+
"name": "Referer",
|
1814
|
+
"value": "http://stevesouders.com/cuzillion/?c0=bi1hfff2_0_f&c1=bi1hfff2_0_f&c2=bi1hfff2_0_f&c3=bi1hfff2_0_f&c4=bi1hfff2_0_f&c5=bi1hfff2_0_f&c6=bi1hfff2_0_f&c7=bi1hfff2_0_f&t=1258547264277"
|
1815
|
+
}
|
1816
|
+
],
|
1817
|
+
"queryString": [
|
1818
|
+
{
|
1819
|
+
"name": "n",
|
1820
|
+
"value": "3"
|
1821
|
+
},
|
1822
|
+
{
|
1823
|
+
"name": "sleep",
|
1824
|
+
"value": "2"
|
1825
|
+
},
|
1826
|
+
{
|
1827
|
+
"name": "t",
|
1828
|
+
"value": "1262446827"
|
1829
|
+
},
|
1830
|
+
{
|
1831
|
+
"name": "type",
|
1832
|
+
"value": "gif"
|
1833
|
+
}
|
1834
|
+
],
|
1835
|
+
"headersSize": 606,
|
1836
|
+
"bodySize": -1
|
1837
|
+
},
|
1838
|
+
"response": {
|
1839
|
+
"status": 200,
|
1840
|
+
"statusText": "OK",
|
1841
|
+
"httpVersion": "HTTP/1.1",
|
1842
|
+
"cookies": [
|
1843
|
+
],
|
1844
|
+
"headers": [
|
1845
|
+
{
|
1846
|
+
"name": "Date",
|
1847
|
+
"value": "Sat, 02 Jan 2010 15:40:30 GMT"
|
1848
|
+
},
|
1849
|
+
{
|
1850
|
+
"name": "Server",
|
1851
|
+
"value": "Apache"
|
1852
|
+
},
|
1853
|
+
{
|
1854
|
+
"name": "Expires",
|
1855
|
+
"value": "Mon, 01 Feb 2010 15:40:32 GMT"
|
1856
|
+
},
|
1857
|
+
{
|
1858
|
+
"name": "Cache-Control",
|
1859
|
+
"value": "public, max-age=2592000"
|
1860
|
+
},
|
1861
|
+
{
|
1862
|
+
"name": "Last-Modified",
|
1863
|
+
"value": "Sun, 15 Jan 2006 12:00:00 GMT"
|
1864
|
+
},
|
1865
|
+
{
|
1866
|
+
"name": "Keep-Alive",
|
1867
|
+
"value": "timeout=2, max=99"
|
1868
|
+
},
|
1869
|
+
{
|
1870
|
+
"name": "Connection",
|
1871
|
+
"value": "Keep-Alive"
|
1872
|
+
},
|
1873
|
+
{
|
1874
|
+
"name": "Transfer-Encoding",
|
1875
|
+
"value": "chunked"
|
1876
|
+
},
|
1877
|
+
{
|
1878
|
+
"name": "Content-Type",
|
1879
|
+
"value": "image/gif"
|
1880
|
+
}
|
1881
|
+
],
|
1882
|
+
"content": {
|
1883
|
+
"size": 1334,
|
1884
|
+
"mimeType": "image/gif"
|
1885
|
+
},
|
1886
|
+
"redirectURL": "",
|
1887
|
+
"headersSize": 306,
|
1888
|
+
"bodySize": 1334
|
1889
|
+
},
|
1890
|
+
"cache": {
|
1891
|
+
},
|
1892
|
+
"timings": {
|
1893
|
+
"dns": 0,
|
1894
|
+
"connect": 0,
|
1895
|
+
"blocked": 2418,
|
1896
|
+
"send": 0,
|
1897
|
+
"wait": 2215,
|
1898
|
+
"receive": 0
|
1899
|
+
}
|
1900
|
+
},
|
1901
|
+
{
|
1902
|
+
"pageref": "page_12043",
|
1903
|
+
"startedDateTime": "2010-01-02T16:40:22.408+01:00",
|
1904
|
+
"time": 4645,
|
1905
|
+
"request": {
|
1906
|
+
"method": "GET",
|
1907
|
+
"url": "http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=4&t=1262446827",
|
1908
|
+
"httpVersion": "HTTP/1.1",
|
1909
|
+
"cookies": [
|
1910
|
+
],
|
1911
|
+
"headers": [
|
1912
|
+
{
|
1913
|
+
"name": "Host",
|
1914
|
+
"value": "1.cuzillion.com"
|
1915
|
+
},
|
1916
|
+
{
|
1917
|
+
"name": "User-Agent",
|
1918
|
+
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2b6pre) Gecko/20091230 Namoroka/3.6b6pre (.NET CLR 3.5.30729)"
|
1919
|
+
},
|
1920
|
+
{
|
1921
|
+
"name": "Accept",
|
1922
|
+
"value": "image/png,image/*;q=0.8,*/*;q=0.5"
|
1923
|
+
},
|
1924
|
+
{
|
1925
|
+
"name": "Accept-Language",
|
1926
|
+
"value": "en-us,en;q=0.5"
|
1927
|
+
},
|
1928
|
+
{
|
1929
|
+
"name": "Accept-Encoding",
|
1930
|
+
"value": "gzip,deflate"
|
1931
|
+
},
|
1932
|
+
{
|
1933
|
+
"name": "Accept-Charset",
|
1934
|
+
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
1935
|
+
},
|
1936
|
+
{
|
1937
|
+
"name": "Keep-Alive",
|
1938
|
+
"value": "115"
|
1939
|
+
},
|
1940
|
+
{
|
1941
|
+
"name": "Connection",
|
1942
|
+
"value": "keep-alive"
|
1943
|
+
},
|
1944
|
+
{
|
1945
|
+
"name": "Referer",
|
1946
|
+
"value": "http://stevesouders.com/cuzillion/?c0=bi1hfff2_0_f&c1=bi1hfff2_0_f&c2=bi1hfff2_0_f&c3=bi1hfff2_0_f&c4=bi1hfff2_0_f&c5=bi1hfff2_0_f&c6=bi1hfff2_0_f&c7=bi1hfff2_0_f&t=1258547264277"
|
1947
|
+
}
|
1948
|
+
],
|
1949
|
+
"queryString": [
|
1950
|
+
{
|
1951
|
+
"name": "n",
|
1952
|
+
"value": "4"
|
1953
|
+
},
|
1954
|
+
{
|
1955
|
+
"name": "sleep",
|
1956
|
+
"value": "2"
|
1957
|
+
},
|
1958
|
+
{
|
1959
|
+
"name": "t",
|
1960
|
+
"value": "1262446827"
|
1961
|
+
},
|
1962
|
+
{
|
1963
|
+
"name": "type",
|
1964
|
+
"value": "gif"
|
1965
|
+
}
|
1966
|
+
],
|
1967
|
+
"headersSize": 606,
|
1968
|
+
"bodySize": -1
|
1969
|
+
},
|
1970
|
+
"response": {
|
1971
|
+
"status": 200,
|
1972
|
+
"statusText": "OK",
|
1973
|
+
"httpVersion": "HTTP/1.1",
|
1974
|
+
"cookies": [
|
1975
|
+
],
|
1976
|
+
"headers": [
|
1977
|
+
{
|
1978
|
+
"name": "Date",
|
1979
|
+
"value": "Sat, 02 Jan 2010 15:40:30 GMT"
|
1980
|
+
},
|
1981
|
+
{
|
1982
|
+
"name": "Server",
|
1983
|
+
"value": "Apache"
|
1984
|
+
},
|
1985
|
+
{
|
1986
|
+
"name": "Expires",
|
1987
|
+
"value": "Mon, 01 Feb 2010 15:40:32 GMT"
|
1988
|
+
},
|
1989
|
+
{
|
1990
|
+
"name": "Cache-Control",
|
1991
|
+
"value": "public, max-age=2592000"
|
1992
|
+
},
|
1993
|
+
{
|
1994
|
+
"name": "Last-Modified",
|
1995
|
+
"value": "Sun, 15 Jan 2006 12:00:00 GMT"
|
1996
|
+
},
|
1997
|
+
{
|
1998
|
+
"name": "Content-Length",
|
1999
|
+
"value": "1525"
|
2000
|
+
},
|
2001
|
+
{
|
2002
|
+
"name": "Keep-Alive",
|
2003
|
+
"value": "timeout=2, max=99"
|
2004
|
+
},
|
2005
|
+
{
|
2006
|
+
"name": "Connection",
|
2007
|
+
"value": "Keep-Alive"
|
2008
|
+
},
|
2009
|
+
{
|
2010
|
+
"name": "Content-Type",
|
2011
|
+
"value": "image/gif"
|
2012
|
+
}
|
2013
|
+
],
|
2014
|
+
"content": {
|
2015
|
+
"size": 1525,
|
2016
|
+
"mimeType": "image/gif"
|
2017
|
+
},
|
2018
|
+
"redirectURL": "",
|
2019
|
+
"headersSize": 300,
|
2020
|
+
"bodySize": 1525
|
2021
|
+
},
|
2022
|
+
"cache": {
|
2023
|
+
},
|
2024
|
+
"timings": {
|
2025
|
+
"dns": 0,
|
2026
|
+
"connect": 0,
|
2027
|
+
"blocked": 2435,
|
2028
|
+
"send": 0,
|
2029
|
+
"wait": 2210,
|
2030
|
+
"receive": 0
|
2031
|
+
}
|
2032
|
+
},
|
2033
|
+
{
|
2034
|
+
"pageref": "page_12043",
|
2035
|
+
"startedDateTime": "2010-01-02T16:40:22.408+01:00",
|
2036
|
+
"time": 6845,
|
2037
|
+
"request": {
|
2038
|
+
"method": "GET",
|
2039
|
+
"url": "http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=5&t=1262446827",
|
2040
|
+
"httpVersion": "HTTP/1.1",
|
2041
|
+
"cookies": [
|
2042
|
+
],
|
2043
|
+
"headers": [
|
2044
|
+
{
|
2045
|
+
"name": "Host",
|
2046
|
+
"value": "1.cuzillion.com"
|
2047
|
+
},
|
2048
|
+
{
|
2049
|
+
"name": "User-Agent",
|
2050
|
+
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2b6pre) Gecko/20091230 Namoroka/3.6b6pre (.NET CLR 3.5.30729)"
|
2051
|
+
},
|
2052
|
+
{
|
2053
|
+
"name": "Accept",
|
2054
|
+
"value": "image/png,image/*;q=0.8,*/*;q=0.5"
|
2055
|
+
},
|
2056
|
+
{
|
2057
|
+
"name": "Accept-Language",
|
2058
|
+
"value": "en-us,en;q=0.5"
|
2059
|
+
},
|
2060
|
+
{
|
2061
|
+
"name": "Accept-Encoding",
|
2062
|
+
"value": "gzip,deflate"
|
2063
|
+
},
|
2064
|
+
{
|
2065
|
+
"name": "Accept-Charset",
|
2066
|
+
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
2067
|
+
},
|
2068
|
+
{
|
2069
|
+
"name": "Keep-Alive",
|
2070
|
+
"value": "115"
|
2071
|
+
},
|
2072
|
+
{
|
2073
|
+
"name": "Connection",
|
2074
|
+
"value": "keep-alive"
|
2075
|
+
},
|
2076
|
+
{
|
2077
|
+
"name": "Referer",
|
2078
|
+
"value": "http://stevesouders.com/cuzillion/?c0=bi1hfff2_0_f&c1=bi1hfff2_0_f&c2=bi1hfff2_0_f&c3=bi1hfff2_0_f&c4=bi1hfff2_0_f&c5=bi1hfff2_0_f&c6=bi1hfff2_0_f&c7=bi1hfff2_0_f&t=1258547264277"
|
2079
|
+
}
|
2080
|
+
],
|
2081
|
+
"queryString": [
|
2082
|
+
{
|
2083
|
+
"name": "n",
|
2084
|
+
"value": "5"
|
2085
|
+
},
|
2086
|
+
{
|
2087
|
+
"name": "sleep",
|
2088
|
+
"value": "2"
|
2089
|
+
},
|
2090
|
+
{
|
2091
|
+
"name": "t",
|
2092
|
+
"value": "1262446827"
|
2093
|
+
},
|
2094
|
+
{
|
2095
|
+
"name": "type",
|
2096
|
+
"value": "gif"
|
2097
|
+
}
|
2098
|
+
],
|
2099
|
+
"headersSize": 606,
|
2100
|
+
"bodySize": -1
|
2101
|
+
},
|
2102
|
+
"response": {
|
2103
|
+
"status": 200,
|
2104
|
+
"statusText": "OK",
|
2105
|
+
"httpVersion": "HTTP/1.1",
|
2106
|
+
"cookies": [
|
2107
|
+
],
|
2108
|
+
"headers": [
|
2109
|
+
{
|
2110
|
+
"name": "Date",
|
2111
|
+
"value": "Sat, 02 Jan 2010 15:40:32 GMT"
|
2112
|
+
},
|
2113
|
+
{
|
2114
|
+
"name": "Server",
|
2115
|
+
"value": "Apache"
|
2116
|
+
},
|
2117
|
+
{
|
2118
|
+
"name": "Expires",
|
2119
|
+
"value": "Mon, 01 Feb 2010 15:40:34 GMT"
|
2120
|
+
},
|
2121
|
+
{
|
2122
|
+
"name": "Cache-Control",
|
2123
|
+
"value": "public, max-age=2592000"
|
2124
|
+
},
|
2125
|
+
{
|
2126
|
+
"name": "Last-Modified",
|
2127
|
+
"value": "Sun, 15 Jan 2006 12:00:00 GMT"
|
2128
|
+
},
|
2129
|
+
{
|
2130
|
+
"name": "Content-Length",
|
2131
|
+
"value": "1076"
|
2132
|
+
},
|
2133
|
+
{
|
2134
|
+
"name": "Keep-Alive",
|
2135
|
+
"value": "timeout=2, max=98"
|
2136
|
+
},
|
2137
|
+
{
|
2138
|
+
"name": "Connection",
|
2139
|
+
"value": "Keep-Alive"
|
2140
|
+
},
|
2141
|
+
{
|
2142
|
+
"name": "Content-Type",
|
2143
|
+
"value": "image/gif"
|
2144
|
+
}
|
2145
|
+
],
|
2146
|
+
"content": {
|
2147
|
+
"size": 1076,
|
2148
|
+
"mimeType": "image/gif"
|
2149
|
+
},
|
2150
|
+
"redirectURL": "",
|
2151
|
+
"headersSize": 300,
|
2152
|
+
"bodySize": 1076
|
2153
|
+
},
|
2154
|
+
"cache": {
|
2155
|
+
},
|
2156
|
+
"timings": {
|
2157
|
+
"dns": 0,
|
2158
|
+
"connect": 0,
|
2159
|
+
"blocked": 4630,
|
2160
|
+
"send": 0,
|
2161
|
+
"wait": 2215,
|
2162
|
+
"receive": 0
|
2163
|
+
}
|
2164
|
+
},
|
2165
|
+
{
|
2166
|
+
"pageref": "page_12043",
|
2167
|
+
"startedDateTime": "2010-01-02T16:40:22.410+01:00",
|
2168
|
+
"time": 6853,
|
2169
|
+
"request": {
|
2170
|
+
"method": "GET",
|
2171
|
+
"url": "http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=6&t=1262446827",
|
2172
|
+
"httpVersion": "HTTP/1.1",
|
2173
|
+
"cookies": [
|
2174
|
+
],
|
2175
|
+
"headers": [
|
2176
|
+
{
|
2177
|
+
"name": "Host",
|
2178
|
+
"value": "1.cuzillion.com"
|
2179
|
+
},
|
2180
|
+
{
|
2181
|
+
"name": "User-Agent",
|
2182
|
+
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2b6pre) Gecko/20091230 Namoroka/3.6b6pre (.NET CLR 3.5.30729)"
|
2183
|
+
},
|
2184
|
+
{
|
2185
|
+
"name": "Accept",
|
2186
|
+
"value": "image/png,image/*;q=0.8,*/*;q=0.5"
|
2187
|
+
},
|
2188
|
+
{
|
2189
|
+
"name": "Accept-Language",
|
2190
|
+
"value": "en-us,en;q=0.5"
|
2191
|
+
},
|
2192
|
+
{
|
2193
|
+
"name": "Accept-Encoding",
|
2194
|
+
"value": "gzip,deflate"
|
2195
|
+
},
|
2196
|
+
{
|
2197
|
+
"name": "Accept-Charset",
|
2198
|
+
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
2199
|
+
},
|
2200
|
+
{
|
2201
|
+
"name": "Keep-Alive",
|
2202
|
+
"value": "115"
|
2203
|
+
},
|
2204
|
+
{
|
2205
|
+
"name": "Connection",
|
2206
|
+
"value": "keep-alive"
|
2207
|
+
},
|
2208
|
+
{
|
2209
|
+
"name": "Referer",
|
2210
|
+
"value": "http://stevesouders.com/cuzillion/?c0=bi1hfff2_0_f&c1=bi1hfff2_0_f&c2=bi1hfff2_0_f&c3=bi1hfff2_0_f&c4=bi1hfff2_0_f&c5=bi1hfff2_0_f&c6=bi1hfff2_0_f&c7=bi1hfff2_0_f&t=1258547264277"
|
2211
|
+
}
|
2212
|
+
],
|
2213
|
+
"queryString": [
|
2214
|
+
{
|
2215
|
+
"name": "n",
|
2216
|
+
"value": "6"
|
2217
|
+
},
|
2218
|
+
{
|
2219
|
+
"name": "sleep",
|
2220
|
+
"value": "2"
|
2221
|
+
},
|
2222
|
+
{
|
2223
|
+
"name": "t",
|
2224
|
+
"value": "1262446827"
|
2225
|
+
},
|
2226
|
+
{
|
2227
|
+
"name": "type",
|
2228
|
+
"value": "gif"
|
2229
|
+
}
|
2230
|
+
],
|
2231
|
+
"headersSize": 606,
|
2232
|
+
"bodySize": -1
|
2233
|
+
},
|
2234
|
+
"response": {
|
2235
|
+
"status": 200,
|
2236
|
+
"statusText": "OK",
|
2237
|
+
"httpVersion": "HTTP/1.1",
|
2238
|
+
"cookies": [
|
2239
|
+
],
|
2240
|
+
"headers": [
|
2241
|
+
{
|
2242
|
+
"name": "Date",
|
2243
|
+
"value": "Sat, 02 Jan 2010 15:40:32 GMT"
|
2244
|
+
},
|
2245
|
+
{
|
2246
|
+
"name": "Server",
|
2247
|
+
"value": "Apache"
|
2248
|
+
},
|
2249
|
+
{
|
2250
|
+
"name": "Expires",
|
2251
|
+
"value": "Mon, 01 Feb 2010 15:40:34 GMT"
|
2252
|
+
},
|
2253
|
+
{
|
2254
|
+
"name": "Cache-Control",
|
2255
|
+
"value": "public, max-age=2592000"
|
2256
|
+
},
|
2257
|
+
{
|
2258
|
+
"name": "Last-Modified",
|
2259
|
+
"value": "Sun, 15 Jan 2006 12:00:00 GMT"
|
2260
|
+
},
|
2261
|
+
{
|
2262
|
+
"name": "Content-Length",
|
2263
|
+
"value": "1334"
|
2264
|
+
},
|
2265
|
+
{
|
2266
|
+
"name": "Keep-Alive",
|
2267
|
+
"value": "timeout=2, max=98"
|
2268
|
+
},
|
2269
|
+
{
|
2270
|
+
"name": "Connection",
|
2271
|
+
"value": "Keep-Alive"
|
2272
|
+
},
|
2273
|
+
{
|
2274
|
+
"name": "Content-Type",
|
2275
|
+
"value": "image/gif"
|
2276
|
+
}
|
2277
|
+
],
|
2278
|
+
"content": {
|
2279
|
+
"size": 1334,
|
2280
|
+
"mimeType": "image/gif"
|
2281
|
+
},
|
2282
|
+
"redirectURL": "",
|
2283
|
+
"headersSize": 300,
|
2284
|
+
"bodySize": 1334
|
2285
|
+
},
|
2286
|
+
"cache": {
|
2287
|
+
},
|
2288
|
+
"timings": {
|
2289
|
+
"dns": 0,
|
2290
|
+
"connect": 0,
|
2291
|
+
"blocked": 4643,
|
2292
|
+
"send": 0,
|
2293
|
+
"wait": 2210,
|
2294
|
+
"receive": 0
|
2295
|
+
}
|
2296
|
+
},
|
2297
|
+
{
|
2298
|
+
"pageref": "page_12043",
|
2299
|
+
"startedDateTime": "2010-01-02T16:40:22.410+01:00",
|
2300
|
+
"time": 9055,
|
2301
|
+
"request": {
|
2302
|
+
"method": "GET",
|
2303
|
+
"url": "http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=7&t=1262446827",
|
2304
|
+
"httpVersion": "HTTP/1.1",
|
2305
|
+
"cookies": [
|
2306
|
+
],
|
2307
|
+
"headers": [
|
2308
|
+
{
|
2309
|
+
"name": "Host",
|
2310
|
+
"value": "1.cuzillion.com"
|
2311
|
+
},
|
2312
|
+
{
|
2313
|
+
"name": "User-Agent",
|
2314
|
+
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2b6pre) Gecko/20091230 Namoroka/3.6b6pre (.NET CLR 3.5.30729)"
|
2315
|
+
},
|
2316
|
+
{
|
2317
|
+
"name": "Accept",
|
2318
|
+
"value": "image/png,image/*;q=0.8,*/*;q=0.5"
|
2319
|
+
},
|
2320
|
+
{
|
2321
|
+
"name": "Accept-Language",
|
2322
|
+
"value": "en-us,en;q=0.5"
|
2323
|
+
},
|
2324
|
+
{
|
2325
|
+
"name": "Accept-Encoding",
|
2326
|
+
"value": "gzip,deflate"
|
2327
|
+
},
|
2328
|
+
{
|
2329
|
+
"name": "Accept-Charset",
|
2330
|
+
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
2331
|
+
},
|
2332
|
+
{
|
2333
|
+
"name": "Keep-Alive",
|
2334
|
+
"value": "115"
|
2335
|
+
},
|
2336
|
+
{
|
2337
|
+
"name": "Connection",
|
2338
|
+
"value": "keep-alive"
|
2339
|
+
},
|
2340
|
+
{
|
2341
|
+
"name": "Referer",
|
2342
|
+
"value": "http://stevesouders.com/cuzillion/?c0=bi1hfff2_0_f&c1=bi1hfff2_0_f&c2=bi1hfff2_0_f&c3=bi1hfff2_0_f&c4=bi1hfff2_0_f&c5=bi1hfff2_0_f&c6=bi1hfff2_0_f&c7=bi1hfff2_0_f&t=1258547264277"
|
2343
|
+
}
|
2344
|
+
],
|
2345
|
+
"queryString": [
|
2346
|
+
{
|
2347
|
+
"name": "n",
|
2348
|
+
"value": "7"
|
2349
|
+
},
|
2350
|
+
{
|
2351
|
+
"name": "sleep",
|
2352
|
+
"value": "2"
|
2353
|
+
},
|
2354
|
+
{
|
2355
|
+
"name": "t",
|
2356
|
+
"value": "1262446827"
|
2357
|
+
},
|
2358
|
+
{
|
2359
|
+
"name": "type",
|
2360
|
+
"value": "gif"
|
2361
|
+
}
|
2362
|
+
],
|
2363
|
+
"headersSize": 606,
|
2364
|
+
"bodySize": -1
|
2365
|
+
},
|
2366
|
+
"response": {
|
2367
|
+
"status": 200,
|
2368
|
+
"statusText": "OK",
|
2369
|
+
"httpVersion": "HTTP/1.1",
|
2370
|
+
"cookies": [
|
2371
|
+
],
|
2372
|
+
"headers": [
|
2373
|
+
{
|
2374
|
+
"name": "Date",
|
2375
|
+
"value": "Sat, 02 Jan 2010 15:40:34 GMT"
|
2376
|
+
},
|
2377
|
+
{
|
2378
|
+
"name": "Server",
|
2379
|
+
"value": "Apache"
|
2380
|
+
},
|
2381
|
+
{
|
2382
|
+
"name": "Expires",
|
2383
|
+
"value": "Mon, 01 Feb 2010 15:40:36 GMT"
|
2384
|
+
},
|
2385
|
+
{
|
2386
|
+
"name": "Cache-Control",
|
2387
|
+
"value": "public, max-age=2592000"
|
2388
|
+
},
|
2389
|
+
{
|
2390
|
+
"name": "Last-Modified",
|
2391
|
+
"value": "Sun, 15 Jan 2006 12:00:00 GMT"
|
2392
|
+
},
|
2393
|
+
{
|
2394
|
+
"name": "Content-Length",
|
2395
|
+
"value": "1334"
|
2396
|
+
},
|
2397
|
+
{
|
2398
|
+
"name": "Keep-Alive",
|
2399
|
+
"value": "timeout=2, max=97"
|
2400
|
+
},
|
2401
|
+
{
|
2402
|
+
"name": "Connection",
|
2403
|
+
"value": "Keep-Alive"
|
2404
|
+
},
|
2405
|
+
{
|
2406
|
+
"name": "Content-Type",
|
2407
|
+
"value": "image/gif"
|
2408
|
+
}
|
2409
|
+
],
|
2410
|
+
"content": {
|
2411
|
+
"size": 1334,
|
2412
|
+
"mimeType": "image/gif"
|
2413
|
+
},
|
2414
|
+
"redirectURL": "",
|
2415
|
+
"headersSize": 300,
|
2416
|
+
"bodySize": 1334
|
2417
|
+
},
|
2418
|
+
"cache": {
|
2419
|
+
},
|
2420
|
+
"timings": {
|
2421
|
+
"dns": 0,
|
2422
|
+
"connect": 0,
|
2423
|
+
"blocked": 6843,
|
2424
|
+
"send": 0,
|
2425
|
+
"wait": 2212,
|
2426
|
+
"receive": 0
|
2427
|
+
}
|
2428
|
+
},
|
2429
|
+
{
|
2430
|
+
"pageref": "page_12043",
|
2431
|
+
"startedDateTime": "2010-01-02T16:40:22.413+01:00",
|
2432
|
+
"time": 9067,
|
2433
|
+
"request": {
|
2434
|
+
"method": "GET",
|
2435
|
+
"url": "http://1.cuzillion.com/bin/resource.cgi?type=gif&sleep=2&n=8&t=1262446827",
|
2436
|
+
"httpVersion": "HTTP/1.1",
|
2437
|
+
"cookies": [
|
2438
|
+
],
|
2439
|
+
"headers": [
|
2440
|
+
{
|
2441
|
+
"name": "Host",
|
2442
|
+
"value": "1.cuzillion.com"
|
2443
|
+
},
|
2444
|
+
{
|
2445
|
+
"name": "User-Agent",
|
2446
|
+
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2b6pre) Gecko/20091230 Namoroka/3.6b6pre (.NET CLR 3.5.30729)"
|
2447
|
+
},
|
2448
|
+
{
|
2449
|
+
"name": "Accept",
|
2450
|
+
"value": "image/png,image/*;q=0.8,*/*;q=0.5"
|
2451
|
+
},
|
2452
|
+
{
|
2453
|
+
"name": "Accept-Language",
|
2454
|
+
"value": "en-us,en;q=0.5"
|
2455
|
+
},
|
2456
|
+
{
|
2457
|
+
"name": "Accept-Encoding",
|
2458
|
+
"value": "gzip,deflate"
|
2459
|
+
},
|
2460
|
+
{
|
2461
|
+
"name": "Accept-Charset",
|
2462
|
+
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
2463
|
+
},
|
2464
|
+
{
|
2465
|
+
"name": "Keep-Alive",
|
2466
|
+
"value": "115"
|
2467
|
+
},
|
2468
|
+
{
|
2469
|
+
"name": "Connection",
|
2470
|
+
"value": "keep-alive"
|
2471
|
+
},
|
2472
|
+
{
|
2473
|
+
"name": "Referer",
|
2474
|
+
"value": "http://stevesouders.com/cuzillion/?c0=bi1hfff2_0_f&c1=bi1hfff2_0_f&c2=bi1hfff2_0_f&c3=bi1hfff2_0_f&c4=bi1hfff2_0_f&c5=bi1hfff2_0_f&c6=bi1hfff2_0_f&c7=bi1hfff2_0_f&t=1258547264277"
|
2475
|
+
}
|
2476
|
+
],
|
2477
|
+
"queryString": [
|
2478
|
+
{
|
2479
|
+
"name": "n",
|
2480
|
+
"value": "8"
|
2481
|
+
},
|
2482
|
+
{
|
2483
|
+
"name": "sleep",
|
2484
|
+
"value": "2"
|
2485
|
+
},
|
2486
|
+
{
|
2487
|
+
"name": "t",
|
2488
|
+
"value": "1262446827"
|
2489
|
+
},
|
2490
|
+
{
|
2491
|
+
"name": "type",
|
2492
|
+
"value": "gif"
|
2493
|
+
}
|
2494
|
+
],
|
2495
|
+
"headersSize": 606,
|
2496
|
+
"bodySize": -1
|
2497
|
+
},
|
2498
|
+
"response": {
|
2499
|
+
"status": 200,
|
2500
|
+
"statusText": "OK",
|
2501
|
+
"httpVersion": "HTTP/1.1",
|
2502
|
+
"cookies": [
|
2503
|
+
],
|
2504
|
+
"headers": [
|
2505
|
+
{
|
2506
|
+
"name": "Date",
|
2507
|
+
"value": "Sat, 02 Jan 2010 15:40:34 GMT"
|
2508
|
+
},
|
2509
|
+
{
|
2510
|
+
"name": "Server",
|
2511
|
+
"value": "Apache"
|
2512
|
+
},
|
2513
|
+
{
|
2514
|
+
"name": "Expires",
|
2515
|
+
"value": "Mon, 01 Feb 2010 15:40:36 GMT"
|
2516
|
+
},
|
2517
|
+
{
|
2518
|
+
"name": "Cache-Control",
|
2519
|
+
"value": "public, max-age=2592000"
|
2520
|
+
},
|
2521
|
+
{
|
2522
|
+
"name": "Last-Modified",
|
2523
|
+
"value": "Sun, 15 Jan 2006 12:00:00 GMT"
|
2524
|
+
},
|
2525
|
+
{
|
2526
|
+
"name": "Keep-Alive",
|
2527
|
+
"value": "timeout=2, max=97"
|
2528
|
+
},
|
2529
|
+
{
|
2530
|
+
"name": "Connection",
|
2531
|
+
"value": "Keep-Alive"
|
2532
|
+
},
|
2533
|
+
{
|
2534
|
+
"name": "Transfer-Encoding",
|
2535
|
+
"value": "chunked"
|
2536
|
+
},
|
2537
|
+
{
|
2538
|
+
"name": "Content-Type",
|
2539
|
+
"value": "image/gif"
|
2540
|
+
}
|
2541
|
+
],
|
2542
|
+
"content": {
|
2543
|
+
"size": 492,
|
2544
|
+
"mimeType": "image/gif"
|
2545
|
+
},
|
2546
|
+
"redirectURL": "",
|
2547
|
+
"headersSize": 306,
|
2548
|
+
"bodySize": 492
|
2549
|
+
},
|
2550
|
+
"cache": {
|
2551
|
+
},
|
2552
|
+
"timings": {
|
2553
|
+
"dns": 0,
|
2554
|
+
"connect": 0,
|
2555
|
+
"blocked": 6850,
|
2556
|
+
"send": 0,
|
2557
|
+
"wait": 2217,
|
2558
|
+
"receive": 0
|
2559
|
+
}
|
2560
|
+
}
|
2561
|
+
]
|
2562
|
+
}
|
2563
|
+
}
|