You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by db...@apache.org on 2016/01/29 01:43:16 UTC

docs commit: Fixed one wrong link in docs and also changed the links to reference links. This closes #469.

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 <sa...@microsoft.com>
Authored: Wed Jan 27 11:10:39 2016 -0800
Committer: Dmitry Blotsky <dm...@gmail.com>
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