SlideShare una empresa de Scribd logo
1 de 69
Descargar para leer sin conexión
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.
`

Más contenido relacionado

La actualidad más candente

Workshop HTML5+PhoneGap by Ivano Malavolta
Workshop HTML5+PhoneGap by Ivano Malavolta Workshop HTML5+PhoneGap by Ivano Malavolta
Workshop HTML5+PhoneGap by Ivano Malavolta Commit University
 
Piecing Together the WordPress Puzzle
Piecing Together the WordPress PuzzlePiecing Together the WordPress Puzzle
Piecing Together the WordPress PuzzleBusiness Vitality LLC
 
How To Use Host-Named Site Collections
How To Use Host-Named Site CollectionsHow To Use Host-Named Site Collections
How To Use Host-Named Site CollectionsAndré Vala
 
Responsive Websites and Grid-Based Layouts by Gabriel Walt
Responsive Websites and Grid-Based Layouts by Gabriel Walt Responsive Websites and Grid-Based Layouts by Gabriel Walt
Responsive Websites and Grid-Based Layouts by Gabriel Walt AEM HUB
 
The ASP.NET Web API for Beginners
The ASP.NET Web API for BeginnersThe ASP.NET Web API for Beginners
The ASP.NET Web API for BeginnersKevin Hazzard
 
Deep Dive: Oracle WebCenter Content Tips and Traps!
Deep Dive: Oracle WebCenter Content Tips and Traps!Deep Dive: Oracle WebCenter Content Tips and Traps!
Deep Dive: Oracle WebCenter Content Tips and Traps!Brian Huff
 
OWA And SharePoint Integration
OWA And SharePoint IntegrationOWA And SharePoint Integration
OWA And SharePoint Integrationjems7
 
When dispatcher caching is not enough by Jakub Wądołowski
When dispatcher caching is not enough by Jakub WądołowskiWhen dispatcher caching is not enough by Jakub Wądołowski
When dispatcher caching is not enough by Jakub WądołowskiAEM HUB
 
Microsoft/Zend Webcast on Cloud Computing
Microsoft/Zend Webcast on Cloud ComputingMicrosoft/Zend Webcast on Cloud Computing
Microsoft/Zend Webcast on Cloud ComputingJosh Holmes
 
Web Performance First Aid
Web Performance First AidWeb Performance First Aid
Web Performance First AidAlan Seiden
 
Introduction to Web Architecture
Introduction to Web ArchitectureIntroduction to Web Architecture
Introduction to Web ArchitectureChamnap Chhorn
 
Top 10 HTML5 Features for Oracle Cloud Developers
Top 10 HTML5 Features for Oracle Cloud DevelopersTop 10 HTML5 Features for Oracle Cloud Developers
Top 10 HTML5 Features for Oracle Cloud DevelopersBrian Huff
 
Social Connections 12 - IBM Connections Adminblast
Social Connections 12 - IBM Connections AdminblastSocial Connections 12 - IBM Connections Adminblast
Social Connections 12 - IBM Connections AdminblastNico Meisenzahl
 
Managing Multisite: Lessons from a Large Network
Managing Multisite: Lessons from a Large NetworkManaging Multisite: Lessons from a Large Network
Managing Multisite: Lessons from a Large NetworkWilliam Earnhardt
 
WordPress Server Security
WordPress Server SecurityWordPress Server Security
WordPress Server SecurityPeter Baylies
 
Creating php cloud applications
Creating php cloud applicationsCreating php cloud applications
Creating php cloud applicationsCory Fowler
 

La actualidad más candente (20)

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

Destacado

Online / Offline
Online / OfflineOnline / Offline
Online / OfflinePeter Rozek
 
HTML5 AppCache: The Manifest
HTML5 AppCache: The ManifestHTML5 AppCache: The Manifest
HTML5 AppCache: The ManifestRalf Schwoebel
 
Offline of web applications
Offline of web applicationsOffline of web applications
Offline of web applicationsFDConf
 
HTML5 Storage/Cache
HTML5 Storage/CacheHTML5 Storage/Cache
HTML5 Storage/CacheAndy Wang
 
Incorporating Web Services in Mobile Applications - Web 2.0 San Fran 2009
Incorporating Web Services in Mobile Applications - Web 2.0 San Fran 2009Incorporating Web Services in Mobile Applications - Web 2.0 San Fran 2009
Incorporating Web Services in Mobile Applications - Web 2.0 San Fran 2009Aduci
 
OnConnectionLost: The life of an offline web application - JSUnconf 2015
OnConnectionLost: The life of an offline web application - JSUnconf 2015OnConnectionLost: The life of an offline web application - JSUnconf 2015
OnConnectionLost: The life of an offline web application - JSUnconf 2015Johannes Thönes
 
HTML5: friend or foe (to Flash)?
HTML5: friend or foe (to Flash)?HTML5: friend or foe (to Flash)?
HTML5: friend or foe (to Flash)?Remy Sharp
 
Updated: NW.js - Desktop Apps with Javascript
Updated: NW.js - Desktop Apps with JavascriptUpdated: NW.js - Desktop Apps with Javascript
Updated: NW.js - Desktop Apps with JavascriptRalf Schwoebel
 
Anatomy of mobile App development
Anatomy of mobile App developmentAnatomy of mobile App development
Anatomy of mobile App developmentRalf Schwoebel
 
Offline Strategies for HTML5 Web Applications - oscon13
Offline Strategies for HTML5 Web Applications - oscon13Offline Strategies for HTML5 Web Applications - oscon13
Offline Strategies for HTML5 Web Applications - oscon13Stephan Hochdörfer
 
From JavaEE to Android: Way in one click?
From JavaEE to Android: Way in one click?From JavaEE to Android: Way in one click?
From JavaEE to Android: Way in one click?Sergii Zhuk
 
Offline strategies for HTML5 web applications - frOSCon8
Offline strategies for HTML5 web applications - frOSCon8Offline strategies for HTML5 web applications - frOSCon8
Offline strategies for HTML5 web applications - frOSCon8Stephan Hochdörfer
 
Anatomy of an HTML 5 mobile web app
Anatomy of an HTML 5 mobile web app Anatomy of an HTML 5 mobile web app
Anatomy of an HTML 5 mobile web app Ivano Malavolta
 
Création d’une application gérant l’offline et le stockage
Création d’une application gérant l’offline et le stockageCréation d’une application gérant l’offline et le stockage
Création d’une application gérant l’offline et le stockagedavrous
 
Le Web Offline & les APIs de contrôle Javascript
Le Web Offline & les APIs de contrôle JavascriptLe Web Offline & les APIs de contrôle Javascript
Le Web Offline & les APIs de contrôle JavascriptWilly Leloutre
 

Destacado (17)

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

Similar a Robin Zimmermann - HTML5 Offline Web Applications

HTML5: the new frontier of the web
HTML5: the new frontier of the webHTML5: the new frontier of the web
HTML5: the new frontier of the webIvano Malavolta
 
SharePoint 2013 App Provisioning Models
SharePoint 2013 App Provisioning ModelsSharePoint 2013 App Provisioning Models
SharePoint 2013 App Provisioning ModelsShailen Sukul
 
Html5 Application Security
Html5 Application SecurityHtml5 Application Security
Html5 Application Securitychuckbt
 
HTML5--The 30,000' View (A fast-paced overview of HTML5)
HTML5--The 30,000' View (A fast-paced overview of HTML5)HTML5--The 30,000' View (A fast-paced overview of HTML5)
HTML5--The 30,000' View (A fast-paced overview of HTML5)Peter Lubbers
 
HTML5 Overview (Silicon Valley User Group)
HTML5 Overview (Silicon Valley User Group)HTML5 Overview (Silicon Valley User Group)
HTML5 Overview (Silicon Valley User Group)robinzimmermann
 
WebSocket Perspectives and Vision for the Future
WebSocket Perspectives and Vision for the FutureWebSocket Perspectives and Vision for the Future
WebSocket Perspectives and Vision for the FutureFrank Greco
 
Apache Camel Introduction
Apache Camel IntroductionApache Camel Introduction
Apache Camel IntroductionClaus Ibsen
 
E gov security_tut_session_4_lab
E gov security_tut_session_4_labE gov security_tut_session_4_lab
E gov security_tut_session_4_labMustafa Jarrar
 
HTML5 Real Time and WebSocket Code Lab (SFHTML5, GTUGSF)
HTML5 Real Time and WebSocket Code Lab (SFHTML5, GTUGSF)HTML5 Real Time and WebSocket Code Lab (SFHTML5, GTUGSF)
HTML5 Real Time and WebSocket Code Lab (SFHTML5, GTUGSF)Peter Lubbers
 
High Volume Payments using Mule
High Volume Payments using MuleHigh Volume Payments using Mule
High Volume Payments using MuleAdhish Pendharkar
 
Azure Web App services
Azure Web App servicesAzure Web App services
Azure Web App servicesAlexey Bokov
 
AIR - Framework ( Cairngorm and Parsley )
AIR - Framework ( Cairngorm and Parsley )AIR - Framework ( Cairngorm and Parsley )
AIR - Framework ( Cairngorm and Parsley )senthil0809
 
V2 peter-lubbers-sf-jug-websocket
V2 peter-lubbers-sf-jug-websocketV2 peter-lubbers-sf-jug-websocket
V2 peter-lubbers-sf-jug-websocketbrent bucci
 
HTML5 Webinar - Mind Storm Software
HTML5 Webinar - Mind Storm SoftwareHTML5 Webinar - Mind Storm Software
HTML5 Webinar - Mind Storm SoftwareRomin Irani
 
HTML5 Programming
HTML5 ProgrammingHTML5 Programming
HTML5 Programminghotrannam
 
WebSocket Perspectives and Vision for the Future - HTML5DevConf Oct 2013 SF
WebSocket Perspectives and Vision for the Future - HTML5DevConf Oct 2013 SFWebSocket Perspectives and Vision for the Future - HTML5DevConf Oct 2013 SF
WebSocket Perspectives and Vision for the Future - HTML5DevConf Oct 2013 SFFrank Greco
 

Similar a Robin Zimmermann - HTML5 Offline Web Applications (20)

Html5
Html5Html5
Html5
 
HTML5: the new frontier of the web
HTML5: the new frontier of the webHTML5: the new frontier of the web
HTML5: the new frontier of the web
 
SharePoint 2013 App Provisioning Models
SharePoint 2013 App Provisioning ModelsSharePoint 2013 App Provisioning Models
SharePoint 2013 App Provisioning Models
 
Joomla
JoomlaJoomla
Joomla
 
Joomla
JoomlaJoomla
Joomla
 
Html5 Application Security
Html5 Application SecurityHtml5 Application Security
Html5 Application Security
 
HTML5--The 30,000' View (A fast-paced overview of HTML5)
HTML5--The 30,000' View (A fast-paced overview of HTML5)HTML5--The 30,000' View (A fast-paced overview of HTML5)
HTML5--The 30,000' View (A fast-paced overview of HTML5)
 
HTML5 Overview (Silicon Valley User Group)
HTML5 Overview (Silicon Valley User Group)HTML5 Overview (Silicon Valley User Group)
HTML5 Overview (Silicon Valley User Group)
 
WebSocket Perspectives and Vision for the Future
WebSocket Perspectives and Vision for the FutureWebSocket Perspectives and Vision for the Future
WebSocket Perspectives and Vision for the Future
 
Apache Camel Introduction
Apache Camel IntroductionApache Camel Introduction
Apache Camel Introduction
 
E gov security_tut_session_4_lab
E gov security_tut_session_4_labE gov security_tut_session_4_lab
E gov security_tut_session_4_lab
 
HTML5 Real Time and WebSocket Code Lab (SFHTML5, GTUGSF)
HTML5 Real Time and WebSocket Code Lab (SFHTML5, GTUGSF)HTML5 Real Time and WebSocket Code Lab (SFHTML5, GTUGSF)
HTML5 Real Time and WebSocket Code Lab (SFHTML5, GTUGSF)
 
High Volume Payments using Mule
High Volume Payments using MuleHigh Volume Payments using Mule
High Volume Payments using Mule
 
Azure Web App services
Azure Web App servicesAzure Web App services
Azure Web App services
 
AIR - Framework ( Cairngorm and Parsley )
AIR - Framework ( Cairngorm and Parsley )AIR - Framework ( Cairngorm and Parsley )
AIR - Framework ( Cairngorm and Parsley )
 
V2 peter-lubbers-sf-jug-websocket
V2 peter-lubbers-sf-jug-websocketV2 peter-lubbers-sf-jug-websocket
V2 peter-lubbers-sf-jug-websocket
 
HTML5 Webinar - Mind Storm Software
HTML5 Webinar - Mind Storm SoftwareHTML5 Webinar - Mind Storm Software
HTML5 Webinar - Mind Storm Software
 
HTML5 Programming
HTML5 ProgrammingHTML5 Programming
HTML5 Programming
 
WebSocket Perspectives and Vision for the Future - HTML5DevConf Oct 2013 SF
WebSocket Perspectives and Vision for the Future - HTML5DevConf Oct 2013 SFWebSocket Perspectives and Vision for the Future - HTML5DevConf Oct 2013 SF
WebSocket Perspectives and Vision for the Future - HTML5DevConf Oct 2013 SF
 
Transforming the web into a real application platform
Transforming the web into a real application platformTransforming the web into a real application platform
Transforming the web into a real application platform
 

Último

Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfIngrid Airi González
 
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS:  6 Ways to Automate Your Data IntegrationBridging Between CAD & GIS:  6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integrationmarketing932765
 
React Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkReact Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkPixlogix Infotech
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...itnewsafrica
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Nikki Chapple
 
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotesMuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotesManik S Magar
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Hiroshi SHIBATA
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024TopCSSGallery
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
QCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architecturesQCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architecturesBernd Ruecker
 
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxGenerative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxfnnc6jmgwh
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfpanagenda
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 

Último (20)

Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdf
 
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS:  6 Ways to Automate Your Data IntegrationBridging Between CAD & GIS:  6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integration
 
React Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkReact Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App Framework
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
 
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotesMuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
QCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architecturesQCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architectures
 
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxGenerative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 

Robin Zimmermann - HTML5 Offline Web Applications

  • 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. `