Manual:ManageForeignResources.php/zh
MediaWiki文件: manageForeignResources.php | |
---|---|
位置: | maintenance/ |
源代码: | master • 1.38.2 • 1.37.3 • 1.35.7 |
类: | ManageForeignResources |
Details
manageForeignResources.php is a maintenance script that manages foreign resources registered with ResourceLoader.
This helps developers with downloading, verifying, and updating local copies of upstream libraries registered as ResourceLoader modules. 参见resources/lib/foreign-resources.yaml。
Options/Arguments
选项 | Description | 必需 | 默认值 |
---|---|---|---|
action | One of "update", "verify" or "make-sri" | Required | |
module | Name of a single module | Optional | all |
--verbose | Be verbose | Optional |
Use the update action to download URLs specified in foreign-resources.yaml and unpack them to the resources directory. This will also verify them against the integrity hashes.
Use the verify action to verify that the files currently in the resources directory match what "update" would replace them with. This is effectively a dry run and will not change any module resources on disk.
Use the make-sri action to compute an integrity hash for upstreams that do not publish one themselves. Add or update the URLs in foreign-resources.yaml as needed, but omit (or leave empty) the "integrity" key. Then, run the "make-sri" action for the module, and copy the integrity into the file. Then, you can use "verify" or "update" normally.
用法
php maintenance/manageForeignResources.php actionName [ moduleName| --verbose ]
Updating foreign resources
$ php maintenance/manageForeignResources.php update ... updating 'CLDRPluralRuleParser' ... updating 'html5shiv' ... updating 'jquery' ... updating 'jquery.chosen' ... updating 'jquery.client' ... updating 'jquery.cookie' ... updating 'jquery.form' ... updating 'jquery.fullscreen' ... updating 'jquery.hoverIntent' ... updating 'jquery.i18n' ... updating 'jquery.jStorage' ... updating 'jquery.throttle-debounce' ... updating 'moment' ... updating 'mustache' ... updating 'oojs' ... updating 'oojs-router' ... updating 'ooui' ... updating 'pako' ... updating 'promise-polyfill' ..............................
Verifying a module
$ php maintenance/manageForeignResources.php verify oojs ... verifying 'oojs' Done!
Common errors
- Unknown module name
As of 25 Oct 2021, the module name must be one of:
CLDRPluralRuleParser, html5shiv, jquery, jquery.chosen, jquery.client,
jquery.cookie, jquery.form, jquery.fullscreen, jquery.hoverIntent, jquery.i18n,
jquery.jStorage, jquery.throttle-debounce, moment, mustache, oojs, oojs-router,
ooui, pako, promise-polyfill, qunitjs, sinonjs, vue, vuex.