├── CNAME ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md └── index.html /CNAME: -------------------------------------------------------------------------------- 1 | docs.firefox-dev.tools -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | ## Community Participation Guidelines 2 | 3 | This repository is governed by Mozilla's code of conduct and etiquette guidelines. 4 | For more details, please read 5 | [Mozilla Community Participation Guidelines](https://www.mozilla.org/about/governance/policies/participation/). 6 | 7 | ## How to Report 8 | 9 | For more information on how to report violations of the Community Participation Guidelines, please read our '[How to Report](https://www.mozilla.org/en-US/about/governance/policies/participation/reporting/)' page. 10 | 11 | ## Project Specific Guidelines 12 | 13 | - Be nice to each other 14 | - Remember that we are all humans, and we are all on the same team 15 | - Self-care is of utmost importance (take breaks, eat food, plenty of sleep) 16 | - "Please" and "Thank you" are always nice ways to facilitate communication 17 | - Have fun 18 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Mozilla Public License Version 2.0 2 | ================================== 3 | 4 | 1. Definitions 5 | 6 | -------------- 7 | 8 | 1.1. "Contributor" 9 | means each individual or legal entity that creates, contributes to 10 | the creation of, or owns Covered Software. 11 | 12 | 1.2. "Contributor Version" 13 | means the combination of the Contributions of others (if any) used 14 | by a Contributor and that particular Contributor's Contribution. 15 | 16 | 1.3. "Contribution" 17 | means Covered Software of a particular Contributor. 18 | 19 | 1.4. "Covered Software" 20 | means Source Code Form to which the initial Contributor has attached 21 | the notice in Exhibit A, the Executable Form of such Source Code 22 | Form, and Modifications of such Source Code Form, in each case 23 | including portions thereof. 24 | 25 | 1.5. "Incompatible With Secondary Licenses" 26 | means 27 | 28 | (a) that the initial Contributor has attached the notice described 29 | in Exhibit B to the Covered Software; or 30 | 31 | (b) that the Covered Software was made available under the terms of 32 | version 1.1 or earlier of the License, but not also under the 33 | terms of a Secondary License. 34 | 35 | 1.6. "Executable Form" 36 | means any form of the work other than Source Code Form. 37 | 38 | 1.7. "Larger Work" 39 | means a work that combines Covered Software with other material, in 40 | a separate file or files, that is not Covered Software. 41 | 42 | 1.8. "License" 43 | means this document. 44 | 45 | 1.9. "Licensable" 46 | means having the right to grant, to the maximum extent possible, 47 | whether at the time of the initial grant or subsequently, any and 48 | all of the rights conveyed by this License. 49 | 50 | 1.10. "Modifications" 51 | means any of the following: 52 | 53 | (a) any file in Source Code Form that results from an addition to, 54 | deletion from, or modification of the contents of Covered 55 | Software; or 56 | 57 | (b) any new file in Source Code Form that contains any Covered 58 | Software. 59 | 60 | 1.11. "Patent Claims" of a Contributor 61 | means any patent claim(s), including without limitation, method, 62 | process, and apparatus claims, in any patent Licensable by such 63 | Contributor that would be infringed, but for the grant of the 64 | License, by the making, using, selling, offering for sale, having 65 | made, import, or transfer of either its Contributions or its 66 | Contributor Version. 67 | 68 | 1.12. "Secondary License" 69 | means either the GNU General Public License, Version 2.0, the GNU 70 | Lesser General Public License, Version 2.1, the GNU Affero General 71 | Public License, Version 3.0, or any later versions of those 72 | licenses. 73 | 74 | 1.13. "Source Code Form" 75 | means the form of the work preferred for making modifications. 76 | 77 | 1.14. "You" (or "Your") 78 | means an individual or a legal entity exercising rights under this 79 | License. For legal entities, "You" includes any entity that 80 | controls, is controlled by, or is under common control with You. For 81 | purposes of this definition, "control" means (a) the power, direct 82 | or indirect, to cause the direction or management of such entity, 83 | whether by contract or otherwise, or (b) ownership of more than 84 | fifty percent (50%) of the outstanding shares or beneficial 85 | ownership of such entity. 86 | 87 | 2. License Grants and Conditions 88 | 89 | -------------------------------- 90 | 91 | 2.1. Grants 92 | 93 | Each Contributor hereby grants You a world-wide, royalty-free, 94 | non-exclusive license: 95 | 96 | (a) under intellectual property rights (other than patent or trademark) 97 | Licensable by such Contributor to use, reproduce, make available, 98 | modify, display, perform, distribute, and otherwise exploit its 99 | Contributions, either on an unmodified basis, with Modifications, or 100 | as part of a Larger Work; and 101 | 102 | (b) under Patent Claims of such Contributor to make, use, sell, offer 103 | for sale, have made, import, and otherwise transfer either its 104 | Contributions or its Contributor Version. 105 | 106 | 2.2. Effective Date 107 | 108 | The licenses granted in Section 2.1 with respect to any Contribution 109 | become effective for each Contribution on the date the Contributor first 110 | distributes such Contribution. 111 | 112 | 2.3. Limitations on Grant Scope 113 | 114 | The licenses granted in this Section 2 are the only rights granted under 115 | this License. No additional rights or licenses will be implied from the 116 | distribution or licensing of Covered Software under this License. 117 | Notwithstanding Section 2.1(b) above, no patent license is granted by a 118 | Contributor: 119 | 120 | (a) for any code that a Contributor has removed from Covered Software; 121 | or 122 | 123 | (b) for infringements caused by: (i) Your and any other third party's 124 | modifications of Covered Software, or (ii) the combination of its 125 | Contributions with other software (except as part of its Contributor 126 | Version); or 127 | 128 | (c) under Patent Claims infringed by Covered Software in the absence of 129 | its Contributions. 130 | 131 | This License does not grant any rights in the trademarks, service marks, 132 | or logos of any Contributor (except as may be necessary to comply with 133 | the notice requirements in Section 3.4). 134 | 135 | 2.4. Subsequent Licenses 136 | 137 | No Contributor makes additional grants as a result of Your choice to 138 | distribute the Covered Software under a subsequent version of this 139 | License (see Section 10.2) or under the terms of a Secondary License (if 140 | permitted under the terms of Section 3.3). 141 | 142 | 2.5. Representation 143 | 144 | Each Contributor represents that the Contributor believes its 145 | Contributions are its original creation(s) or it has sufficient rights 146 | to grant the rights to its Contributions conveyed by this License. 147 | 148 | 2.6. Fair Use 149 | 150 | This License is not intended to limit any rights You have under 151 | applicable copyright doctrines of fair use, fair dealing, or other 152 | equivalents. 153 | 154 | 2.7. Conditions 155 | 156 | Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted 157 | in Section 2.1. 158 | 159 | 3. Responsibilities 160 | 161 | ------------------- 162 | 163 | 3.1. Distribution of Source Form 164 | 165 | All distribution of Covered Software in Source Code Form, including any 166 | Modifications that You create or to which You contribute, must be under 167 | the terms of this License. You must inform recipients that the Source 168 | Code Form of the Covered Software is governed by the terms of this 169 | License, and how they can obtain a copy of this License. You may not 170 | attempt to alter or restrict the recipients' rights in the Source Code 171 | Form. 172 | 173 | 3.2. Distribution of Executable Form 174 | 175 | If You distribute Covered Software in Executable Form then: 176 | 177 | (a) such Covered Software must also be made available in Source Code 178 | Form, as described in Section 3.1, and You must inform recipients of 179 | the Executable Form how they can obtain a copy of such Source Code 180 | Form by reasonable means in a timely manner, at a charge no more 181 | than the cost of distribution to the recipient; and 182 | 183 | (b) You may distribute such Executable Form under the terms of this 184 | License, or sublicense it under different terms, provided that the 185 | license for the Executable Form does not attempt to limit or alter 186 | the recipients' rights in the Source Code Form under this License. 187 | 188 | 3.3. Distribution of a Larger Work 189 | 190 | You may create and distribute a Larger Work under terms of Your choice, 191 | provided that You also comply with the requirements of this License for 192 | the Covered Software. If the Larger Work is a combination of Covered 193 | Software with a work governed by one or more Secondary Licenses, and the 194 | Covered Software is not Incompatible With Secondary Licenses, this 195 | License permits You to additionally distribute such Covered Software 196 | under the terms of such Secondary License(s), so that the recipient of 197 | the Larger Work may, at their option, further distribute the Covered 198 | Software under the terms of either this License or such Secondary 199 | License(s). 200 | 201 | 3.4. Notices 202 | 203 | You may not remove or alter the substance of any license notices 204 | (including copyright notices, patent notices, disclaimers of warranty, 205 | or limitations of liability) contained within the Source Code Form of 206 | the Covered Software, except that You may alter any license notices to 207 | the extent required to remedy known factual inaccuracies. 208 | 209 | 3.5. Application of Additional Terms 210 | 211 | You may choose to offer, and to charge a fee for, warranty, support, 212 | indemnity or liability obligations to one or more recipients of Covered 213 | Software. However, You may do so only on Your own behalf, and not on 214 | behalf of any Contributor. You must make it absolutely clear that any 215 | such warranty, support, indemnity, or liability obligation is offered by 216 | You alone, and You hereby agree to indemnify every Contributor for any 217 | liability incurred by such Contributor as a result of warranty, support, 218 | indemnity or liability terms You offer. You may include additional 219 | disclaimers of warranty and limitations of liability specific to any 220 | jurisdiction. 221 | 222 | 4. Inability to Comply Due to Statute or Regulation 223 | 224 | --------------------------------------------------- 225 | 226 | If it is impossible for You to comply with any of the terms of this 227 | License with respect to some or all of the Covered Software due to 228 | statute, judicial order, or regulation then You must: (a) comply with 229 | the terms of this License to the maximum extent possible; and (b) 230 | describe the limitations and the code they affect. Such description must 231 | be placed in a text file included with all distributions of the Covered 232 | Software under this License. Except to the extent prohibited by statute 233 | or regulation, such description must be sufficiently detailed for a 234 | recipient of ordinary skill to be able to understand it. 235 | 236 | 5. Termination 237 | 238 | -------------- 239 | 240 | 5.1. The rights granted under this License will terminate automatically 241 | if You fail to comply with any of its terms. However, if You become 242 | compliant, then the rights granted under this License from a particular 243 | Contributor are reinstated (a) provisionally, unless and until such 244 | Contributor explicitly and finally terminates Your grants, and (b) on an 245 | ongoing basis, if such Contributor fails to notify You of the 246 | non-compliance by some reasonable means prior to 60 days after You have 247 | come back into compliance. Moreover, Your grants from a particular 248 | Contributor are reinstated on an ongoing basis if such Contributor 249 | notifies You of the non-compliance by some reasonable means, this is the 250 | first time You have received notice of non-compliance with this License 251 | from such Contributor, and You become compliant prior to 30 days after 252 | Your receipt of the notice. 253 | 254 | 5.2. If You initiate litigation against any entity by asserting a patent 255 | infringement claim (excluding declaratory judgment actions, 256 | counter-claims, and cross-claims) alleging that a Contributor Version 257 | directly or indirectly infringes any patent, then the rights granted to 258 | You by any and all Contributors for the Covered Software under Section 259 | 2.1 of this License shall terminate. 260 | 261 | 5.3. In the event of termination under Sections 5.1 or 5.2 above, all 262 | end user license agreements (excluding distributors and resellers) which 263 | have been validly granted by You or Your distributors under this License 264 | prior to termination shall survive termination. 265 | 266 | ************************************************************************ 267 | 268 | * * 269 | * 6. Disclaimer of Warranty * 270 | * ------------------------- * 271 | * * 272 | * Covered Software is provided under this License on an "as is" * 273 | * basis, without warranty of any kind, either expressed, implied, or * 274 | * statutory, including, without limitation, warranties that the * 275 | * Covered Software is free of defects, merchantable, fit for a * 276 | * particular purpose or non-infringing. The entire risk as to the * 277 | * quality and performance of the Covered Software is with You. * 278 | * Should any Covered Software prove defective in any respect, You * 279 | * (not any Contributor) assume the cost of any necessary servicing, * 280 | * repair, or correction. This disclaimer of warranty constitutes an * 281 | * essential part of this License. No use of any Covered Software is * 282 | * authorized under this License except under this disclaimer. * 283 | * * 284 | 285 | ************************************************************************ 286 | 287 | ************************************************************************ 288 | 289 | * * 290 | * 7. Limitation of Liability * 291 | * -------------------------- * 292 | * * 293 | * Under no circumstances and under no legal theory, whether tort * 294 | * (including negligence), contract, or otherwise, shall any * 295 | * Contributor, or anyone who distributes Covered Software as * 296 | * permitted above, be liable to You for any direct, indirect, * 297 | * special, incidental, or consequential damages of any character * 298 | * including, without limitation, damages for lost profits, loss of * 299 | * goodwill, work stoppage, computer failure or malfunction, or any * 300 | * and all other commercial damages or losses, even if such party * 301 | * shall have been informed of the possibility of such damages. This * 302 | * limitation of liability shall not apply to liability for death or * 303 | * personal injury resulting from such party's negligence to the * 304 | * extent applicable law prohibits such limitation. Some * 305 | * jurisdictions do not allow the exclusion or limitation of * 306 | * incidental or consequential damages, so this exclusion and * 307 | * limitation may not apply to You. * 308 | * * 309 | 310 | ************************************************************************ 311 | 312 | 8. Litigation 313 | 314 | ------------- 315 | 316 | Any litigation relating to this License may be brought only in the 317 | courts of a jurisdiction where the defendant maintains its principal 318 | place of business and such litigation shall be governed by laws of that 319 | jurisdiction, without reference to its conflict-of-law provisions. 320 | Nothing in this Section shall prevent a party's ability to bring 321 | cross-claims or counter-claims. 322 | 323 | 9. Miscellaneous 324 | 325 | ---------------- 326 | 327 | This License represents the complete agreement concerning the subject 328 | matter hereof. If any provision of this License is held to be 329 | unenforceable, such provision shall be reformed only to the extent 330 | necessary to make it enforceable. Any law or regulation which provides 331 | that the language of a contract shall be construed against the drafter 332 | shall not be used to construe this License against a Contributor. 333 | 334 | 10. Versions of the License 335 | 336 | --------------------------- 337 | 338 | 10.1. New Versions 339 | 340 | Mozilla Foundation is the license steward. Except as provided in Section 341 | 10.3, no one other than the license steward has the right to modify or 342 | publish new versions of this License. Each version will be given a 343 | distinguishing version number. 344 | 345 | 10.2. Effect of New Versions 346 | 347 | You may distribute the Covered Software under the terms of the version 348 | of the License under which You originally received the Covered Software, 349 | or under the terms of any subsequent version published by the license 350 | steward. 351 | 352 | 10.3. Modified Versions 353 | 354 | If you create software not governed by this License, and you want to 355 | create a new license for such software, you may create and use a 356 | modified version of this License if you rename the license and remove 357 | any references to the name of the license steward (except to note that 358 | such modified license differs from this License). 359 | 360 | 10.4. Distributing Source Code Form that is Incompatible With Secondary 361 | Licenses 362 | 363 | If You choose to distribute Source Code Form that is Incompatible With 364 | Secondary Licenses under the terms of this version of the License, the 365 | notice described in Exhibit B of this License must be attached. 366 | 367 | Exhibit A - Source Code Form License Notice 368 | ------------------------------------------- 369 | 370 | This Source Code Form is subject to the terms of the Mozilla Public 371 | License, v. 2.0. If a copy of the MPL was not distributed with this 372 | file, You can obtain one at . 373 | 374 | If it is not possible or desirable to put the notice in a particular 375 | file, then You may include the notice in a location (such as a LICENSE 376 | file in a relevant directory) where a recipient would be likely to look 377 | for such a notice. 378 | 379 | You may add additional accurate notices of copyright ownership. 380 | 381 | Exhibit B - "Incompatible With Secondary Licenses" Notice 382 | --------------------------------------------------------- 383 | 384 | This Source Code Form is "Incompatible With Secondary Licenses", as 385 | defined by the Mozilla Public License, v. 2.0. 386 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Firefox Developer Tools Docs 2 | 3 | https://firefox-source-docs.mozilla.org/devtools/ 4 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | --------------------------------------------------------------------------------