Codebase list jquery-colorbox / 0a7e6d2
Imported Debian patch 1.3.20-1 Agustin Henze 11 years ago
6 changed file(s) with 103 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 jquery-colorbox (1.3.20-1) unstable; urgency=low
1
2 * Initial release. (Closes: #692359)
3
4 -- Agustin Henze <tin@sluc.org.ar> Mon, 05 Nov 2012 07:28:17 -0300
0 Source: jquery-colorbox
1 Section: web
2 Priority: optional
3 Maintainer: Agustin Henze <tin@sluc.org.ar>
4 Build-Depends: debhelper (>= 9)
5 Build-Depends-Indep: yui-compressor
6 Standards-Version: 3.9.3
7
8
9 Package: libjs-jquery-colorbox
10 Architecture: all
11 Depends: ${misc:Depends}, libjs-jquery
12 Recommends: javascript-common
13 Homepage: http://www.jacklmoore.com/colorbox
14 Description: jQuery customizable lightbox
15 A lightweight customizable lightbox plugin for jQuery. It supports photos,
16 photo groups, slideshow, Ajax, inline, and Iframed content.
17 .
18 Features:
19 * Lightweight: 10KB of JavaScript (less than 5KBs gzipped).
20 * Appearance is controlled through CSS so it can be restyled.
21 * Can be extended with callbacks & event-hooks without altering the source
22 files.
23 * Completely unobtrusive, options are set in the JS and require no changes to
24 existing HTML.
25 * Preloads upcoming images in a photo group.
26 * Well vetted. ColorBox is one of the top jQuery plugins.
0 Files: *
1 Copyright: (c) 2012 Jack Moore - jacklmoore.com
2 Homepage: http://www.jacklmoore.com/colorbox
3 License: MIT
4
5 License: MIT
6 Permission is hereby granted, free of charge, to any person
7 obtaining a copy of this software and associated documentation
8 files (the "Software"), to deal in the Software without
9 restriction, including without limitation the rights to use,
10 copy, modify, merge, publish, distribute, sublicense, and/or sell
11 copies of the Software, and to permit persons to whom the
12 Software is furnished to do so, subject to the following
13 conditions:
14 .
15 The above copyright notice and this permission notice shall be
16 included in all copies or substantial portions of the Software.
17 .
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
20 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
22 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
23 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
24 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
25 OTHER DEALINGS IN THE SOFTWARE.
26
27 Files: debian/*
28 Copyright: (C) 2012 Agustin Henze <tin@sluc.org.ar>
29 License: GPL-3
30 This package is free software; you can redistribute it and/or modify
31 it under the terms of the GNU General Public License as published by
32 the Free Software Foundation; either version 3 of the License, or
33 (at your option) any later version.
34
35 This package is distributed in the hope that it will be useful,
36 but WITHOUT ANY WARRANTY; without even the implied warranty of
37 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
38 GNU General Public License for more details.
39
40 You should have received a copy of the GNU General Public License
41 along with this package; if not, write to the Free Software
42 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
43
44 On Debian systems, the complete text of the GNU General
45 Public License can be found in `/usr/share/common-licenses/GPL-3'.
0 #!/usr/bin/make -f
1 # -*- makefile -*-
2
3 # Uncomment this to turn on verbose mode.
4 #export DH_VERBOSE=1
5
6 %:
7 dh $@
8
9 override_dh_auto_install:
10 mkdir -p debian/libjs-jquery-colorbox/usr/share/javascript/jquery-colorbox
11
12 yui-compressor \
13 colorbox/jquery.colorbox.js \
14 -o \
15 debian/libjs-jquery-colorbox/usr/share/javascript/jquery-colorbox/jquery.colorbox-min.js
16
17 dh_install \
18 colorbox/jquery.colorbox.js \
19 usr/share/javascript/jquery-colorbox/
20
21 override_dh_installchangelogs:
22 dh_installchangelogs README.md
0 3.0 (quilt)