Commit 3dc144e9 authored by Tristan Cavelier's avatar Tristan Cavelier

Removing dead links from README.md

parent c258f3a8
...@@ -60,7 +60,7 @@ jIO is separated in 2 parts, core library and storage library(ies). The core mus ...@@ -60,7 +60,7 @@ jIO is separated in 2 parts, core library and storage library(ies). The core mus
Getting started Getting started
--------------- ---------------
This short tutorial is designed to help you get started using jIO. First, download the jIO [core](http://git.erp5.org/gitweb/ung.git/blob_plain/refs/heads/master:/OfficeJS/lib/jio/jio.js?js=1) ([min](http://git.erp5.org/gitweb/ung.git/blob_plain/refs/heads/master:/OfficeJS/lib/jio/jio.min.js?js=1)) and the jIO [storages](http://git.erp5.org/gitweb/ung.git/blob_plain/refs/heads/master:/OfficeJS/lib/jio/jio.storage.js?js=1) ([min](http://git.erp5.org/gitweb/ung.git/blob_plain/refs/heads/master:/OfficeJS/lib/jio/jio.storage.min.js?js=1)) scripts and their dependencies ([LocalOrCookieStorage](http://git.erp5.org/gitweb/ung.git/blob_plain/refs/heads/master:/OfficeJS/lib/jio/localorcookiestorage.js?js=1) ([min](http://git.erp5.org/gitweb/ung.git/blob_plain/refs/heads/master:/OfficeJS/lib/jio/localorcookiestorage.min.js?js=1)), [jQuery](http://jquery.com), [base64](http://www.webtoolkit.info/javascript-base64.html), [sjcl](http://crypto.stanford.edu/sjcl/), [sha2](http://anmar.eu.org/projects/jssha2/)). Then, add the scripts in your HTML page as following: This short tutorial is designed to help you get started using jIO. First, download the jIO core and the jIO storages scripts (git clone http://git.erp5.org/repos/jio.git) and their dependencies ([LocalOrCookieStorage](http://git.erp5.org/gitweb/jio.git/blob_plain/refs/heads/master:/src/localorcookiestorage.js), [jQuery](http://jquery.com), [base64](http://www.webtoolkit.info/javascript-base64.html), [sjcl](http://crypto.stanford.edu/sjcl/), [sha2](http://anmar.eu.org/projects/jssha2/)). Then, add the scripts in your HTML page as following:
``` ```
<!-- jIO Core --> <!-- jIO Core -->
...@@ -138,20 +138,19 @@ These are the available storage descriptions provided by jio.storage.js: ...@@ -138,20 +138,19 @@ These are the available storage descriptions provided by jio.storage.js:
`{"type":"conflictmanager","storage":<storagedescription>}` `{"type":"conflictmanager","storage":<storagedescription>}`
For developers For developers
============== ==============
Quick start Quick start
----------- -----------
+ **Clone repository** `git clone http://git.erp5.org/repos/ung.git`. Sources are there: `${repo}/OfficeJS/src/`. + **Clone repository** `git clone http://git.erp5.org/repos/jio.git`. Sources are there: `${repo}/src/`.
+ **Build** - Go to `${repo}/OfficeJS/grunt/`, and you can execute the script `gruntall` or build everycomponent manually with `make`. + **Build** - Go to `${repo}/grunt/`, and you can execute the script `gruntall` or build everycomponent manually with `make`.
+ **Dependencies** - [Grunt](https://github.com/cowboy/grunt) - [JSHint](https://github.com/jshint/jshint) - [UglifyJS](https://github.com/mishoo/UglifyJS) - [PhantomJS](http://phantomjs.org) + **Dependencies** - [Grunt](https://github.com/cowboy/grunt) - [JSHint](https://github.com/jshint/jshint) - [UglifyJS](https://github.com/mishoo/UglifyJS) - [PhantomJS](http://phantomjs.org)
+ **Tests** - Go to `${repo}/OfficeJS/tests/`, and you can open `jiotests_withoutrequirejs.html` from localhost. (Tests with requireJS are not available yet.) + **Tests** - Go to `${repo}/tests/`, and you can open `jiotests_withoutrequirejs.html` from localhost. (Tests with requireJS are not available yet.)
How to design your own jIO Storage Library How to design your own jIO Storage Library
----------------------------------------- -----------------------------------------
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment