Another abandoned server code base... this is kind of an ancestor of taskrambler.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

532 lines
16 KiB

<?xml version="1.0" encoding="UTF-8"?><!--*- nxml -*-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://www.w3.org/2003/g/data-view">
<title>How fast does the Web Change?</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="transformation" href="http://www.w3.org/2002/12/cal/glean-hcal.xsl" />
<link rel="stylesheet" href="http://www.w3.org/Talks/Tools/Slidy/slidy.css"
type="text/css"
media="screen, projection, print" />
<link rel="stylesheet" href="http://www.w3.org/Talks/Tools/Slidy/w3c-blue.css"
type="text/css" media="screen, projection, print" />
<meta name="copyright" content="(c) W3C (MIT, Keio, ERCIM) $Date: 2008/09/10 14:08:34 $" />
<script src="http://www.w3.org/Talks/Tools/Slidy/slidy.js"
type="text/javascript">
</script>
<style type="text/css">
.footnote { font-size: smaller }
div.figure { text-align: center }
pre b { color: blue }
blockquote { border-left: double; padding-left: 1em; font-style: italic; text-align: justify }
address.vcard { text-align: left; font-size: larger }
address { text-align: right; font-size: smaller }
.source { text-align: right; font-size: smaller }
.dialog th { vertical-align: top; text-align: right }
.dialog td { vertical-align: top}
</style>
</head>
<body>
<div class="background">
<img alt="" id="head-icon"
src="http://www.w3.org/Talks/Tools/Slidy/icon-blue.png" />
<object id="head-logo"
data="http://www.w3.org/Talks/Tools/Slidy/w3c-logo-blue.svg"
type="image/svg+xml" title="W3C logo">
<a href="http://www.w3.org/"><img
alt="W3C logo" id="head-logo-fallback"
src="http://www.w3.org/Talks/Tools/Slidy/w3c-logo-blue.gif" /></a>
</object>
</div>
<div class="background slanty">
<img src="http://www.w3.org/Talks/Tools/Slidy/w3c-logo-slanted.jpg"
alt="slanted W3C logo" />
</div>
<div class="slide cover">
<img align="right"
src="http://www.w3.org/Talks/Tools/Slidy/keys.jpg"
alt="Cover page images (keys)" class="cover" />
<div class="vevent">
<h1>How fast does the Web Change?</h1>
<address class="vcard">
<a class="url fn n" href="http://www.w3.org/People/Connolly/">
<span class="given-name">Dan</span>
<span class="family-name">Connolly</span></a>,
<span class="org">W3C</span>
</address>
<span class="location vcard">
<a class="url fn" href="http://captain.park.edu/ics/index.shtml">Park University Department of Information and Computer Science</a></span><br />
<abbr class="dtstart" title="2008-09-10">Sep 2008</abbr>
</div>
</div>
<div class="slide"><h1>Web Architecture Quiz</h1>
<p>Consider an on-line todo list:</p>
<blockquote>
<h2>ToDo List</h2>
<ul>
<li>Buy milk <a href="/items/1/delete">[delete]</a></li>
<li>Feed dog <a href="/items/2/delete">[delete]</a></li>
</ul>
</blockquote>
<p><em>Can you spot the problem with this design?</em></p>
<pre>
&lt;h2>ToDo List&lt;/h2>
&lt;ul>
&lt;li>Buy milk &lt;a href="/items/1/delete">[delete]&lt;/a>&lt;/li>
&lt;li>Feed dog &lt;a href="/items/2/delete">[delete]&lt;/a>&lt;/li>
&lt;/ul>
</pre>
</div>
<div class="slide"><h1>Web Architecture: HTML and HTTP</h1>
<p>When this link is activated:</p>
<pre>
&lt;a href="/items/1/delete">[delete]&lt;/a>&lt;/li>
</pre>
<p>the client sends this:</p>
<pre>
GET /items/1/delete HTTP/1.1
</pre>
</div>
<div class="slide"><h1>Web Architecture: exploration is safe</h1>
<p>People have certain expectations about questions as opposed to
statements or orders or requests. They apply to safe methods
in HTTP, such as GET:</p>
<table class="dialog">
<tbody>
<tr>
<th>Customer</th>
<td>Does that book come in paperback?</td>
<th>Client</th>
<td>
<pre>
GET <var>/items/1/delete</var> HTTP/1.1
</pre>
</td>
</tr>
<tr>
<th>Seller</th>
<td>We've charged $11.50 for that book to your credit card.
Nice doing business with you.</td>
<th>Server</th>
<td>
<pre>
200 OK
item 1 deleted
</pre>
</td>
</tr>
<tr>
<th>Customer</th>
<td><strong>WHAT?!</strong></td>
<th>Client</th>
<td><tt>:-/</tt></td>
</tr>
</tbody>
</table>
</div>
<div class="slide"><h1>Web Architecture Quiz (Key)</h1>
<p>Using HTTP as designed:</p>
<blockquote>
<h2>ToDo List</h2>
<form method="post" action="/update">
<ul>
<li>Buy milk <input type="checkbox" name="1" /></li>
<li>Feed dog <input type="checkbox" name="2" /></li>
</ul>
<p><input type="submit" value="Delete checked" /></p>
</form>
</blockquote>
<pre>
&lt;h2>ToDo List&lt;/h2>
&lt;form <b>method="post"</b> action="/update">
&lt;ul>
&lt;li>Buy milk &lt;input type="checkbox" name="1" />&lt;/li>
&lt;li>Feed dog &lt;input type="checkbox" name="2" />&lt;/li>
&lt;/ul>
&lt;p>&lt;input type="submit" value="Delete checked" />&lt;/p>
&lt;/form>
</pre>
<p class="footnote">*Yes, you can use AJAX to avoid a full page update,
but be sure you know about <a href=
"http://en.wikipedia.org/wiki/Unobtrusive_JavaScript" >unobtrusive
javascript</a> before you use it.</p>
</div>
<div class="slide"><h1>GET and POST: Innovation</h1>
<table><tbody>
<tr>
<th>
Nov 1993
</th>
<td>
<blockquote>
<p>Changes and additions in this prerelease include:</p>
<ul>
<li>Implemented FORM <tt>METHOD="POST"</tt> with optional
<tt>ENCTYPE="application/x-www-form-urlencoded"</tt>.</li>
</ul>
<address><a href="http://1997.webhistory.org/www.lists/www-talk.1993q4/0412.html">NCSA Mosaic for X 2.0 prerelease 8 available</a><br />
Marc Andreessen (marca@ncsa.uiuc.edu)<br />
Sun, 7 Nov 93 21:14:34 -0800
</address>
</blockquote>
</td>
</tr>
<!--
Re: QueryForms and Input tag
Dan Connolly (connolly@pixel.convex.com)
Wed, 20 Jan 93 03:01:36 CST
http://1997.webhistory.org/www.lists/www-talk.1993q1/0088.html
-->
</tbody></table>
</div>
<div class="slide"><h1>GET and POST: Rough Consensus and Running Code</h1>
<p>
<!-- odd... the IETF uses width/height to size their logo -->
<img height="137" width="280" src="http://www.ietf.org/images/ietflogo2f.gif" alt="" align="right" />
HTTP reaches Draft Standard status in the IETF, where
TCP/IP, DNS, and SMTP are standardized.</p>
<br clear="all" /> <!-- blech -->
<table>
<tbody>
<tr>
<th>
June 1999
</th>
<td>
<blockquote>
<p>... the GET and HEAD methods SHOULD NOT have the significance of taking an action other than retrieval. These methods ought to be considered "safe". This allows user agents to represent other methods, such as POST, PUT and DELETE, in a special way, so that the user is made aware of the fact that a possibly unsafe action is being requested.</p>
<address>
<a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.1.1">9.1.1 Safe Methods of Hypertext Transfer Protocol -- HTTP/1.1</a><br />
</address>
</blockquote>
</td>
</tr>
</tbody></table>
</div>
<div class="slide"><h1>Web Architecture Volume 1</h1>
<table><tbody>
<tr>
<th>
Dec 2004
</th>
<td>
<blockquote>
<p>Nadia's retrieval of weather information (an example of a read-only query or lookup) qualifies as a "safe" interaction; a safe interaction is one where the agent does not incur any obligation beyond the interaction. An agent may incur an obligation through other means (such as by signing a contract). If an agent does not have an obligation before a safe interaction, it does not have that obligation afterwards.</p>
<address><a href="http://www.w3.org/TR/webarch/#safe-interaction">3.4. Safe Interactions</a> in
<cite>Architecture of the World Wide Web, Volume One</cite>
</address>
</blockquote>
</td>
</tr>
</tbody>
</table>
<div class="photo">
<img src="http://www.w3.org/2001/tag/2004/10/tag-basel.jpg" alt="photo of W3C TAG members in Basel in 2004" />
</div>
</div>
<div class="slide"><h1>Web Architecture: in practice</h1>
<table>
<tbody>
<tr>
<th>
May 2005
</th>
<td>
<blockquote>
<p>So, the Google Web Accelerator prefetches links. Not a big
surprise. Unless clicking on a link destroys or alters data and you
can't figure out why your stuff is gone. This is not actually the web
accelerators fault.</p>
<address><a href="http://saladwithsteve.com/2005/05/37signals-and-google-web-accelerator.html">37Signals and the Google Web Accelerator</a>
</address>
</blockquote>
</td>
</tr>
<tr>
<th>
Jun 2005
</th>
<td>
<blockquote>
<p>I've always known that using GETs when I should be using POSTs
wasn't kosher, but there were never any ramifications until now.</p>
<address>
<a href="http://weblogs.macromedia.com/cantrell/archives/2005/06/what_have_we_le.html">What Have We Learned From the Google Web Accelerator?</a><br />
Chris Cantrell June 01, 2005
</address>
</blockquote>
</td>
</tr>
</tbody>
</table>
</div>
<div class="slide"><h1>Web Architecture in W3C</h1>
<p>The W3C Technical Architecture Group works on principles underlying
the 30 or 40 technologies W3C is developing.</p>
<div class="figure">
<img src="http://www.w3.org/2004/10/RecsFigure.png" alt="HTML, CSS, and many other W3C technologies" />
</div>
</div>
<div class="slide"><h1>How fast does W3C change?</h1>
<p>Founded in 1994, we celebrated our 10th anniversary in 2004
and collected a <a href="http://www.w3.org/Consortium/history">historical
matierials</a> for the event.</p>
<div class="figure">
<a href="http://www.w3.org/2005/01/timelines/timeline-4500x1796.png">
<img src="http://www.w3.org/2005/01/timelines/timeline-thumbnail.png" alt="W3C timeline" />
</a>
</div>
</div>
<div class="slide"><h1>How fast does HTML change?</h1>
<ul>
<li>Nov 1995: HTML 2.0 (IETF RFC 1866)</li>
<li>Jan 1997: HTML 3.2 (W3C Recommendation)
<blockquote>
Netscape's blink element and Microsoft's marquee element were omitted due to a mutual agreement between the two companies.
</blockquote>
</li>
<li>Dec 1997: HTML 4.0 (W3C Recommendation)</li>
<li>Dec 1999: HTML 4.01 (W3C Recommendation)</li>
<li>Jan 2000: XHTML 1.0 (W3C Recommendation)</li>
<li>Apr 2004: Web Applications 1.0 (WHATWG draft)</li>
<li>Jan 2008: HTML 5 (W3C Working Draft)</li>
</ul>
</div>
<div class="slide"><h1>How fast does the browser marketplace change?</h1>
<ul class="incremental">
<li>early 1990's: lots of little projects
<div>See <a href="http://upload.wikimedia.org/wikipedia/commons/7/74/Timeline_of_web_browsers.svg">Timeline of web browsers</a> in wikipedia</div>
</li>
<li>late 1990's: Microsoft Internet Explorer takes over from Netscape
Navigator</li>
<li>2003: MS IE, Firefox, Safari, Opera</li>
<li>
<a href="http://gizmodo.com/5044958/dr-frankensteins-browser-the-strangely-obvious-ancestry-of-google-chrome"><img align="right" alt="" src="http://gizmodo.com/assets/images/gizmodo/2008/09/chrometop.jpg" /></a>
1 Sep 2008: <a href="http://googleblog.blogspot.com/2008/09/fresh-take-on-browser.html">Official Google Blog: A fresh take on the browser</a>, i.e Google Chrome</li>
</ul>
</div>
<div class="slide"><h1>Web Security: How fast do the bad guys make zombies?</h1>
<div class="thumb tright figure">
<div class="thumbinner" ><a href="http://www.wikipedia.org/wiki/Image:Circle_of_spam.svg" class="image" title="(1)&#160;Spammer's web site (2)&#160;Spammer (3)&#160;Spamware (4)&#160;Infected computers (5)&#160;Virus or trojan (6)&#160;Mail servers (7)&#160;Users (8)&#160;Web traffic"><img alt="(1)&#160;Spammer's web site (2)&#160;Spammer (3)&#160;Spamware (4)&#160;Infected computers (5)&#160;Virus or trojan (6)&#160;Mail servers (7)&#160;Users (8)&#160;Web traffic" src="http://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Circle_of_spam.svg/300px-Circle_of_spam.svg.png" width="300" height="300" border="0" class="thumbimage" /></a>
<div class="thumbcaption">
(1)&#160;Spammer's web site (2)&#160;Spammer
(3)&#160;Spamware (4)&#160;Infected computers (5)&#160;Virus or trojan
(6)&#160;Mail servers (7)&#160;Users (8)&#160;Web traffic</div>
</div>
</div>
<p>Source: <a href="http://en.wikipedia.org/wiki/Zombie_computer">Zombie computer</a> article in Wikipedia</p>
</div>
<div class="slide"><h1>Web Security: How fast do the bad guys make zombies?</h1>
<blockquote>
<p>The number of compromised zombie PCs in botnet networks has
quadrupled over the last three months, according to figures from the
Shadowserver Foundation. ... The clear trend within these figures is
upwards, with a rise in botnet numbers of 100,000 to 400,000 (if 30
day entropy is factored into equations) or from 20,000 to 60,000 (for
five day entropy).
</p>
<address>
<a href="http://www.theregister.co.uk/2008/09/02/zombie_surge/">Zombie network explosion</a><br />
By John Leyden in The Register 2nd September 2008
</address>
</blockquote>
</div>
<div class="slide"><h1>How fast does the web change publishing?</h1>
<blockquote>
<p>There is no way to overstate what the dismemberment of The Star
means, adversely, to this metropolitan area.</p>
<address>
<a href=
"http://www.kccommunitynews.com/articles/2008/09/03/wednesday_sun/opinion/doc48bd85165ead3109638357.txt"
>Sadly, this event is of historic proportions</a><br /> By: Steve
Rose, Publisher, KCCommunityNews.com Sep 3, 2008
</address>
</blockquote>
<ul class="incremental">
<li>Where do Newspapers get their revenue?
<ul class="incremental">
<li>Advertisements</li>
<li>Especially Classified Ads</li>
</ul>
</li>
</ul>
</div>
<div class="slide"><h1>Ads on the Web: Craigslist, Google</h1>
<ul class="incremental">
<li>Craigslist
<ul class="incremental">
<li>more than 30 million new classified ads each month</li>
<li>price: $0 (except for New York real-estate)</li>
<li><blockquote>
<p>Popular community web site Craigslist, which launched in the mid-1990s, has cost newspapers in the San Francisco Bay area from $50 million to $65 million in employment advertising revenue.</p>
<address><a href="http://www.informationweek.com/news/showArticle.jhtml?articleID=56200498">InformationWeek Dec 27 2004</a>
</address>
</blockquote>
</li>
</ul>
</li>
<li>Google, Yahoo ads
<ul class="incremental">
<li>Newspaper ad price: $26 (per Thousand Impressions/ CPM)</li>
<li>Internet: $6</li>
<li>"Merrill Lynch expects a 2.6% gain in overall US advertising spend this year [2007] <strong>but</strong> anticipates that newspaper advertising will decline by 1.5%."</li>
</ul>
</li>
</ul>
</div>
<div class="slide"><h1>How fast does the Web change the free press?</h1>
<ul class="incremental">
<li>What will become of our free press?</li>
<li>Citizen journalism is great, but is it enough?</li>
<li>Who will hire professional reporters?</li>
<li>Silver lining? <cite><a href="http://www.msnbc.msn.com/id/15586673/">Google to broker newspaper advertising space</a></cite><br />
-- Associated Press Nov 2006</li>
</ul>
</div>
<div class="slide"><h1>How fast does the web
change government?</h1>
<ul class="incremental">
<li>First-time political candidate Sean Tevis needs "at least $26,000 to have a shot" in the KS race</li>
<li>After two weeks of knocking on doors, he had collected
only $25</li>
<li>
<a href=
"http://seantevis.com/kansas/3000/running-for-office-xkcd-style/">Web
comic</a> went live July 16, and in a week and a half, he reached the
$26K goal.</li>
</ul>
</div>
<!--
slide on TAG ftf in KC?
http://www.w3.org/2001/tag/2008/05/19-agenda
http://www.w3.org/2001/tag/2008/05/TagGroupOfficialGroupPicture.jpg
-->
<div class="slide"><h1>Questions?</h1>
<p>Follow-up resources:</p>
<ul>
<li><a href="http://www.w3.org/">W3C</a><br />
<tt>http://www.w3.org/</tt></li>
<li><a href="http://www.w3.org/People/Connolly/">Dan Connolly, W3C</a><br />
<tt>http://www.w3.org/People/Connolly/</tt></li>
<li><a href="http://www.w3.org/2008/Talks/0910how-fast/">How Fast does the Web Change?</a> (this talk)<br />
<tt>http://www.w3.org/2008/Talks/0910how-fast/</tt></li>
<li><a href="http://www.midwestwebsense.com/">Midwest Web Sense</a>, my work in the KC area<br />
<tt>http://www.midwestwebsense.com/</tt></li>
</ul>
</div>
</body>
</html>