2013-02-15 01:59:40 +04:00
# OpenSeadragon
2011-12-02 00:26:17 +04:00
2013-04-20 11:38:10 +04:00
An open-source, web-based viewer for zoomable images, implemented in pure JavaScript.
2011-12-02 00:26:17 +04:00
2013-04-22 21:34:26 +04:00
See it in action at http://openseadragon.github.io/.
2011-12-02 00:26:17 +04:00
2013-04-23 04:27:55 +04:00
## Stable Builds
2013-04-22 21:32:23 +04:00
2013-04-24 05:19:04 +04:00
See our [releases page ](http://openseadragon.github.io/releases/ ).
2013-01-24 09:11:32 +04:00
2013-02-22 01:46:11 +04:00
## First Time Setup
2011-12-02 00:26:17 +04:00
2013-02-22 01:46:11 +04:00
All command-line operations are scripted using [Grunt ](http://gruntjs.com/ ) which is based on [Node.js ](http://nodejs.org/ ). To get set up:
2013-03-12 21:43:37 +04:00
1. Install Node, if you haven't already (available at the link above)
1. Install the Grunt command line runner (if you haven't already); on the command line, run `npm install -g grunt-cli`
2013-02-22 01:46:11 +04:00
1. Clone the openseadragon repository
1. On the command line, go in to the openseadragon folder
1. Run `npm install`
You're set... continue reading for build and test instructions.
## Building from Source
2011-12-06 07:50:25 +04:00
2013-02-22 01:46:11 +04:00
To build, just run (on the command line, in the openseadragon folder):
2011-12-06 07:50:25 +04:00
2013-02-15 01:59:40 +04:00
grunt
2012-04-11 01:02:24 +04:00
2013-02-15 01:59:40 +04:00
If you want Grunt to watch your source files and rebuild every time you change one, use:
2012-04-11 01:02:24 +04:00
2013-02-15 01:59:40 +04:00
grunt watch
The built files appear in the `build` folder.
2013-02-22 01:46:11 +04:00
If you want to build tar and zip files for distribution (they will also appear in the `build` folder), use:
2013-02-15 23:00:07 +04:00
grunt package
2013-02-27 21:59:51 +04:00
Note that the `build` folder is masked with .gitignore; it's just for your local use, and won't be checked in to the repository.
You can also publish the built version to the site-build repository. This assumes you have cloned it next to this repository. The command is:
grunt publish
2013-04-23 04:13:42 +04:00
... which will delete the existing openseadragon folder, along with the .zip and .tar.gz files, out of the site-build folder and replace them with newly built ones from the source in this repository; you'll then need to commit the changes to site-build.
2013-02-27 21:59:51 +04:00
2013-02-15 01:59:40 +04:00
## Testing
2013-02-15 02:02:32 +04:00
Our tests are based on [QUnit ](http://qunitjs.com/ ) and [PhantomJS ](http://phantomjs.org/ ); they're both installed when you run `npm install` . At the moment we don't have much in the way of tests, but we're working to fix that. To run on the command line:
2013-02-15 01:59:40 +04:00
grunt test
If you wish to work interactively with the tests or test your changes:
2013-02-22 01:46:11 +04:00
grunt connect watch
2013-02-15 01:59:40 +04:00
and open `http://localhost:8000/` in your browser
2013-03-28 20:43:11 +04:00
## Contributing
OpenSeadragon is truly a community project; we welcome your involvement!
When contributing, please attempt to match the code style already in the codebase. Note that we use four spaces per indentation stop. For more thoughts on code style, see https://github.com/rwldrn/idiomatic.js/.
2013-05-07 20:27:37 +04:00
When fixing bugs and adding features, when appropriate please also:
* Update changelog.txt
* Add/update related unit tests
2013-05-07 20:50:20 +04:00
* Update related doc comments
2013-05-07 20:27:37 +04:00
2013-04-26 21:06:31 +04:00
If you're new to the project, check out our [good first bug ](https://github.com/openseadragon/openseadragon/issues?labels=good+first+bug&page=1&state=open ) issues for some places to dip your toe in the water.
2013-05-01 09:06:42 +04:00
## License
2013-02-15 01:59:40 +04:00
2013-05-01 09:06:42 +04:00
OpenSeadragon is released under the New BSD license. For details, see the file LICENSE.txt.
2013-02-18 22:03:04 +04:00
2013-02-22 01:20:32 +04:00
[![Build Status ](https://secure.travis-ci.org/openseadragon/openseadragon.png?branch=master )](http://travis-ci.org/openseadragon/openseadragon)