Overview
Comment: | [doc] update about build |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | doc |
Files: | files | file ages | folders |
SHA3-256: |
239ec6803aa72f6f94060db15ddf0a32 |
User & Date: | olr on 2017-08-08 18:52:42 |
Other Links: | manifest | tags |
Context
2017-08-09
| ||
18:30 | [fr] nr: de manière/façon +adj check-in: e9ee3b60ab user: olr tags: trunk, fr | |
2017-08-08
| ||
18:52 | [doc] update about build check-in: 239ec6803a user: olr tags: trunk, doc | |
13:19 | [fr] nr: quand/lorsque + indicatif check-in: 9d7f87eaae user: olr tags: trunk, fr | |
Changes
Modified doc/build.md from [0d772932a8] to [28ea36b703].
︙ | ︙ | |||
49 50 51 52 53 54 55 | `-i --install` > Install the LibreOffice extension. `-fx --firefox` | > > > > > | | | 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | `-i --install` > Install the LibreOffice extension. `-fx --firefox` > Launch Firefox Developper (before Firefox 57). > Unit tests can be lanched from Firefox, with CTRL+SHIFT+F12. `-we --webext` > Launch Firefox Nightly (Firefox 57+). > Unit tests can be lanched from the menu. `-tb --thunderbird` > Launch Thunderbird. ## Examples ## |
︙ | ︙ |
Modified make.py from [18d1b24a9f] to [85e48b7599].
︙ | ︙ | |||
283 284 285 286 287 288 289 | xParser.add_argument("-bb", "--build_data_before", help="launch build_data.py (only part 1: before dictionary building)", action="store_true") xParser.add_argument("-ba", "--build_data_after", help="launch build_data.py (only part 2: before dictionary building)", action="store_true") xParser.add_argument("-d", "--dict", help="generate FSA dictionary", action="store_true") xParser.add_argument("-t", "--tests", help="run unit tests", action="store_true") xParser.add_argument("-p", "--perf", help="run performance tests", action="store_true") xParser.add_argument("-pm", "--perf_memo", help="run performance tests and store results in perf_memo.txt", action="store_true") xParser.add_argument("-js", "--javascript", help="JavaScript build for Firefox", action="store_true") | | | 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 | xParser.add_argument("-bb", "--build_data_before", help="launch build_data.py (only part 1: before dictionary building)", action="store_true") xParser.add_argument("-ba", "--build_data_after", help="launch build_data.py (only part 2: before dictionary building)", action="store_true") xParser.add_argument("-d", "--dict", help="generate FSA dictionary", action="store_true") xParser.add_argument("-t", "--tests", help="run unit tests", action="store_true") xParser.add_argument("-p", "--perf", help="run performance tests", action="store_true") xParser.add_argument("-pm", "--perf_memo", help="run performance tests and store results in perf_memo.txt", action="store_true") xParser.add_argument("-js", "--javascript", help="JavaScript build for Firefox", action="store_true") xParser.add_argument("-fx", "--firefox", help="Launch Firefox Developper for Adden-SDK testing", action="store_true") xParser.add_argument("-we", "--web_ext", help="Launch Firefox Nightly for WebExtension testing", action="store_true") xParser.add_argument("-tb", "--thunderbird", help="Launch Thunderbird", action="store_true") xParser.add_argument("-i", "--install", help="install the extension in Writer (path of unopkg must be set in config.ini)", action="store_true") xArgs = xParser.parse_args() if xArgs.build_data: xArgs.build_data_before = True |
︙ | ︙ |