+ All Categories
Home > Technology > Html5 offline

Html5 offline

Date post: 31-May-2015
Category:
Upload: insignia4u
View: 271 times
Download: 0 times
Share this document with a friend
Popular Tags:
20
¿Que es HTML5 offline?
Transcript
Page 1: Html5 offline

¿Que es HTML5 offline?

Page 2: Html5 offline
Page 3: Html5 offline
Page 4: Html5 offline

Terminología

Application cache.

Offlline application caching.

HTML5 offline caching.

Offline web applications.

Page 5: Html5 offline

¿Que podemos hacer con offline application

caching?

Aplicaciones autocontenidas que no requieran mas conexión después de ser instaladas.

Aplicaciones que a pesar de tener recursos cacheados requieran de conexion para poder funcionar.

Page 6: Html5 offline

Browser support

Page 7: Html5 offline

¿Como se implementa HTML5 offline?

Escribir un manifiesto un archivo .manifest

Hacer referencia a este archivo en <html ...>

Servir con content type text/cache-manifest

Page 8: Html5 offline

Formato del manifiesto

CACHE MANIFEST# version 1

CACHE:# recursos accesibles offline

NETWORK:# recursos accesibles online

FALLBACK:# archivo utilizado cuando se intente acceder a un fichero no cacheado y no haya red

Page 9: Html5 offline

Referenciar el manifiesto

<!doctype html><html manifest="myapp.appcache"> <head> </head> <body> </body></html>

Page 10: Html5 offline

Agregar content-type

Si el servidor es apache, por ejemplo, deberíamos agregar esto al archivo de configuración .htaccess

AddType text/cache-manifest .appcache

Page 11: Html5 offline

Cache offline en Rails 3.x

Page 12: Html5 offline

El manifiesto

myapp.appcache.rb

Page 13: Html5 offline

Referenciar manifiesto

Page 14: Html5 offline

Servir manifiesto

controller

routes.rb

mime-type.rb

la vista es el manifiestomyapp.appcache.rb

Page 15: Html5 offline

Proceso de caching

Page 16: Html5 offline

Eventos de appcache

• checking• noupdate• downloading• progress• cached• updateready• obsolete• error

Page 17: Html5 offline

Actualizar la aplicación

Page 18: Html5 offline

Cache del browser

Page 19: Html5 offline

Consideraciones

Web y online son terminos cercanos... pero

5 MB de espacio de cache.

Son muy suceptibles a los errores.

Soporte de los browser.

Page 20: Html5 offline

Recursos


Recommended