diff --git a/README.md b/README.md index 1e12091079..aeee69e227 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ [![Travis CI Status](https://secure.travis-ci.org/openlayers/ol3.png)](http://travis-ci.org/#!/openlayers/ol3) -Welcome to OpenLayers 3! +Welcome to [OpenLayers 3](http://ol3js.org/)! -To see OpenLayers 3 in action you can look at the live examples on -http://openlayers.github.io/ol3/master/examples/. If you want to contribute -to OpenLayers 3 please read the [CONTRIBUTING](CONTRIBUTING.md) page. +Check out the [hosted examples](http://ol3js.org/en/master/examples/) or poke around the evolving [API docs](http://ol3js.org/en/master/apidoc/). + +Please see our guide on [contributing](CONTRIBUTING.md) if you're interested in getting involved. diff --git a/build.py b/build.py index 8077cb40a8..1da19aaf49 100755 --- a/build.py +++ b/build.py @@ -574,20 +574,6 @@ def plovr_jar(t): t.info('downloaded %r', t.name) -@target('gh-pages', 'host-examples', 'doc', phony=True) -def gh_pages(t): - with t.tempdir() as tempdir: - t.run('%(GIT)s', 'clone', '--branch', 'gh-pages', - 'git@github.com:openlayers/ol3.git', tempdir) - with t.chdir(tempdir): - t.rm_rf('%(BRANCH)s') - t.cp_r('build/gh-pages/%(BRANCH)s', tempdir + '/%(BRANCH)s') - with t.chdir(tempdir): - t.run('%(GIT)s', 'add', '--all', '%(BRANCH)s') - t.run('%(GIT)s', 'commit', '--message', 'Updated') - t.run('%(GIT)s', 'push', 'origin', 'gh-pages') - - virtual('doc', 'build/jsdoc-%(BRANCH)s-timestamp' % vars(variables)) diff --git a/doc/index.md b/doc/index.md index 1fb377193a..e7fa1d4d02 100644 --- a/doc/index.md +++ b/doc/index.md @@ -1,5 +1,5 @@ -Finding your way round ----------------------- +Finding your way around +----------------------- See the class list to the right and especially take a look at {@link ol.Map} and {@link ol.layer.Layer} because those are the central objects. In general every use of OpenLayers starts by initializing a map, then adding the required layers. Controls and interactions can be added to change the behavior of the map.