ViolaWWW

ViolaWWW was one of the first graphically-based web browsers. Created by Pei-Yuan Wei in 1993, it was the first browser to use authoring technology such as embedded scriptable objects, stylesheets, and tables.

It was based on the Viola toolkit, which is a tool for the development and support of visual interactive media applications, with a multimedia web browser being a possible application. Viola ran under the X-Windows environment and could be used to build complex hypermedia applications that were beyond HTML 3.0 (the latest version of HTML at that time).

Ahead of its time

Viola was interesting because it was the first web browser to have the following features:

Viola-style document embedding Object method
 <INSERT SRC="a_quote.html">
 
 <object type="text/html" data="a_quote.html">
 <p>This text will appear 
 for browsers that don't 
 support OBJECTs</p>
 </object>
 
A viola-style stylesheet A CSS stylesheet
  (BODY,INPUT,P   FGColor=black 
                  BGColor=grey70 
                  BDColor=grey70 
                  align=left
 
  (H1             FGColor=white 
                  BGColor=red 
                  BDColor=black 
                  align=center 
 
 
 
 
  body, input, p { 
   color: black;
   background-color: #707070;
   text-align: left;
 }
 
  h1 {
   color: white;
   background-color: red;
   border: solid 1px black;
   text-align: center;
 }
 
ViolaWWW method JavaScript equivalent
Scripting
 \class {txtDisp} 
 \name {showTime} 
 \script { switch (arg[0]) { 
   case "tick": 
     set("content"), date()); 
     after(1000, self(), "tick"); 
     return; break; 
   case "init": 
     after(1000, self(), "tick"); 
     break; 
   } 
   usual(); 
 } 
 \width {100} 
 \height {50} \
 
 function showTimeInDoc() {
   var theTime = 
    document.
     getElementById('theTime');
   var tDate = new Date();
   theTime.innerHTML= 
    tDate.getHours() 
    + ":" + tDate.getMinutes() 
    + ":" + tDate.getSeconds();
   setTimeout("showTimeInDoc()", 
    1000);
 }
 
Embedding a script into a web page
 <HTML> 
 <HEAD>
 </HEAD>
 <BODY>
 <P>And, the time now is: 
 <LINK REL="viola" 
 HREF="showTime.v"> 
 </BODY>
 </HTML>
 
 
 <html>
   <head>
   <script type="text/javascript" 
     src="showTime.js">
   </script>
   </head>
   <body onload="showTimeInDoc()">
     <p id="theTime"> </p>
   </body>
 </html>
 

Microsoft v. Eolas and ViolaWWW prior art

Because of ViolaWWW, Microsoft received a retrial on February, 2005, in the Microsoft v. Eolas case which could have cost software giant Microsoft $521m in damages. Eolas Technologies and the University of California sued Microsoft for allegedly infringing patents with the Internet Explorer web browser. The case revolved around a patent held by Eolas and the University which claims to cover ways of making other software work seamlessly with web browsers.

Microsoft had wanted to show the court ViolaWWW as prior art, since it was created in 1993 at the University of California, a year before the patent was filed. Microsoft had also suggested that Mike Doyle, the founder of Eolas' and a former University of California researcher, had intentionally concealed his knowledge of ViolaWWW when filing the patent claim.

External links

See also: ViolaWWW, 1993, 1998, 2005, BBC News, Cascading Style Sheets, Eolas Technologies, February, HTML, Internet Explorer