CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 08 Aug 2025 01:57:43 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20080518203238
location: https://web.archive.org/web/20080518203238/https://examples.oreilly.com/upt2/split/paircheck
server-timing: captures_list;dur=1.338363, exclusion.robots;dur=0.019114, exclusion.robots.policy;dur=0.009762, esindex;dur=0.009775, cdx.remote;dur=9.913778, LoadShardBlock;dur=1240.683787, PetaboxLoader3.datanode;dur=1175.173072, PetaboxLoader3.resolve;dur=46.469375
x-app-server: wwwb-app225
x-ts: 302
x-tr: 1274
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app225; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Fri, 08 Aug 2025 01:57:46 GMT
content-type: text/plain
content-length: 826
x-archive-orig-date: Sun, 18 May 2008 20:32:36 GMT
x-archive-orig-server: Apache
x-archive-orig-last-modified: Mon, 31 Mar 2008 18:10:12 GMT
x-archive-orig-etag: "54c417-33a-90194900"
x-archive-orig-accept-ranges: bytes
x-archive-orig-content-length: 826
x-archive-orig-connection: close
cache-control: max-age=1800
x-archive-guessed-content-type: text/plain
x-archive-guessed-charset: utf-8
memento-datetime: Sun, 18 May 2008 20:32:38 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Wed, 19 Jun 2002 01:44:48 GMT", ; rel="prev memento"; datetime="Tue, 16 Oct 2007 16:16:54 GMT", ; rel="memento"; datetime="Sun, 18 May 2008 20:32:38 GMT", ; rel="next memento"; datetime="Tue, 10 Feb 2009 08:46:16 GMT", ; rel="last memento"; datetime="Fri, 25 Mar 2016 03:27:07 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_3_20080518193113_crawl107-c/52_3_20080518203051_crawl100.arc.gz
server-timing: captures_list;dur=0.688102, exclusion.robots;dur=0.022080, exclusion.robots.policy;dur=0.009805, esindex;dur=0.024984, cdx.remote;dur=8.033153, LoadShardBlock;dur=2978.050550, PetaboxLoader3.datanode;dur=2951.963326, PetaboxLoader3.resolve;dur=114.617027, load_resource;dur=151.090726
x-app-server: wwwb-app225
x-ts: 200
x-tr: 3167
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
accept-ranges: bytes
#! /usr/local/bin/gawk -f
BEGIN {
inTable = 0
TSlineno = 0
TElineno = 0
prevFile = ""
}
# check for unclosed table in first file, when more than one file
FILENAME != prevFile {
if (inTable)
printf ("%s: found .TS at File %s: %d without .TE before end of file\n",
$0, prevFile, TSlineno)
inTable = 0
prevFile = FILENAME
}
# match TS and see if we are in Table
/^\.TS/ {
if (inTable) {
printf("%s: nested starts, File %s: line %d and %d\n",
$0, FILENAME, TSlineno, FNR)
}
inTable = 1
TSlineno = FNR
}
/^\.TE/ {
if (! inTable)
printf("%s: too many ends, File %s: line %d and %d\n",
$0, FILENAME, TElineno, FNR)
else
inTable = 0
TElineno = FNR
}
# this catches end of input.
END {
if (inTable)
printf ("found .TS at File %s: %d without .TE before end of file\n",
FILENAME, TSlineno)
}