Skip to content

Commit

Permalink
Include GNU license snippet in file headers and README
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Petryk committed Jan 20, 2015
1 parent 19bd511 commit d5549ea
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 17 deletions.
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

A lightweight jQuery plugin for viewing JPIP images.

*Copyright 2001-2015 AgileSrc LLC.*

## Introduction
The goal when designing jpip.js was to have a lightweight yet user-friendly user interface for viewing JPIP images on a variety of devices.

Expand Down Expand Up @@ -44,3 +42,20 @@ $('#jpipViewer').jpipViewer('some_image.jp2', { /* options */ });
| `server` | String | `"http://localhost:8080/adore-djatoka/resolver"` | The path to where your copy of the Djatoka server is running.
| `initialZoom` | Number | `1` | An integer greater than or equal to 1 stating how much the view should initially be zoomed in
| `showNavButtons` | Boolean | `true` | Whether or not the navigation portion of the UI should be visible

## License

*Copyright © 2001-2015 AgileSrc LLC.*

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
21 changes: 13 additions & 8 deletions dist/jquery.jpip.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
/*
* Copyright 2001-2015 AgileSrc LLC
/**
* Copyright © 2001-2015 AgileSrc LLC.
*
* Unless required by applicable law or agreed to in writing, software
* distributed is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This file is a part of the jpip-js project, which is licensed under Version 3 of the GNU General
* Public License, a copy of which can be found in LICENSE.txt at the root of the project directory,
* or at http://www.gnu.org/licenses/gpl.txt.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

@import "../bower_components/Jcrop/css/jquery.Jcrop.min.css";
Expand Down
20 changes: 13 additions & 7 deletions dist/jquery.jpip.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
/**
* Copyright 2001-2015 AgileSrc LLC
* Copyright © 2001-2015 AgileSrc LLC.
*
* Unless required by applicable law or agreed to in writing, software
* distributed is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This file is a part of the jpip-js project, which is licensed under Version 3 of the GNU General
* Public License, a copy of which can be found in LICENSE.txt at the root of the project directory,
* or at http://www.gnu.org/licenses/gpl.txt.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

(function ($) {
$.fn.jpipViewer = function(image, options) {
return this.each(function() {
Expand Down

0 comments on commit d5549ea

Please sign in to comment.