Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7E7C418F91 for ; Fri, 29 Jan 2016 00:43:21 +0000 (UTC) Received: (qmail 55791 invoked by uid 500); 29 Jan 2016 00:43:16 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 55764 invoked by uid 500); 29 Jan 2016 00:43:16 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 55755 invoked by uid 99); 29 Jan 2016 00:43:16 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Jan 2016 00:43:16 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 1D669DFFF4; Fri, 29 Jan 2016 00:43:16 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: dblotsky@apache.org To: commits@cordova.apache.org Message-Id: <00ccf7cf1122477cb0e3c1e1a45d9c33@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: docs commit: Fixed one wrong link in docs and also changed the links to reference links. This closes #469. Date: Fri, 29 Jan 2016 00:43:16 +0000 (UTC) Repository: cordova-docs Updated Branches: refs/heads/master e8a2c159a -> ba05989c5 Fixed one wrong link in docs and also changed the links to reference links. This closes #469. Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/ba05989c Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/ba05989c Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/ba05989c Branch: refs/heads/master Commit: ba05989c5abb87496ee50d82550891b006f47fe7 Parents: e8a2c15 Author: Sarangan Rajamanickam Authored: Wed Jan 27 11:10:39 2016 -0800 Committer: Dmitry Blotsky Committed: Thu Jan 28 17:43:01 2016 -0700 ---------------------------------------------------------------------- www/docs/en/dev/cordova/storage/storage.md | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/ba05989c/www/docs/en/dev/cordova/storage/storage.md ---------------------------------------------------------------------- diff --git a/www/docs/en/dev/cordova/storage/storage.md b/www/docs/en/dev/cordova/storage/storage.md index bbbb9d5..729032c 100644 --- a/www/docs/en/dev/cordova/storage/storage.md +++ b/www/docs/en/dev/cordova/storage/storage.md @@ -25,21 +25,19 @@ title: Storage > An overview of storage options for Cordova. Several storage APIs are available for Cordova applications. -See -[html5rocks](http://www.html5rocks.com/en/features/storage). -for a more complete overview and examples. +See [html5rocks][Html5RocksStorage], for a more complete overview and examples. ## LocalStorage Also known as _web storage_, _simple storage_, or by its alternate _session storage_ interface, this API provides synchronous key/value pair storage, and is available in underlying WebView implementations. -Refer to [the W3C spec](http://www.w3.org/TR/webstorage/) for details. +Refer to the [W3C spec][W3CSpecStorage] for details. ## WebSQL This API is available in the underlying WebView. -The [Web SQL Database Specification](http://dev.w3.org/html5/webdatabase/) +The [Web SQL Database Specification][WebSQLDatabaseSpecification] offers more full-featured database tables accessed via SQL queries. The following platforms support WebSQL: @@ -51,7 +49,7 @@ The following platforms support WebSQL: ## IndexedDB This API is available in the underlying WebView. -[Indexed DB](http://www.w3.org/TR/IndexedDB/) offers more features +[Indexed DB][IndexedDB] offers more features than LocalStorage but fewer than WebSQL. The following platforms support IndexedDB: @@ -64,6 +62,12 @@ The following platforms support IndexedDB: ## Plugin-Based Options In addition to the storage APIs listed above, the -[File API](https://github.com/apache/cordova-plugin-file/blob/master/doc/index.md) -allows you to cache data on the local file system. Other -[Cordova plugins](http://plugins.cordova.io/) provide similar storage options. +[File API][FileAPI] allows you to cache data on the local file system. Other +[Cordova plugins][CordovaPlugins] provide similar storage options. + +[Html5RocksStorage]: http://www.html5rocks.com/en/features/storage +[W3CSpecStorage]: http://www.w3.org/TR/webstorage/ +[WebSQLDatabaseSpecification]: http://dev.w3.org/html5/webdatabase/ +[IndexedDB]: http://www.w3.org/TR/IndexedDB/ +[FileAPI]: https://github.com/apache/cordova-plugin-file/blob/master/README.md +[CordovaPlugins]: {{ site.baseurl }}/plugins --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org For additional commands, e-mail: commits-help@cordova.apache.org