SlideShare a Scribd company logo
Robin Zimmermann
Kaazing
HTML5 Offline Web Applications
Intuit
• Whether helping balance a checkbook, run a small
business, or pay income taxes, our innovative
solutions have simplified millions of people’s lives
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Thanks to our Sponsors:
Kaazing
• A high-performance Web platform that
enables full-duplex communication over
the Web
• About Offline Web Apps
• Creating Offline Web Apps
• Server Configuration
• Tips, Tricks, and Q&A
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Offline Web Applications
• New HTML5 Specification
• Also known as Application Cache (AppCache)
• WHATWG: http://www.whatwg.org/specs/web-
apps/current-work/multipage/offline.html#offline
• W3C:
http://dev.w3.org/html5/spec/offline.html#offline
• Spec is primarily aimed at browser developers
to ensure interoperability…
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Data for the current section. The format that data lines must take
depends on the current section. When the current section is
the explicit section, data lines must consist of zero or more
U+0020 SPACE and U+0009 CHARACTER TABULATION (tab) characters,
a valid URL identifying a resource other than the manifest itself,
and then zero or more U+0020 SPACE and U+0009 CHARACTER TABULATION
(tab) characters. When the current section is the fallback section,
data lines must consist of zero or more U+0020 SPACE and U+0009
CHARACTER TABULATION (tab) characters, a valid URL identifying a
resource other than the manifest itself, one or more U+0020 SPACE
and U+0009 CHARACTER TABULATION (tab) characters, another valid URL
identifying a resource other than the manifest itself, and then
zero or more U+0020 SPACE and U+0009 CHARACTER TABULATION (tab)
characters. When the current section is the online whitelist
section, data lines must consist of zero or more U+0020 SPACE and
U+0009 CHARACTER TABULATION (tab) characters, either a single
U+002A ASTERISK character (*) or a valid URL identifying a resource
other than the manifest itself, and then zero or more U+0020 SPACE
and U+0009 CHARACTER TABULATION (tab) characters…
Copyright © 2010 - Kaazing Corporation. All rights reserved.
WHATWG spec
The Spec…
And the Slightly
Simpler Version…
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Sweet! I’m offline!
How easy was that!
Offline Web Applications
• Allow you to keep using web apps and sites without a
network connection
(for example, on an airplane, in rural areas, subways)
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Offline without AppCache
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Noooooooo!
Traditional Caching
• Cache duration can be controlled through
Web Server’s Cache HTTP headers
o For example, in Apache’s .htaccess file (see
example on next slide)
• Not reliable for offline use
• Browser caching settings also apply
Copyright © 2010 - Kaazing Corporation. All rights reserved.
<IfModule mod_expires.c>
Header set cache-control: public
ExpiresActive on
# your document html
ExpiresByType text/html "access"
# rss feed
ExpiresByType application/rss+xml "access plus 1 hour"
# favicon (cannot be renamed)
ExpiresByType image/vnd.microsoft.icon "access plus 1 week"
# media: images, video, audio
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/jpg "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
ExpiresByType video/ogg "access plus 1 month"
ExpiresByType audio/ogg "access plus 1 month"
ExpiresByType video/mp4 "access plus 1 month"
# webfonts
ExpiresByType font/ttf "access plus 1 month"
ExpiresByType font/woff "access plus 1 month"
ExpiresByType image/svg+xml "access plus 1 month"
# css and javascript
ExpiresByType text/css "access plus 1 month"
ExpiresByType application/javascript "access plus 1 month"
ExpiresByType text/javascript "access plus 1 month"
</IfModule>
Copyright © 2010 - Kaazing Corporation. All rights reserved.
.htaccess File
Web Server Caching Settings
Source: Paul Irish & Divya Manian http://html5boilerplate.com/
Offline Web Applications
• Allow you to cache pages that have not been
visited
• Browsers cache data in an Application Cache
• Once resources are cached, you can access them
very quickly (without a network request)
• HTML5 also allows online and offline detection
• Using offline mechanism allows you to easily
prefetch site resources (speeds up pages, but
uses bandwidth)
• Pages served using TLS (SSL) can also be
included to work offline
Copyright © 2010 - Kaazing Corporation. All rights reserved.
DemoCopyright © 2010 - Kaazing Corporation. All rights reserved.
urce Files: http://bit.ly/9pJ1Zq or:
p://tech.kaazing.com/training/offline/peter-lubbers-html5-offline-web-apps-presentation-code.zip
Browser Support for
Offline Web Applications
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Source: http://caniuse.com/
(the best site for checking browser support for HTML5 features)
Hi-res browser logos: http://paulirish.com/2010/high-res-browser-icons/
Offline Emulation
• HTML5 Gears Project by Brad Neuberg,
Google:
http://code.google.com/p/html5-gears/
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Developing Offline Web
Applications
Copyright © 2010 - Kaazing Corporation. All rights reserved.
CACHE MANIFEST
# manifest version 1.0.1
# Files to cache
CACHE:
index.html
cache.html
html5.css
img/foo.gif
http://www.example.com/styles.css
# Use from network if available
NETWORK:
network.html
# Fallback content
FALLBACK:
/ fallback.html
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Manifest File
The Manifest File
<!DOCTYPE html>
<html manifest="offline.manifest">
<head>
<title>HTML5 Application Cache</title>
Copyright © 2010 - Kaazing Corporation. All rights reserved.
HTML
Using a Manifest File in HTML
• Reference the manifest file:
o <name>.manifest – it must match the name of the
manifest file
o Add as attribute to HTML element
Browser Notification
• Users may have to opt in (similar to
Geolocation)
• Configurable and not default in all browsers
Copyright © 2010 - Kaazing Corporation. All rights reserved.
The Manifest File
• Manifest file has three sections:
o CACHE:
o NETWORK:
o FALLBACK:
• Multiple sections (of the same kind) are allowed
• First line must be CACHE MANIFEST
• Comments start with # (don’t use inline
comments)
• An application cache is created using the
manifest’s complete URL (you can have multiple
manifest files in a site)
Copyright © 2010 - Kaazing Corporation. All rights reserved.
CACHE: Section
• To cache files in the AppCache, include them in
the CACHE: section or list files directly under
CACHE MANIFEST (default is to cache files)
• Add one file per line (full name required)
• Files can contain path information or even be an
absolute URL
• Application caches can’t include fragment
identifiers (#) or wildcards
• Case sensitive
• Files that reference the manifest file will
automatically be cached
Copyright © 2010 - Kaazing Corporation. All rights reserved.
NETWORK: Section
• Also called the online whitelist
• Files listed in this section listed will not be
loaded from the cache, but retrieved over the
network (from the server) if online
• You can specify “*”
o Sets the online whitelist wildcard flag to “open”
o Access to resources on other origins will not be
blocked
Copyright © 2010 - Kaazing Corporation. All rights reserved.
FALLBACK: Section
• Provides a way to fall back if resources
cannot be found
• Specify a fallback namespace and a fallback
page for that namespace:
/ fallback.html
• You can only list one fallback namespace
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Initial Cache Sequence
1. Access the page (with the manifest attribute)
2. Page is loaded and page’s resources are loaded
(from the server)
3. Manifest is encountered and parsed, all files
flagged for caching are loaded in the background
4. Go offline (regular caching is also in effect, so
watch for false positives)
5. Access a CACHE: resource (loads from cache)
6. Access a NETWORK resource (FALLBACK content
is served, files will be available if you go back
online)
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Step 1: First Page Load
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Step 2: Going Offline
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Step 3: Offline Web Page
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Step 4: Network Page
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Consecutive Load Sequence 1
1. Go back to online mode
2. Change the cache.html page on the server
3. Reload the cache.html page in the browser
4. The (old) page loads from the application cache
(The changes do not appear!)
5. The browser checks to see if the referenced
manifest file has been updated and does
nothing since it has not been modified
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Consecutive Load Sequence 2
6. Update the manifest file (make a trivial change,
like a version number comment update)
7. Reload the cache page in the browser
8. The (old) page loads from the application cache
(This is always the first action from the browser,
so the changes still don’t appear!)
9. The browser checks to see if the referenced
manifest has been updated and since it has, it
downloads all the files flagged to be cached
10.The new files are now in the application cache,
reload the page once more to see the latest
changes Copyright © 2010 - Kaazing Corporation. All rights reserved.
// Simple method
if(window.applicationCache) {
// this browser supports offline web apps
}
//Or just use Modernizr (source: http://www.modernizr.com/)
if (Modernizr.applicationcache){
// We have offline web app support! Continue
operation,
// indicating to the user that the app will sync up
once they get back online
} else {
// No offline support, show errors if the user goes
offline
}
Copyright © 2010 - Kaazing Corporation. All rights reserved.
JavaScript
Checking for Browser Support
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Checking for Online and
Offline Events
window.addEventListener("online", function(e) {
log("Application is now online");
}, true);
window.addEventListener("offline", function(e) {
log("Application is now offline");
}, true);
JavaScript
Using Web Pages Offline
• Test offline pages using the
“Work Offline” feature if available
(Not in Chrome and
Safari)
• Disconnect your
computer (does not
work for localhost)
• Watch out for false
positives (regular
browser caching)
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Opera
Firefox
Working Offline
Browser Work Offline
Chrome Disconnect from the network
Firefox File > Work Offline
Safari Disconnect from the network
Opera File > Work Offline
Internet Explorer N/A (Does not support App Cache)
Copyright © 2010 - Kaazing Corporation. All rights reserved.
ApplicationCache Events
• The window.applicationCache object fires
several events related to the state of the cache
• window.applicationCache.status is a
numerical property indicating the state of the
cache
o 0 UNCACHED
o 1 IDLE
o 2 CHECKING
o 3 DOWNLOADING
o 4 UPDATEREADY
o 5 OBSOLETE
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Event Callback Attributes
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Callback Attribute Event
onchecking CHECKING
ondownloading DOWNLOADING
onupdateready UPDATEREADY
onobsolete OBSOLETE
oncached CACHED
onerror ERROR
onnoupdateready NOUPDATE
onprogress PROGRESS
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Checking App Cache Status
window.applicationCache.onchecking = function(e) {
log("Checking for application update");
}
window.applicationCache.onnoupdate = function(e) {
log("No application update found");
}
window.applicationCache.onupdateready = function(e) {
log("Application update ready");
window.applicationCache.swapCache();
}
window.applicationCache.onobsolete = function(e) {
log("Application obsolete");
}
JavaScript
Forces correct
behavior in some
browsers
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Checking App Cache Status
window.applicationCache.ondownloading = function(e) {
log("Downloading application update");
}
window.applicationCache.oncached = function(e) {
log("Application cached");
}
window.applicationCache.onerror = function(e) {
log("Application cache error");
}
window.applicationCache.onprogress = function(e) {
log("Application Cache progress");
}
JavaScript
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Serving the Manifest File
• Manifest files have the MIME type
text/cache-manifest
• Most web servers need to be configured to
serve the manifest files correctly
o Served correctly by default by Python's
SimpleHTTPServer on Ubuntu Linux
o For Python on Windows/Mac OS X or Apache,
update the configuration files with the MIME type
• Verify how the manifest file is served by using
network or
curl –I http://offline.example.com/offline.manifest
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Source: Introducing HTML5, Offline Chapter, Bruce Lawson and Remy Sharp
Verifying the MIME Type
• Using curl (see previous
slide)
• Firefox add-on:
Live HTTP Headers
• Chrome developer tools
• Server log
• It works
Copyright © 2010 - Kaazing Corporation. All rights reserved.
# Apache mimetype configuration
# APACHE_HOME/conf/mime.types
text/cache-manifest manifest
Copyright © 2010 - Kaazing Corporation. All rights reserved.
mime.types File
Apache Configuration
# Apache mimetype configuration
AddType text/cache-manifest .manifest
.htaccess File
Or:
# Cache settings for the manifest file
<IfModule mod_expires.c>
Header set cache-control: public
ExpiresActive on
.
.
.
# Prevent receiving a cached manifest
ExpiresByType text/cache-manifest "access plus 0 seconds"
.
.
.
</IfModule>
Copyright © 2010 - Kaazing Corporation. All rights reserved.
.htaccess File
Apache Configuration
Source: Introducing HTML5, Offline Chapter, Bruce Lawson and Remy Sharp
Copyright © 2010 - Kaazing Corporation. All rights reserved.
mimetypes.py File
Python Configuration
Windows:
PYTHON_HOME/Lib/mimetypes.py, for example:
C:Python26Libmimetypes.py
Mac:
PYTHON_HOME/Lib/mimetypes.py, for example:
/System/Library/Frameworks/Python.framework/Versions/2.6/lib/
python2.6/mimetypes.py
Important: If you do not have a mimetypes.py file, you can use mimetypes.py
from the offline/ mac-config-file example folder. If you already have a
compiled mimetypes.pyc file in the same directory, ensure that the permissions
on this file are changed to read/write. When you start Python with the new file,
Python compiles it and generates or overwrites the mimetypes.pyc.
# Python SimpleHTTPServer mimetype Configuration
# python –m SimpleHTTPServer 9999)
'.manifest' : 'text/cache-manifest',
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Microsoft IIS Configuration
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Offline Web Applications
Tips and Tricks
Debugging Offline Cache
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Chrome: Chrome Developer Tools > Storage
Note: Not available in Safari Web Inspector yet…
Accessing
Offline Resources
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Accessing the Offline Cache
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Firefox: about:cache
Accessing the Offline Cache
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Firefox SQLite Manager Add-on: https://addons.mozilla.org/en-US/firefox/addon/5817/
Accessing the Offline Cache
Copyright © 2010 - Kaazing Corporation. All rights reserved.
File System Access
Browser
Offline Cache
Settings and
Clearing the Cache
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Offline Cache Settings
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Firefox: Tools > Options
(Preferences on Mac OS X) >
Advanced > Network
Offline Cache Settings
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Opera: opera:config
Clearing the Cache
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Chrome:
Settings Menu > Tools >
Clear Browsing Data
Opera:
Tools > Preferences > Storage
Clearing the Cache
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Firefox:
Tools > Clear Recent History
Safari:
Settings Menu > Reset Safari
Clearing the Cache
Browser Steps to Clear the Cache
Chrome
Settings Menu > Tools >
Clear Browsing Data
Firefox
Tools > Clear Recent History
(and Tools > Options (Preferences on Mac OS X)
> Advanced > Network > Remove for app cache)
Safari Settings Menu > Reset Safari
Opera
Tools > Preferences > Storage
(+ Tools > Clear Private Data)
Internet Explorer Coming soon…
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Note: Close any offline pages before you do this to avoid
problems
Private Browsing
• Most private browsing modes prevent writing
to application cache
o For example, Safari’s
Private Browsing
mode, and Chrome’s
Incognito Mode
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Security Considerations
• Others browsing the same site (on the same
machine in the same browser) can potentially
access your cached data (data is cached
based on the manifest file URL)
• Do not store sensitive,
personal data in the
application cache
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Best Practices
• Manifest errors are fatal (case sensitive entries)
• If you are adding and removing (lots of files) files,
remember to update the manifest file
o Use a predeployment script
o Use a version Comment in the manifest file
• Host your site on different domain names
o You can do this on your local machine by hacking the
hosts file (see example on the next slide)
o Windows:WINDOWSsystem32driversetchos
ts
o UNIX: /etc/hosts
• To see if files are requested, watch the server log
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Checking Server Access
Copyright © 2010 - Kaazing Corporation. All rights reserved.
# For example
127.0.0.1 localhost
127.0.0.1 offline0.example.com
127.0.0.1 offline1.example.com
Copyright © 2010 - Kaazing Corporation. All rights reserved.
hosts file
hosts File for Testing
Disk Quota
• Don’t assume success and check for errors
o Example in Chrome: Application Cache
Error event: Failed to commit new
cache to storage, would exceed quota
• In the future,
browsers will
hopefully have
graceful quota
upgrade
mechanisms like
Opera’s for Local
Storage
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Works Well With HTML5 Web
Storage…
if (navigator.onLine) {
//Send updates to server
} else {
window.localStorage.myLocalKey = ‘Some Data'; }
}
JavaScript
CACHE MANIFEST
styles.css
FALLBACK:
/ /offline.html
NETWORK:
*
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Manifest File
Cache-As-You-Go
• If you add the manifest attribute, files will be
added to the cache implicitly
• Subresources and dependencies may not be
loaded properly (CSS, JS, etc.)
This work is licensed under a Creative Commons Attribution 3.0 License.
Kaazing Jobs:
http://www.kaazing.com/about/careers.html
E-mail: peter.lubbers@kaazing.com
Twitter: @peterlubbers
LinkedIN: Peter Lubbers
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Resources
• WHATWG Offline Web Apps spec:
http://www.whatwg.org/specs/web-apps/current-
work/multipage/offline.html#offline
• W3C Offline Web Apps spec:
http://dev.w3.org/html5/spec/offline.html#offline
• Offline example source files: http://bit.ly/9pJ1Zq
• Pro HTML5 Programming, Offline chapter, Peter
Lubbers, Brian Albers, and Frank Salim
• Introducing HTML5, Offline chapter, Bruce
Lawson and Remy Sharp
Copyright © 2010 - Kaazing Corporation. All rights reserved.
Copyright © 2010 Kaazing Corporation, All rights reserved.
All materials, including labs and other handouts are property of Kaazing Corporation. Except when
expressly permitted by Kaazing Corporation, you may not copy, reproduce, publish, or display any
part of this training material, in any form, or by any means.
Copyright © 2010 - Kaazing Corporation. All rights reserved.
`

More Related Content

PPTX
Html5 Offline Applications
PPT
HTML5 Offline Web Application
PDF
Offline Web Apps
PPTX
Peter lubbers-html5-offline-web-apps
PDF
Local Storage for Web Applications
KEY
ClubAJAX Basics - Server Communication
PDF
High performance website
KEY
Web API Basics
Html5 Offline Applications
HTML5 Offline Web Application
Offline Web Apps
Peter lubbers-html5-offline-web-apps
Local Storage for Web Applications
ClubAJAX Basics - Server Communication
High performance website
Web API Basics

What's hot (20)

PDF
Workshop HTML5+PhoneGap by Ivano Malavolta
PPTX
Piecing Together the WordPress Puzzle
PPTX
HTML 5
PPTX
How To Use Host-Named Site Collections
PDF
Responsive Websites and Grid-Based Layouts by Gabriel Walt
PPTX
The ASP.NET Web API for Beginners
PPT
Deep Dive: Oracle WebCenter Content Tips and Traps!
PDF
OWA And SharePoint Integration
PPTX
When dispatcher caching is not enough by Jakub Wądołowski
PPTX
Microsoft/Zend Webcast on Cloud Computing
PPTX
ASP.NET WEB API Training
PDF
Web Performance First Aid
PPTX
Introduction to Web Architecture
PPT
Top 10 HTML5 Features for Oracle Cloud Developers
PDF
Api manager preconference
PPTX
Social Connections 12 - IBM Connections Adminblast
PPTX
RESTful API - Best Practices
PPTX
Managing Multisite: Lessons from a Large Network
PDF
WordPress Server Security
PPTX
Creating php cloud applications
Workshop HTML5+PhoneGap by Ivano Malavolta
Piecing Together the WordPress Puzzle
HTML 5
How To Use Host-Named Site Collections
Responsive Websites and Grid-Based Layouts by Gabriel Walt
The ASP.NET Web API for Beginners
Deep Dive: Oracle WebCenter Content Tips and Traps!
OWA And SharePoint Integration
When dispatcher caching is not enough by Jakub Wądołowski
Microsoft/Zend Webcast on Cloud Computing
ASP.NET WEB API Training
Web Performance First Aid
Introduction to Web Architecture
Top 10 HTML5 Features for Oracle Cloud Developers
Api manager preconference
Social Connections 12 - IBM Connections Adminblast
RESTful API - Best Practices
Managing Multisite: Lessons from a Large Network
WordPress Server Security
Creating php cloud applications
Ad

Viewers also liked (17)

PDF
Online / Offline
PPTX
HTML5 AppCache: The Manifest
PDF
Offline of web applications
PPTX
Html5 offline
PDF
HTML5 Storage/Cache
PPT
Incorporating Web Services in Mobile Applications - Web 2.0 San Fran 2009
PDF
OnConnectionLost: The life of an offline web application - JSUnconf 2015
PDF
HTML5: friend or foe (to Flash)?
PPTX
Updated: NW.js - Desktop Apps with Javascript
PPTX
Anatomy of mobile App development
PDF
Offline Strategies for HTML5 Web Applications - oscon13
PPTX
From JavaEE to Android: Way in one click?
PDF
Offline strategies for HTML5 web applications - frOSCon8
PDF
Anatomy of an HTML 5 mobile web app
PPS
Les Trous Guv
PPTX
Création d’une application gérant l’offline et le stockage
PDF
Le Web Offline & les APIs de contrôle Javascript
Online / Offline
HTML5 AppCache: The Manifest
Offline of web applications
Html5 offline
HTML5 Storage/Cache
Incorporating Web Services in Mobile Applications - Web 2.0 San Fran 2009
OnConnectionLost: The life of an offline web application - JSUnconf 2015
HTML5: friend or foe (to Flash)?
Updated: NW.js - Desktop Apps with Javascript
Anatomy of mobile App development
Offline Strategies for HTML5 Web Applications - oscon13
From JavaEE to Android: Way in one click?
Offline strategies for HTML5 web applications - frOSCon8
Anatomy of an HTML 5 mobile web app
Les Trous Guv
Création d’une application gérant l’offline et le stockage
Le Web Offline & les APIs de contrôle Javascript
Ad

Similar to HTML5 Offline Web Applications (Silicon Valley User Group) (20)

PPTX
The Power of HTML5 Offline: Mobile and More!
PPTX
Taking Web Applications Offline
PDF
Using html5 to build offline applications
PPTX
Offline Storage
PPT
HTML 5 Offline Web apps
PDF
Rails for Mobile Devices @ Conferencia Rails 2011
PPTX
Web apps without internet
PPTX
Offline Webapps
PDF
Offline strategies for HTML5 web applications - ConFoo13
PDF
Making it Work Offline: Current & Future Offline APIs for Web Apps
PPTX
Cache is King
PPTX
Take your drupal sites offline
KEY
Taking your Web App for a walk
PDF
Building great mobile apps: Somethings you might want to know
PDF
Offline for web - Frontend Dev Conf Minsk 2014
PPTX
Dave Orchard - Offline Web Apps with HTML5
PDF
Optimising Web Application Frontend
KEY
Offline Application Cache
PDF
Offline Strategies for HTML5 Web Applications - ipc13
PDF
Persistent mobile JavaScript
The Power of HTML5 Offline: Mobile and More!
Taking Web Applications Offline
Using html5 to build offline applications
Offline Storage
HTML 5 Offline Web apps
Rails for Mobile Devices @ Conferencia Rails 2011
Web apps without internet
Offline Webapps
Offline strategies for HTML5 web applications - ConFoo13
Making it Work Offline: Current & Future Offline APIs for Web Apps
Cache is King
Take your drupal sites offline
Taking your Web App for a walk
Building great mobile apps: Somethings you might want to know
Offline for web - Frontend Dev Conf Minsk 2014
Dave Orchard - Offline Web Apps with HTML5
Optimising Web Application Frontend
Offline Application Cache
Offline Strategies for HTML5 Web Applications - ipc13
Persistent mobile JavaScript

Recently uploaded (20)

PDF
NewMind AI Weekly Chronicles - August'25-Week II
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Spectral efficient network and resource selection model in 5G networks
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPTX
Spectroscopy.pptx food analysis technology
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Empathic Computing: Creating Shared Understanding
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
A comparative analysis of optical character recognition models for extracting...
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Machine learning based COVID-19 study performance prediction
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
A Presentation on Artificial Intelligence
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
NewMind AI Weekly Chronicles - August'25-Week II
Diabetes mellitus diagnosis method based random forest with bat algorithm
Spectral efficient network and resource selection model in 5G networks
MYSQL Presentation for SQL database connectivity
Reach Out and Touch Someone: Haptics and Empathic Computing
Spectroscopy.pptx food analysis technology
Assigned Numbers - 2025 - Bluetooth® Document
Dropbox Q2 2025 Financial Results & Investor Presentation
Empathic Computing: Creating Shared Understanding
Encapsulation_ Review paper, used for researhc scholars
A comparative analysis of optical character recognition models for extracting...
Per capita expenditure prediction using model stacking based on satellite ima...
Machine learning based COVID-19 study performance prediction
Chapter 3 Spatial Domain Image Processing.pdf
Mobile App Security Testing_ A Comprehensive Guide.pdf
Building Integrated photovoltaic BIPV_UPV.pdf
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
A Presentation on Artificial Intelligence
20250228 LYD VKU AI Blended-Learning.pptx
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...

HTML5 Offline Web Applications (Silicon Valley User Group)

  • 2. Intuit • Whether helping balance a checkbook, run a small business, or pay income taxes, our innovative solutions have simplified millions of people’s lives Copyright © 2010 - Kaazing Corporation. All rights reserved. Thanks to our Sponsors: Kaazing • A high-performance Web platform that enables full-duplex communication over the Web
  • 3. • About Offline Web Apps • Creating Offline Web Apps • Server Configuration • Tips, Tricks, and Q&A Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 4. Offline Web Applications • New HTML5 Specification • Also known as Application Cache (AppCache) • WHATWG: http://www.whatwg.org/specs/web- apps/current-work/multipage/offline.html#offline • W3C: http://dev.w3.org/html5/spec/offline.html#offline • Spec is primarily aimed at browser developers to ensure interoperability… Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 5. Data for the current section. The format that data lines must take depends on the current section. When the current section is the explicit section, data lines must consist of zero or more U+0020 SPACE and U+0009 CHARACTER TABULATION (tab) characters, a valid URL identifying a resource other than the manifest itself, and then zero or more U+0020 SPACE and U+0009 CHARACTER TABULATION (tab) characters. When the current section is the fallback section, data lines must consist of zero or more U+0020 SPACE and U+0009 CHARACTER TABULATION (tab) characters, a valid URL identifying a resource other than the manifest itself, one or more U+0020 SPACE and U+0009 CHARACTER TABULATION (tab) characters, another valid URL identifying a resource other than the manifest itself, and then zero or more U+0020 SPACE and U+0009 CHARACTER TABULATION (tab) characters. When the current section is the online whitelist section, data lines must consist of zero or more U+0020 SPACE and U+0009 CHARACTER TABULATION (tab) characters, either a single U+002A ASTERISK character (*) or a valid URL identifying a resource other than the manifest itself, and then zero or more U+0020 SPACE and U+0009 CHARACTER TABULATION (tab) characters… Copyright © 2010 - Kaazing Corporation. All rights reserved. WHATWG spec The Spec…
  • 6. And the Slightly Simpler Version… Copyright © 2010 - Kaazing Corporation. All rights reserved. Sweet! I’m offline! How easy was that!
  • 7. Offline Web Applications • Allow you to keep using web apps and sites without a network connection (for example, on an airplane, in rural areas, subways) Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 8. Offline without AppCache Copyright © 2010 - Kaazing Corporation. All rights reserved. Noooooooo!
  • 9. Traditional Caching • Cache duration can be controlled through Web Server’s Cache HTTP headers o For example, in Apache’s .htaccess file (see example on next slide) • Not reliable for offline use • Browser caching settings also apply Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 10. <IfModule mod_expires.c> Header set cache-control: public ExpiresActive on # your document html ExpiresByType text/html "access" # rss feed ExpiresByType application/rss+xml "access plus 1 hour" # favicon (cannot be renamed) ExpiresByType image/vnd.microsoft.icon "access plus 1 week" # media: images, video, audio ExpiresByType image/png "access plus 1 month" ExpiresByType image/jpg "access plus 1 month" ExpiresByType image/jpeg "access plus 1 month" ExpiresByType video/ogg "access plus 1 month" ExpiresByType audio/ogg "access plus 1 month" ExpiresByType video/mp4 "access plus 1 month" # webfonts ExpiresByType font/ttf "access plus 1 month" ExpiresByType font/woff "access plus 1 month" ExpiresByType image/svg+xml "access plus 1 month" # css and javascript ExpiresByType text/css "access plus 1 month" ExpiresByType application/javascript "access plus 1 month" ExpiresByType text/javascript "access plus 1 month" </IfModule> Copyright © 2010 - Kaazing Corporation. All rights reserved. .htaccess File Web Server Caching Settings Source: Paul Irish & Divya Manian http://html5boilerplate.com/
  • 11. Offline Web Applications • Allow you to cache pages that have not been visited • Browsers cache data in an Application Cache • Once resources are cached, you can access them very quickly (without a network request) • HTML5 also allows online and offline detection • Using offline mechanism allows you to easily prefetch site resources (speeds up pages, but uses bandwidth) • Pages served using TLS (SSL) can also be included to work offline Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 12. DemoCopyright © 2010 - Kaazing Corporation. All rights reserved. urce Files: http://bit.ly/9pJ1Zq or: p://tech.kaazing.com/training/offline/peter-lubbers-html5-offline-web-apps-presentation-code.zip
  • 13. Browser Support for Offline Web Applications Copyright © 2010 - Kaazing Corporation. All rights reserved. Source: http://caniuse.com/ (the best site for checking browser support for HTML5 features) Hi-res browser logos: http://paulirish.com/2010/high-res-browser-icons/
  • 14. Offline Emulation • HTML5 Gears Project by Brad Neuberg, Google: http://code.google.com/p/html5-gears/ Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 15. Developing Offline Web Applications Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 16. CACHE MANIFEST # manifest version 1.0.1 # Files to cache CACHE: index.html cache.html html5.css img/foo.gif http://www.example.com/styles.css # Use from network if available NETWORK: network.html # Fallback content FALLBACK: / fallback.html Copyright © 2010 - Kaazing Corporation. All rights reserved. Manifest File The Manifest File
  • 17. <!DOCTYPE html> <html manifest="offline.manifest"> <head> <title>HTML5 Application Cache</title> Copyright © 2010 - Kaazing Corporation. All rights reserved. HTML Using a Manifest File in HTML • Reference the manifest file: o <name>.manifest – it must match the name of the manifest file o Add as attribute to HTML element
  • 18. Browser Notification • Users may have to opt in (similar to Geolocation) • Configurable and not default in all browsers Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 19. The Manifest File • Manifest file has three sections: o CACHE: o NETWORK: o FALLBACK: • Multiple sections (of the same kind) are allowed • First line must be CACHE MANIFEST • Comments start with # (don’t use inline comments) • An application cache is created using the manifest’s complete URL (you can have multiple manifest files in a site) Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 20. CACHE: Section • To cache files in the AppCache, include them in the CACHE: section or list files directly under CACHE MANIFEST (default is to cache files) • Add one file per line (full name required) • Files can contain path information or even be an absolute URL • Application caches can’t include fragment identifiers (#) or wildcards • Case sensitive • Files that reference the manifest file will automatically be cached Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 21. NETWORK: Section • Also called the online whitelist • Files listed in this section listed will not be loaded from the cache, but retrieved over the network (from the server) if online • You can specify “*” o Sets the online whitelist wildcard flag to “open” o Access to resources on other origins will not be blocked Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 22. FALLBACK: Section • Provides a way to fall back if resources cannot be found • Specify a fallback namespace and a fallback page for that namespace: / fallback.html • You can only list one fallback namespace Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 23. Initial Cache Sequence 1. Access the page (with the manifest attribute) 2. Page is loaded and page’s resources are loaded (from the server) 3. Manifest is encountered and parsed, all files flagged for caching are loaded in the background 4. Go offline (regular caching is also in effect, so watch for false positives) 5. Access a CACHE: resource (loads from cache) 6. Access a NETWORK resource (FALLBACK content is served, files will be available if you go back online) Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 24. Step 1: First Page Load Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 25. Step 2: Going Offline Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 26. Step 3: Offline Web Page Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 27. Step 4: Network Page Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 28. Consecutive Load Sequence 1 1. Go back to online mode 2. Change the cache.html page on the server 3. Reload the cache.html page in the browser 4. The (old) page loads from the application cache (The changes do not appear!) 5. The browser checks to see if the referenced manifest file has been updated and does nothing since it has not been modified Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 29. Consecutive Load Sequence 2 6. Update the manifest file (make a trivial change, like a version number comment update) 7. Reload the cache page in the browser 8. The (old) page loads from the application cache (This is always the first action from the browser, so the changes still don’t appear!) 9. The browser checks to see if the referenced manifest has been updated and since it has, it downloads all the files flagged to be cached 10.The new files are now in the application cache, reload the page once more to see the latest changes Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 30. // Simple method if(window.applicationCache) { // this browser supports offline web apps } //Or just use Modernizr (source: http://www.modernizr.com/) if (Modernizr.applicationcache){ // We have offline web app support! Continue operation, // indicating to the user that the app will sync up once they get back online } else { // No offline support, show errors if the user goes offline } Copyright © 2010 - Kaazing Corporation. All rights reserved. JavaScript Checking for Browser Support
  • 31. Copyright © 2010 - Kaazing Corporation. All rights reserved. Checking for Online and Offline Events window.addEventListener("online", function(e) { log("Application is now online"); }, true); window.addEventListener("offline", function(e) { log("Application is now offline"); }, true); JavaScript
  • 32. Using Web Pages Offline • Test offline pages using the “Work Offline” feature if available (Not in Chrome and Safari) • Disconnect your computer (does not work for localhost) • Watch out for false positives (regular browser caching) Copyright © 2010 - Kaazing Corporation. All rights reserved. Opera Firefox
  • 33. Working Offline Browser Work Offline Chrome Disconnect from the network Firefox File > Work Offline Safari Disconnect from the network Opera File > Work Offline Internet Explorer N/A (Does not support App Cache) Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 34. ApplicationCache Events • The window.applicationCache object fires several events related to the state of the cache • window.applicationCache.status is a numerical property indicating the state of the cache o 0 UNCACHED o 1 IDLE o 2 CHECKING o 3 DOWNLOADING o 4 UPDATEREADY o 5 OBSOLETE Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 35. Event Callback Attributes Copyright © 2010 - Kaazing Corporation. All rights reserved. Callback Attribute Event onchecking CHECKING ondownloading DOWNLOADING onupdateready UPDATEREADY onobsolete OBSOLETE oncached CACHED onerror ERROR onnoupdateready NOUPDATE onprogress PROGRESS
  • 36. Copyright © 2010 - Kaazing Corporation. All rights reserved. Checking App Cache Status window.applicationCache.onchecking = function(e) { log("Checking for application update"); } window.applicationCache.onnoupdate = function(e) { log("No application update found"); } window.applicationCache.onupdateready = function(e) { log("Application update ready"); window.applicationCache.swapCache(); } window.applicationCache.onobsolete = function(e) { log("Application obsolete"); } JavaScript Forces correct behavior in some browsers
  • 37. Copyright © 2010 - Kaazing Corporation. All rights reserved. Checking App Cache Status window.applicationCache.ondownloading = function(e) { log("Downloading application update"); } window.applicationCache.oncached = function(e) { log("Application cached"); } window.applicationCache.onerror = function(e) { log("Application cache error"); } window.applicationCache.onprogress = function(e) { log("Application Cache progress"); } JavaScript
  • 38. Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 39. Serving the Manifest File • Manifest files have the MIME type text/cache-manifest • Most web servers need to be configured to serve the manifest files correctly o Served correctly by default by Python's SimpleHTTPServer on Ubuntu Linux o For Python on Windows/Mac OS X or Apache, update the configuration files with the MIME type • Verify how the manifest file is served by using network or curl –I http://offline.example.com/offline.manifest Copyright © 2010 - Kaazing Corporation. All rights reserved. Source: Introducing HTML5, Offline Chapter, Bruce Lawson and Remy Sharp
  • 40. Verifying the MIME Type • Using curl (see previous slide) • Firefox add-on: Live HTTP Headers • Chrome developer tools • Server log • It works Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 41. # Apache mimetype configuration # APACHE_HOME/conf/mime.types text/cache-manifest manifest Copyright © 2010 - Kaazing Corporation. All rights reserved. mime.types File Apache Configuration # Apache mimetype configuration AddType text/cache-manifest .manifest .htaccess File Or:
  • 42. # Cache settings for the manifest file <IfModule mod_expires.c> Header set cache-control: public ExpiresActive on . . . # Prevent receiving a cached manifest ExpiresByType text/cache-manifest "access plus 0 seconds" . . . </IfModule> Copyright © 2010 - Kaazing Corporation. All rights reserved. .htaccess File Apache Configuration Source: Introducing HTML5, Offline Chapter, Bruce Lawson and Remy Sharp
  • 43. Copyright © 2010 - Kaazing Corporation. All rights reserved. mimetypes.py File Python Configuration Windows: PYTHON_HOME/Lib/mimetypes.py, for example: C:Python26Libmimetypes.py Mac: PYTHON_HOME/Lib/mimetypes.py, for example: /System/Library/Frameworks/Python.framework/Versions/2.6/lib/ python2.6/mimetypes.py Important: If you do not have a mimetypes.py file, you can use mimetypes.py from the offline/ mac-config-file example folder. If you already have a compiled mimetypes.pyc file in the same directory, ensure that the permissions on this file are changed to read/write. When you start Python with the new file, Python compiles it and generates or overwrites the mimetypes.pyc. # Python SimpleHTTPServer mimetype Configuration # python –m SimpleHTTPServer 9999) '.manifest' : 'text/cache-manifest',
  • 44. Copyright © 2010 - Kaazing Corporation. All rights reserved. Microsoft IIS Configuration
  • 45. Copyright © 2010 - Kaazing Corporation. All rights reserved. Offline Web Applications Tips and Tricks
  • 46. Debugging Offline Cache Copyright © 2010 - Kaazing Corporation. All rights reserved. Chrome: Chrome Developer Tools > Storage Note: Not available in Safari Web Inspector yet…
  • 47. Accessing Offline Resources Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 48. Accessing the Offline Cache Copyright © 2010 - Kaazing Corporation. All rights reserved. Firefox: about:cache
  • 49. Accessing the Offline Cache Copyright © 2010 - Kaazing Corporation. All rights reserved. Firefox SQLite Manager Add-on: https://addons.mozilla.org/en-US/firefox/addon/5817/
  • 50. Accessing the Offline Cache Copyright © 2010 - Kaazing Corporation. All rights reserved. File System Access
  • 51. Browser Offline Cache Settings and Clearing the Cache Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 52. Offline Cache Settings Copyright © 2010 - Kaazing Corporation. All rights reserved. Firefox: Tools > Options (Preferences on Mac OS X) > Advanced > Network
  • 53. Offline Cache Settings Copyright © 2010 - Kaazing Corporation. All rights reserved. Opera: opera:config
  • 54. Clearing the Cache Copyright © 2010 - Kaazing Corporation. All rights reserved. Chrome: Settings Menu > Tools > Clear Browsing Data Opera: Tools > Preferences > Storage
  • 55. Clearing the Cache Copyright © 2010 - Kaazing Corporation. All rights reserved. Firefox: Tools > Clear Recent History Safari: Settings Menu > Reset Safari
  • 56. Clearing the Cache Browser Steps to Clear the Cache Chrome Settings Menu > Tools > Clear Browsing Data Firefox Tools > Clear Recent History (and Tools > Options (Preferences on Mac OS X) > Advanced > Network > Remove for app cache) Safari Settings Menu > Reset Safari Opera Tools > Preferences > Storage (+ Tools > Clear Private Data) Internet Explorer Coming soon… Copyright © 2010 - Kaazing Corporation. All rights reserved. Note: Close any offline pages before you do this to avoid problems
  • 57. Private Browsing • Most private browsing modes prevent writing to application cache o For example, Safari’s Private Browsing mode, and Chrome’s Incognito Mode Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 58. Security Considerations • Others browsing the same site (on the same machine in the same browser) can potentially access your cached data (data is cached based on the manifest file URL) • Do not store sensitive, personal data in the application cache Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 59. Best Practices • Manifest errors are fatal (case sensitive entries) • If you are adding and removing (lots of files) files, remember to update the manifest file o Use a predeployment script o Use a version Comment in the manifest file • Host your site on different domain names o You can do this on your local machine by hacking the hosts file (see example on the next slide) o Windows:WINDOWSsystem32driversetchos ts o UNIX: /etc/hosts • To see if files are requested, watch the server log Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 60. Checking Server Access Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 61. # For example 127.0.0.1 localhost 127.0.0.1 offline0.example.com 127.0.0.1 offline1.example.com Copyright © 2010 - Kaazing Corporation. All rights reserved. hosts file hosts File for Testing
  • 62. Disk Quota • Don’t assume success and check for errors o Example in Chrome: Application Cache Error event: Failed to commit new cache to storage, would exceed quota • In the future, browsers will hopefully have graceful quota upgrade mechanisms like Opera’s for Local Storage Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 63. Copyright © 2010 - Kaazing Corporation. All rights reserved. Works Well With HTML5 Web Storage… if (navigator.onLine) { //Send updates to server } else { window.localStorage.myLocalKey = ‘Some Data'; } } JavaScript
  • 64. CACHE MANIFEST styles.css FALLBACK: / /offline.html NETWORK: * Copyright © 2010 - Kaazing Corporation. All rights reserved. Manifest File Cache-As-You-Go • If you add the manifest attribute, files will be added to the cache implicitly • Subresources and dependencies may not be loaded properly (CSS, JS, etc.)
  • 65. This work is licensed under a Creative Commons Attribution 3.0 License.
  • 66. Kaazing Jobs: http://www.kaazing.com/about/careers.html E-mail: peter.lubbers@kaazing.com Twitter: @peterlubbers LinkedIN: Peter Lubbers Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 67. Resources • WHATWG Offline Web Apps spec: http://www.whatwg.org/specs/web-apps/current- work/multipage/offline.html#offline • W3C Offline Web Apps spec: http://dev.w3.org/html5/spec/offline.html#offline • Offline example source files: http://bit.ly/9pJ1Zq • Pro HTML5 Programming, Offline chapter, Peter Lubbers, Brian Albers, and Frank Salim • Introducing HTML5, Offline chapter, Bruce Lawson and Remy Sharp Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 68. Copyright © 2010 Kaazing Corporation, All rights reserved. All materials, including labs and other handouts are property of Kaazing Corporation. Except when expressly permitted by Kaazing Corporation, you may not copy, reproduce, publish, or display any part of this training material, in any form, or by any means. Copyright © 2010 - Kaazing Corporation. All rights reserved.
  • 69. `