Codebase list libjs-chosen / 5dc55eb
Import Debian changes 0.9.11-2 libjs-chosen (0.9.11-2) unstable; urgency=medium * Refer to MIT license as Expat * Fix Homepage (Closes: #719068) * Make get-orig-source target more efficient * Add ownCloud for Debian to uploaders * Bump standards version to 3.9.5 * Remove self from copyright holders * Sanitize examples * Add upstream changelog David Prévot authored 9 years ago Xavier Guimard committed 5 years ago
9 changed file(s) with 134 addition(s) and 14 deletion(s). Raw diff Collapse all Expand all
0 libjs-chosen (0.9.11-2) unstable; urgency=medium
1
2 * Refer to MIT license as Expat
3 * Fix Homepage (Closes: #719068)
4 * Make get-orig-source target more efficient
5 * Add ownCloud for Debian to uploaders
6 * Bump standards version to 3.9.5
7 * Remove self from copyright holders
8 * Sanitize examples
9 * Add upstream changelog
10
11 -- David Prévot <taffit@debian.org> Thu, 31 Jul 2014 14:27:22 -0400
12
013 libjs-chosen (0.9.11-1) unstable; urgency=low
114
215 * Initial release. (Closes: #714120)
11 Section: web
22 Priority: optional
33 Maintainer: Debian JavaScript Maintainers <pkg-javascript-devel@lists.alioth.debian.org>
4 Uploaders: David Prévot <taffit@debian.org>
4 Uploaders: David Prévot <taffit@debian.org>,
5 ownCloud for Debian maintainers <pkg-owncloud-maintainers@lists.alioth.debian.org>
56 Build-Depends: coffeescript, debhelper (>= 9), node-uglify
6 Standards-Version: 3.9.4
7 Homepage: http://mozilla.github.com/pdf.js/
7 Standards-Version: 3.9.5
8 Homepage: http://harvesthq.github.io/chosen/
89 Vcs-Git: git://anonscm.debian.org/pkg-javascript/libjs-chosen.git
910 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-javascript/libjs-chosen.git
1011
44
55 Files: *
66 Copyright: 2011, Harvest <http://getharvest.com>
7 License: MIT
7 License: Expat
88
9 Files: debian/*
10 Copyright: 2013, David Prévot <taffit@debian.org>
11 License: MIT
12
13 License: MIT
9 License: Expat
1410 Permission is hereby granted, free of charge, to any person obtaining a copy
1511 of this software and associated documentation files (the "Software"), to deal
1612 in the Software without restriction, including without limitation the rights
0 example.jquery.html
1 example.proto.html
0 example.*
0 chosen/* /usr/share/javascript/chosen
0 chosen/* usr/share/javascript/chosen
0 From: =?utf-8?q?David_Pr=C3=A9vot?= <taffit@debian.org>
1 Date: Thu, 31 Jul 2014 13:28:51 -0400
2 Subject: Do not pick JavaScript from Google
3
4 ---
5 example.jquery.html | 2 +-
6 example.proto.html | 2 +-
7 2 files changed, 2 insertions(+), 2 deletions(-)
8
9 diff --git a/example.jquery.html b/example.jquery.html
10 index ee3e826..1a59040 100644
11 --- a/example.jquery.html
12 +++ b/example.jquery.html
13 @@ -1358,7 +1358,7 @@
14 </ol>
15
16 </div>
17 - <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js" type="text/javascript"></script>
18 + <script src="jquery/jquery.min.js" type="text/javascript"></script>
19 <script src="chosen/chosen.jquery.js" type="text/javascript"></script>
20 <script type="text/javascript"> $(".chzn-select").chosen(); $(".chzn-select-deselect").chosen({allow_single_deselect:true}); </script>
21 </form>
22 diff --git a/example.proto.html b/example.proto.html
23 index 6ffb471..bedc177 100644
24 --- a/example.proto.html
25 +++ b/example.proto.html
26 @@ -1357,7 +1357,7 @@
27 </ol>
28
29 </div>
30 - <script src="https://ajax.googleapis.com/ajax/libs/prototype/1.7.0.0/prototype.js" type="text/javascript"></script>
31 + <script src="prototype/prototype.js" type="text/javascript"></script>
32 <script src="chosen/chosen.proto.js" type="text/javascript"></script>
33 <script type="text/javascript">
34 document.observe('dom:loaded', function(evt) {
0 0001-Do-not-pick-JavaScript-from-Google.patch
22 dh $@
33
44 override_dh_auto_build:
5 rm -f chosen/*.js
65 cake.coffeescript build
76 dh_auto_build
87
8 override_dh_auto_clean:
9 rm -f chosen/*.js
10 dh_auto_clean
11
12 override_dh_installchangelogs:
13 dh_installchangelogs debian/upstream/changelog
14
915 get-orig-source:
10 uscan --verbose
16 uscan --verbose --rename --force
0 12 Dec 2012 - v0.9.11
1
2 Retain Select Classes, Disable Split Words
3
4 Add an option to inherit initial select classes
5
6 When enabled, this option will grab any class names off the initial select and add them to Chosen's container div:
7
8 Take:
9
10 <select id="copyClasses" classes="this-class-comes-with">
11 ...
12 </select>
13
14 Run:
15
16 $("#copyClasses").chosen({ inherit_select_classes: true; });
17
18 Get:
19
20 <div id="copyClasses_chzn" class="... this-class-comes-with">
21 ...
22 </div>
23
24 (#917)
25 Add an option to disable searching split words
26
27 By default, Chosen will attempt to search across words by splitting option text at a space. For example, a search of "Stat" will match "United States". This can now be disabled:
28
29 $("select").chosen({ enable_split_word_search: false });
30
31 (#824, #940)
32
33
34 5 Dec 2012 - v0.9.10
35
36 Copy Select Title, Bug Fixes
37
38 Improvements
39
40 Handle select title (#914): applies a select's title attribute to Chosen's container div if it exists.
41
42 Bug Fixes
43
44 Fiexd Firefox mousedown drag issue (#902)
45 Fixed the handling of ctrl key for multiple select (#916)
46 Fixed multiple select placeholder clipping bug (#920)
47 Expose Chosen to the window object (#929)
48
49
50 28 Nov 2012 - v0.9.9
51
52 12 Mar 2012 - v0.9.8
53
54 19 Jan 2012 - v0.9.7
55
56 12 Jan 2012 - v0.9.6
57
58 30 Sep 2011 - v0.9.5
59
60 29 Sep 2011 - v0.9.4
61
62 12 Sep 2011 - v0.9.3
63
64 12 Sep 2011 - v0.9.2
65
66 1 Aug 2011 - v0.9.1
67
68 31 Jul 2011 - v0.9