More about DOCid's and HTTP2

Tony Sanders (sanders@bsdi.com)
Wed, 05 May 1993 20:05:45 -0500


I got this out-of-band:
> Thanks for pointing out "DOCid's" and "HTTP2". Are there any
> documents about this in the web? Do you have the full link names? Is
> the topic discussed anywhere else than www-talk? Other www-talk
> readers would probably be interested in the answers.

http://info.cern.ch:80/hypertext/WWW/Protocols/HTTP/HTTP2.html
http://info.cern.ch/hypertext/WWW/DesignIssues/FunctionTraverse.html

these talk about UDI's a little:
http://info.cern.ch/hypertext/WWW/DesignIssues/DosDonts.html
http://info.cern.ch/hypertext/WWW/Administration/DataModel.html

I couldn't find much that talks about DOCid's directly (there isn't much
because they don't exist yet :-). Anyone know where some docs are that
talk about this? I've seen them but couldn't find them right now.

I thought about writing a perl script that retrieves and greps http
documents from ~/.mosaic-global-history but then I realized there are over
1200 in my history file, whew.

<INFORMATION>
Here are my top 5 servers (out of 101):
68 www.bsdi.com (my server)
81 hoohoo.ncsa.uiuc.edu (xmosaic)
85 cs.indiana.edu (where my server code came from)
95 www.ncsa.uiuc.edu (xmosaic)
236 info.cern.ch (WWW HQ)

as computed by:
------- cut: server-hist --------
#!/usr/bin/perl -n
next unless /^file:/ || /^ftp:/ || /^gopher:/ || /^http:/ || /^telnet:/;
next if /\?/; # queries don't count
s,^[^/]*//,,; s,[:/].*,,; s,\.$,,; y/A-Z/a-z/; print;
----------------------------
server-hist ~/.mosaic-global-history | sort | uniq -c | sort -n | tail -5
</INFORMATION>

<PROJECT IDEA>
Someone should make a server where you can mail your .mosaic-global-history
file and it will munge it into some stats that we can view on the Web.
</PROJECT>

--sanders@bsdi.com