Contact us Heritage collections Image license terms
HOME ACL ACD C&A INF CCD CISD Literature
Further reading □ OverviewATLAS newsletterComputing at ChiltonHistory of DCI □ W3C UK Office □ W3C UK NewsEvolution of the WebDevelopments and futureW3C Office AnniversaryW3C-LA
Harwell Archives Contact us Heritage archives Image license terms

Search

   
CISD and DCILiterature
CISD and DCILiterature
ACL ACD C&A INF CCD CISD Archives
Further reading

Overview
ATLAS newsletter
Computing at Chilton
History of DCI
W3C UK Office
W3C UK News
Evolution of the Web
Developments and future
W3C Office Anniversary
W3C-LA

The World Wide Web: Recent developments, The Future and European Industrial Experience

The Great Room, Royal Society of the Arts

Tuesday, 8th December 1998

Overview: Josef Dietl (W3C)

Josef Dietl

Josef Dietl
Full image ⇗
© UKRI Science and Technology Facilities Council

The Past

The World Wide Web Consortium

Leading the Web to its full potential

Highlights in World Wide Web Technology in 1998

Other topics of the past year

W3C Recommendations

(see http://www.w3.org/TR/)

W3C Activities

(See http://www.w3.org/)

Acknowledged Submissions to W3C

(see http://www.w3.org/Submission/)

The stage for the speakers

XML Update: Jon Bosak (Sun Microsystems)

Jon Bosak

Jon Bosak
Full image ⇗
© UKRI Science and Technology Facilities Council

XML and Industrial Data: Tony Stewart (RivCom)

Tony Stewart

Tony Stewart
Full image ⇗
© UKRI Science and Technology Facilities Council

XML in News and Financial Information: Nic Fulton (Reuters)

Nic Fulton

Nic Fulton
Full image ⇗
© UKRI Science and Technology Facilities Council

Any views expressed in this presentation are those of the presenter except where the presenter specifically states them to be the views of Reuters Ltd.

Reuters News Operations

Reuters Financial Information

Reuters Technology Aims

Reuters Technology History

Reuters and XML - Why?

XML and Financial Information

<Record xmlns="http://www.reuters.com" instrument="IBM.N"    currency="USD" type="fullimage">
  <Last wholePart="169" numerator="12" denominator="16"/>
  <Bid wholePart="169" numerator="12" denominator="16"/>
  <Ask wholePart="170" numerator="1" denominator="16"/>  <PERatio value="23.42">
  <Earnings value="24.00">
  <ExDividendDate xmlns:dt="http://www.w3.org" dt:value="1998-11-06"/>
  <Volume value="10634050"/>
  ...
</Record>

XML for structuring

XML and News

Using XML for News

Reuters and XML - Issues

Summary

RDF: The Resource Description Framework: Janne Saarela (W3C)

Janne Saarela

Janne Saarela
Full image ⇗
© UKRI Science and Technology Facilities Council

Outline

History of RDF

Inside RDF

The metadata infrastructure defined in two specifications

RDF Model & Syntax specification: http://www.w3.org/TR/WD-rdf-syntax

RDF Schema specification: http://www.w3.org/TR/WD-rdf-schema

RDF Data model

Data model - theory

Data model - 3-tuples

Data model - XML syntax

<RDF xmlns="http://www.w3.org/TR/WD-rdf-syntax/">
</RDF>
<RDF xmlns="http://www.w3.org/TR/WD-rdf-syntax#">
<Description about="http://www.site.net/doc.html">
</Description>
</RDF>
<RDF xmlns="http://www.w3.org/TR/WD-rdf-syntax#">
<Description about="http://www.site.net/doc.html">
  <a:author xmlns:a="http://www.schema.org/">
  Janne Saarela
  </a.author>
</Description>
</RDF>
<RDF xmlns="http://www.w3.org/TR/WD-rdf-syntax#">
<Description about="http://www.site.net/doc.html">
  <a:author xmlns:a="http://www.schema.org/">
    <Description>
      <a:name>Janne Saarela</a:name>
      <a:email>jsaarela@w3.org</a:email>
    </Description>
  </a:author>
</Description>
</RDF>

Description block

RDF has the requirement of enabling embedding into legacy HTML exposed element content avoided by flexible switch of elements into attributes

<RDF xmlns="http://www.w3.org/TR/WD-rdf-syntax#">
<Description about="http://www.site.net/doc.html"
                      a:author="Janne Saarela"
                      xmlns:a="http://www.schema.org" />
</RDF>

Implications of XML syntax

Inside RDF - summary

XML vs. RDF

CSS and XSL: Hakon Lie (W3C)

Hakon Lie

Hakon Lie
Full image ⇗
© UKRI Science and Technology Facilities Council

Why style sheets?

W3C Style Sheets Activity

Sample CSS

  h3 {
    font-family: Helvetica, sans-serif;
    color: black;
    background: white;
  }

CSS Recommendations

CSS Implementations

Improving CSS implementations

XSL

  1. tree transformations
    • generates XML (+ CSS)
    • generates HTML (+ CSS)
  2. set of XML formatting objects
    • all CSS1/CSS2 properties will be usable
    • focus on print
    • new functionality = CSS3?
    • W3C Formatting Model

XSL Recommendation: expected June 99

News example

Use CSS to:

Use XSL to:

W3C Formatting Model

W3C Style Sheets

CSS for WAI: Daniel Dardailler (W3C)

Daniel Dardailler

Daniel Dardailler
Full image ⇗
© UKRI Science and Technology Facilities Council

Context

CSS End-user benefits

Some Bad Tricks without Style

CSS2 adds to CSS1

Better user control

Orientation and navigation

Aural CSS: ACSS (pronounced Access)

Attribute selectors

Conclusion

Good Design is Accessible Design

References

Vector Graphics on the Web: Chris Lilley (W3C)

Chris Lilley

Chris Lilley
Full image ⇗
© UKRI Science and Technology Facilities Council

No set of slides provided

SMIL: Multimedia on the Web: Michael Wilson (RAL)

Michael Wilson

Michael Wilson
Full image ⇗
© UKRI Science and Technology Facilities Council

Talk Outline

Available Technologies

SMIL Objectives

SMIL Language

<smil> <head> ... </body></smil>
<layout>
<region id="V-Main" left="3%" top="44%" width="46%" height="40%"/>
</layout>

Media Content - http, rtsp, etc., local file

<video region="R1" src="video.avi"/>
<img src="http://image.jpg"/>, 
<audio src="rtsp://sound.wav"/>, 
<text src="text.html"/>, 
<textstream /> e.g. tickers
<animation />
<ref /> - other media types

Media Timing/Synchronisation

<par> 					 
	<seq>
			<img src="slide1.jpg" dur="10s" />
			<img src="slide2.jpg" />
	</seq>
			<audio src="english.wav"/>
</par> 					

40+ attributes to set duration, synchronisation etc..

Control

WWW, therefore limited to hyperlink navigation

<a show="new" href="./file1.smil#1">
		<video id="Anchor" region="V-Main" src="/mpeg/file2.avi"/>
</a>

Tailorability

<switch> statement and test attributes
<switch>
 <audio src="french.wav"  system-language="fr"/> 
 <audio src="english.wav" system-language="en"/>
</switch>

SMIL Tools

SMIL Browsers

Authoring Tools

The Veon V-Active Editor

GRiNS Editor

SMIL Advantages

Risks to SMIL Positioning

SMIL - The Future

Conclusions

TV on the Web: David Bradshaw (BBC)

David Bradshaw

David Bradshaw
Full image ⇗
© UKRI Science and Technology Facilities Council

The Future: Jean-Francois Abramatic (W3C)

Jeff Abramatic

Jeff Abramatic
Full image ⇗
© UKRI Science and Technology Facilities Council

"Leading the Web to its full potential"

Provide the Infrastructure for the Global Information Society

using Collective Design

W3C: Actors & Roles

W3C: Hosts & Offices

W3C: Process

W3C: Achievements

W3C: from Achievements to Deployment

W3C: Work in Progress

Convergence

Thank you

More information at http://www.w3.org/

Feel free to join!

⇑ Top of page
© Chilton Computing and UKRI Science and Technology Facilities Council webmaster@chilton-computing.org.uk
Our thanks to UKRI Science and Technology Facilities Council for hosting this site