Update OOUI to v0.31.2
[lhc/web/wiklou.git] / resources / lib / foreign-resources.yaml
1 # ## Format of this file
2 #
3 # The top-level keys in this file correspond with directories under resources/lib/.
4 # These in turn are registered as module bundles in Resources.php.
5 #
6 # ## How to install an foreign resource
7 #
8 # 1. Add or update the url(s) for the upstream module to this YAML file.
9 #
10 # Look at other modules for examples. To install a module from npm,
11 # we use the tarball distribution from npmjs.org. This is the same as what
12 # the npm CLI uses. For example, to install jquery-client@9.2.0, use:
13 # <https://registry.npmjs.org/jquery-client/-/jquery-client-9.2.0.tgz>.
14 #
15 # 2. If the upstream maintainers publish an integrity hash, set that as well.
16 # Otherwise, use manageForeignResources.php to compute the integrity hash.
17 #
18 # Run `php manageForeignResources.php make-sri "my module name"`
19 #
20 # This will download the specified file(s) and print their integrity hashes,
21 # already formatted in YAML, ready for copying to this file.
22 #
23 # 3. Last but not least, decide where files go.
24 #
25 # If you specified a direct url to JavaScript or CSS file, this step is
26 # optional. See the corresponding documentation section below for more
27 # information and examples for "dest" keys. Once you've set any "dest" keys,
28 # run `php manageForeignResources.php update "my module name"`.
29 #
30 # ## Package formats
31 #
32 # Each top-level key must use one of these types:
33 #
34 # - `file`: For a plain file.
35 # - `multi-file`: For multiple plain files.
36 # - `tar`: For a tarball archive (may be compressed).
37 #
38 # ### The "file" type
39 #
40 # * `src`: Full URL to the remote resource.
41 # * `integrity`: Cryptographic hash (integrity metadata format per <https://www.w3.org/TR/SRI/>).
42 # * `dest`: [optional] The file name to use in the module directory. Default: Basename of URL.
43 #
44 # For example, the following would produce resources/lib/mymodule/x.js:
45 #
46 # mymodule:
47 # type: file
48 # src: https://mymodule.example/1.2.3/x.js
49 # integrity: sha384-Je+NE+saisQuoi
50 #
51 # ### The "multi-file" type
52 #
53 # * `files`: An object mapping destination paths to `src` and `integrity` keys.
54 #
55 # For example:
56 #
57 # mymodule:
58 # type: multi-file
59 # files:
60 # x.js:
61 # src: https://mymodule.example/1.2.3/x.js
62 # integrity: sha384-Je+NE+saisQuoi
63 # x.css:
64 # src: https://mymodule.example/1.2.3/x.css
65 # integrity: sha384-Je+NE+saisQuoi
66 #
67 # ### The "tar" type
68 #
69 # * `src`: Full URL to the remote resource.
70 # * `integrity`: Cryptographic hash (integrity metadata format per <https://www.w3.org/TR/SRI/>).
71 # * `dest`: [optional] The default is to extract all files from the package.
72 # To only extract some of the files or directories, use "dest" to specify
73 # files, directories, and/or glob patterns. You can use a site like https://unpkg.com/
74 # to easily inspect an npm package, like <https://unpkg.com/jquery-client@2.0.2/>.
75 #
76 # For example:
77 #
78 # mymodule:
79 # type: tar
80 # src: https://registry.npmjs.org/jquery-client/-/jquery-client-9.2.0.tgz
81 # integrity: sha384-Je+NE+saisQuoi
82 # dest:
83 # package/dist/x.js:
84 # package/dist/i18n:
85 # package/dist/style/*.css:
86 #
87 # The would extract the "x.js" file, the "i18n" directory (recursive),
88 # and any "*.css" files from the "style" directory.
89 #
90
91 CLDRPluralRuleParser:
92 type: file
93 src: https://raw.githubusercontent.com/santhoshtr/CLDRPluralRuleParser/0dda851/src/CLDRPluralRuleParser.js
94 integrity: sha384-M4taeYYG2+9Ob1/La16iO+zlRRmBV5lBR3xUKkQT6kfkJ0aLbCi6yc0RYI1BDzdh
95
96 easy-deflate:
97 type: multi-file
98 files:
99 deflate.js:
100 src: https://raw.githubusercontent.com/edg2s/Easy-Deflate/7a6056e5302f6f385ff2efa60afda45b4ad81e51/deflate.js
101 integrity: sha384-sHnZLDSWMUhA2w9ygkzCK8YFvoh/fQKY6lXMbvmrYzjuNURiLB0DZFCDNMpGyZ77
102 easydeflate.js:
103 src: https://raw.githubusercontent.com/edg2s/Easy-Deflate/7a6056e5302f6f385ff2efa60afda45b4ad81e51/easydeflate.js
104 integrity: sha384-EwPfP2RMkDPa1HkzQsXgzTsy1KEjcIzQPA1HDS/JPHjvEMvVUsCxWwm1oXql/jk2
105 inflate.js:
106 src: https://raw.githubusercontent.com/edg2s/Easy-Deflate/7a6056e5302f6f385ff2efa60afda45b4ad81e51/inflate.js
107 integrity: sha384-hMg44Hw424mUYvmzKl0JT4J8UU/1YYhTiGRtR0YX/MXNLK9qWTK0d62FBCDGxmxw
108 README.md:
109 src: https://raw.githubusercontent.com/edg2s/Easy-Deflate/7a6056e5302f6f385ff2efa60afda45b4ad81e51/README.md
110 integrity: sha384-6kwcfCLivvqXBZy2ATyya+mTVWLk3eaQyBdC6tbpBtkygnBrM2SNkq3jz/l7IkvP
111
112 html5shiv:
113 type: file
114 src: https://raw.githubusercontent.com/aFarkas/html5shiv/3.7.3/src/html5shiv.js
115 integrity: sha384-RPXhaTf22QktT8KTwZ6bUz/C+7CnccaIw5W/y/t0FW5WSDGj3wc3YtRIJC0w47in
116
117 jquery:
118 type: file
119 src: https://code.jquery.com/jquery-3.3.1.js
120 # Integrity from link modals https://code.jquery.com/jquery/
121 integrity: sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=
122 dest: jquery.js
123
124 jquery.client:
125 type: tar
126 src: https://registry.npmjs.org/jquery-client/-/jquery-client-2.0.2.tgz
127 integrity: sha256-8c8nBbBykHEMc4I7ksdKJvvw/P7WkaC2X46RTPdz/pw=
128 dest:
129 package/AUTHORS.txt:
130 package/jquery.client.js:
131 package/LICENSE-MIT:
132 package/README.md:
133
134 jquery.cookie:
135 type: multi-file
136 files:
137 jquery.cookie.js:
138 src: https://raw.githubusercontent.com/carhartl/jquery-cookie/v1.3.1/jquery.cookie.js
139 integrity: sha384-Xxq63E9KDgzUJ6WPNPqVeOtRIwZyx6y9DzEwY2u6LYKSnWrjSoGtWSKmTindYBf2
140 MIT-LICENSE.txt:
141 src: https://raw.githubusercontent.com/carhartl/jquery-cookie/v1.3.1/MIT-LICENSE.txt
142 integrity: sha384-zYsGf3KJ7S0AhOICjcoh0kkn7aGZlzYUXXX5xz8dwR9KjLMM+/JPR2g/jVOGGeId
143 CHANGELOG.md:
144 src: https://raw.githubusercontent.com/carhartl/jquery-cookie/v1.3.1/CHANGELOG.md
145 integrity: sha384-SQOHhLc7PHxHDQpGE/zv9XfXKL0A7OBu8kuyVDnHVp+zSoWyRw4xUJ+LSm5ql4kS
146
147 jquery.form:
148 type: file
149 src: https://raw.githubusercontent.com/jquery-form/form/ff80d9ddf4/jquery.form.js
150 integrity: sha384-h4G2CrcSbixzMvrrK259cNBYaL/vS1D4+KdUN9NJDzQnTU1bQ6Avluget+Id13M7
151
152 jquery.fullscreen:
153 type: file
154 src: https://raw.githubusercontent.com/theopolisme/jquery-fullscreen/v2.1.0/jquery.fullscreen.js
155 integrity: sha384-G4KPs2d99tgcsyUnJ3eeZ1r2hEKDwZfc4+/xowL/LIemq2VVwEE8HpVAWt4WYNLR
156
157 jquery.hoverIntent:
158 type: file
159 src: https://raw.githubusercontent.com/briancherne/jquery-hoverIntent/823603fdac/jquery.hoverIntent.js
160 integrity: sha384-lca0haN0hqFGGh2aYUhtAgX9dhVHfQnTADH4svDeM6gcXnL7aFGeAi1NYwipDMyS
161
162 jquery.jStorage:
163 type: file
164 src: https://raw.githubusercontent.com/andris9/jStorage/v0.4.12/jstorage.js
165 integrity: sha384-geMeN8k803kPp6cqRL4VNfuSM1L8DcbKRk0St/KHJzxgpX9S0y9FA6HxA/JgucrJ
166
167 jquery.throttle-debounce:
168 type: file
169 src: https://raw.githubusercontent.com/cowboy/jquery-throttle-debounce/v1.1/jquery.ba-throttle-debounce.js
170 integrity: sha384-ULOy4DbAghrCqRcrTJLXOY9e4gDpWh0BeEf6xMSL0VtNudXWggcb6AmrVrl4KDAP
171
172 moment:
173 type: tar
174 src: https://codeload.github.com/moment/moment/tar.gz/2.24.0
175 integrity: sha384-2/I9rfqkN8AAgh5wOXXphuo827uV7lMmOodrCfIvqC6W6JKKiDGOwd+lE3e8R0yz
176 dest:
177 moment-2.24.0/moment.js:
178 moment-2.24.0/CHANGELOG.md:
179 moment-2.24.0/README.md:
180 moment-2.24.0/LICENSE:
181 moment-2.24.0/locale/*.js: locale
182
183 mustache:
184 type: multi-file
185 files:
186 mustache.js:
187 src: https://raw.githubusercontent.com/janl/mustache.js/v1.0.0/mustache.js
188 integrity: sha384-k2UYqmzoiq/qgIzZvcYBxbXQW4YdPAsXDOTkHTGb9TCZ9sjCkyT4TlaUN0wQRkql
189 LICENSE:
190 src: https://raw.githubusercontent.com/janl/mustache.js/v1.0.0/LICENSE
191 integrity: sha384-MYVwXwula9+YkyXexOJVZ0v0DaVvG22uX57mNq5Di+7u8OH9EG9q3yuXkp1Iehiq
192
193 oojs:
194 type: tar
195 src: https://registry.npmjs.org/oojs/-/oojs-2.2.2.tgz
196 integrity: sha256-ebgQW2EGrSkBCnDJBGqDpsBDjA3PMN/M8U5DyLHt9mw=
197 dest:
198 package/dist/oojs.jquery.js:
199 package/AUTHORS.txt:
200 package/LICENSE-MIT:
201 package/README.md:
202
203 oojs-router:
204 type: tar
205 src: https://registry.npmjs.org/oojs-router/-/oojs-router-0.2.0.tgz
206 integrity: sha384-VngYqdQ3vTDMXbm4e4FUZCCGos7fB0Jkr9V+kBL5MElprK1h0yQZOzBNnMHtSJS/
207 dest:
208 package/dist/oojs-router.js:
209 package/LICENSE:
210 package/AUTHORS.txt:
211 package/History.md:
212
213 ooui:
214 type: tar
215 src: https://registry.npmjs.org/oojs-ui/-/oojs-ui-0.31.2.tgz
216 integrity: sha384-nwfvB5KB4o+jB6NdmyyJLFTW0KzWvyKKPFT5fQvnfraNu6OTBmRKUw/JsB4PQRS/
217 dest:
218 # Main stuff
219 package/dist/oojs-ui-core.js{,.map.json}:
220 package/dist/oojs-ui-core-{wikimediaui,apex}.css:
221 package/dist/oojs-ui-widgets.js{,.map.json}:
222 package/dist/oojs-ui-widgets-{wikimediaui,apex}.css:
223 package/dist/oojs-ui-toolbars.js{,.map.json}:
224 package/dist/oojs-ui-toolbars-{wikimediaui,apex}.css:
225 package/dist/oojs-ui-windows.js{,.map.json}:
226 package/dist/oojs-ui-windows-{wikimediaui,apex}.css:
227 package/dist/oojs-ui-{wikimediaui,apex}.js{,.map.json}:
228 package/dist/i18n:
229 package/dist/images:
230 # WikimediaUI theme
231 package/dist/themes/wikimediaui/images/icons/*.{svg,png}: themes/wikimediaui/images/icons
232 package/dist/themes/wikimediaui/images/indicators/*.{svg,png}: themes/wikimediaui/images/indicators
233 package/dist/themes/wikimediaui/images/textures/*.{gif,svg}: themes/wikimediaui/images/textures
234 package/dist/themes/wikimediaui/*.json: themes/wikimediaui
235 package/dist/wikimedia-ui-base.less:
236 # Apex theme (icons, indicators, and textures)
237 package/dist/themes/apex/*.json: themes/apex
238 # Misc stuff
239 package/dist/AUTHORS.txt:
240 package/dist/History.md:
241 package/dist/LICENSE-MIT:
242 package/dist/README.md:
243
244 qunitjs:
245 type: multi-file
246 # Integrity from link modals at https://code.jquery.com/qunit/
247 files:
248 qunit.js:
249 src: http://code.jquery.com/qunit/qunit-2.9.1.js
250 integrity: sha256-eNccBdxd8zReziWcVjEsPeyJDi3LKMYnzMXyDv8bzsU=
251 qunit.css:
252 src: https://code.jquery.com/qunit/qunit-2.9.1.css
253 integrity: sha256-SSS7o92V7wzcIFg3qnJL9mc4msePaT4klbxtuSGvVVo=
254
255 sinonjs:
256 type: file
257 src: https://sinonjs.org/releases/sinon-1.17.7.js
258 integrity: sha384-wR63Jwy75KqwBfzCmXd6gYws6uj3qV/XMAybzXrkEYGYG3AQ58ZWwr1fVpkHa5e8
259 dest: sinon.js