Skip to content

Commit ad4d6db

Browse files
committed
fix moved URLs in documentation
1 parent 3004784 commit ad4d6db

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

docs/about/open-source.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -301,9 +301,9 @@ The previous tools are used in the generation of our documentation, but are not
301301
- LIB Files ([api license] - MIT) .lib files included with the native windows builds of Binary Ninja are released under the same MIT license as the API itself, distinct from the standard EULA
302302
- [Views] ([views license] - Apache License 2.0) Binary views included with the product
303303
- [Architectures] ([architectures license] - Apache License 2.0) Architecture support included with the product
304-
- [DWARF Import] - ([dwarf import license] - Apache License 2.0)
305-
- [DWARF Export] - ([dwarf export license] - Apache License 2.0)
306-
- [IDB Import] - ([idb import license] - Apache License 2.0)
304+
- [DWARF Import] - ([dwarf import license] - MIT)
305+
- [DWARF Export] - ([dwarf export license] - MIT)
306+
- [IDB Import] - ([idb import license] - MIT)
307307

308308
## Building Qt
309309

@@ -349,8 +349,8 @@ Please note that we offer no support for running Binary Ninja with modified Qt l
349349
[mkdocs-material license]: https://github.com/squidfunk/mkdocs-material/blob/master/LICENSE
350350
[mkdocs-material]: https://github.com/squidfunk/mkdocs-material
351351
[mkdocs]: http://www.mkdocs.org/
352-
[opensans license]: http://www.apache.org/licenses/LICENSE-2.0.html
353-
[opensans]: https://www.google.com/fonts/specimen/Open+Sans
352+
[opensans license]: https://fonts.google.com/specimen/Open+Sans/license
353+
[opensans]: https://fonts.google.com/specimen/Open+Sans
354354
[PPC architecture module]: https://github.com/Vector35/ppc-capstone
355355
[python]: https://github.com/python/cpython
356356
[python license]: https://github.com/python/cpython/blob/master/LICENSE
@@ -364,14 +364,14 @@ Please note that we offer no support for running Binary Ninja with modified Qt l
364364
[NotoColorEmoji license]: https://github.com/googlefonts/noto-emoji/blob/main/fonts/LICENSE
365365
[NotoColorEmoji]: https://github.com/googlefonts/noto-emoji
366366
[sphinx license]: https://github.com/sphinx-doc/sphinx/blob/master/LICENSE.rst
367-
[sphinx]: http://www.sphinx-doc.org/en/stable/index.html
367+
[sphinx]: https://www.sphinx-doc.org/en/master/
368368
[sqlite license]: https://www.sqlite.org/copyright.html
369369
[sqlite]: https://www.sqlite.org/index.html
370370
[tarball]: https://binary.ninja/qt6.8.2.tar.xz
371371
[patch]: https://binary.ninja/qt6.8.2.patch
372372
[qt-build]: https://github.com/Vector35/qt-build
373373
[yasm license]: https://github.com/yasm/yasm/blob/master/BSD.txt
374-
[yasm]: http://yasm.tortall.net/
374+
[yasm]: https://github.com/yasm/yasm
375375
[xed]: http://www.github.com/intelxed/xed/
376376
[xed license]: http://www.github.com/intelxed/xed/blob/master/LICENSE
377377
[zlib license]: http://www.zlib.net/zlib_license.html
@@ -406,12 +406,12 @@ Please note that we offer no support for running Binary Ninja with modified Qt l
406406
[views license]: https://github.com/Vector35/view-pe/blob/main/LICENSE
407407
[Architectures]: https://github.com/Vector35/?q=arch-&type=all&language=&sort=
408408
[architectures license]: https://github.com/Vector35/arch-armv7/blob/master/LICENSE
409-
[DWARF Import]: https://github.com/Vector35/binaryninja-api/tree/dev/rust/examples/dwarf/dwarf_import
410-
[dwarf import license]: https://github.com/Vector35/binaryninja-api/blob/dev/rust/LICENSE
411-
[DWARF Export]: https://github.com/Vector35/binaryninja-api/tree/dev/rust/examples/dwarf/dwarf_export
412-
[dwarf export license]: https://github.com/Vector35/binaryninja-api/blob/dev/rust/LICENSE
413-
[IDB Import]: https://github.com/Vector35/binaryninja-api/tree/dev/rust/examples/idb_import
414-
[idb import license]: https://github.com/Vector35/binaryninja-api/blob/dev/rust/LICENSE
409+
[DWARF Import]: https://github.com/Vector35/binaryninja-api/tree/dev/plugins/dwarf/dwarf_import
410+
[dwarf import license]: https://github.com/Vector35/binaryninja-api/blob/dev/LICENSE.txt
411+
[DWARF Export]: https://github.com/Vector35/binaryninja-api/tree/dev/plugins/dwarf/dwarf_export
412+
[dwarf export license]: https://github.com/Vector35/binaryninja-api/blob/dev/LICENSE.txt
413+
[IDB Import]: https://github.com/Vector35/binaryninja-api/tree/dev/plugins/idb_import
414+
[idb import license]: https://github.com/Vector35/binaryninja-api/blob/dev/LICENSE.txt
415415

416416
[Rust]: https://www.rust-lang.org/
417417
[Rust license]: https://github.com/rust-lang/rust/blob/master/LICENSE-MIT

docs/dev/documentation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ Changing documentation for the API itself is fairly straight forward. Use [doxyg
3232
[Vector 35]: https://vector35.com/
3333
[mkdocs]: http://www.mkdocs.org/
3434
[breathe]: https://github.com/michaeljones/breathe
35-
[sphinx]: http://www.sphinx-doc.org/en/stable/index.html
35+
[sphinx]: https://www.sphinx-doc.org/en/master/
3636
[doxygen]: https://www.doxygen.nl

docs/guide/types/debuginfo.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Currently debug info plugins are limited to types, function signatures, and data
66

77
## Supported Debug Info
88

9-
We currently support [PDBs](https://github.com/Vector35/binaryninja-api/tree/dev/rust/examples/pdb-ng) and [DWARF](https://github.com/Vector35/binaryninja-api/tree/dev/rust/examples/dwarf/dwarf_import) (which are both open source), though you can also [register your own debug info parser through the API](https://api.binary.ninja/binaryninja.debuginfo-module.html#binaryninja.debuginfo.DebugInfoParser).
9+
We currently support [PDBs](https://github.com/Vector35/binaryninja-api/tree/dev/plugins/pdb-ng) and [DWARF](https://github.com/Vector35/binaryninja-api/tree/dev/plugins/dwarf/dwarf_import) (which are both open source), though you can also [register your own debug info parser through the API](https://api.binary.ninja/binaryninja.debuginfo-module.html#binaryninja.debuginfo.DebugInfoParser).
1010

1111
For PDBs, Binary Ninja will automatically try to source from specified local folders and Microsoft's symbol server ([see the PDB settings for more information](../settings.md#all-settings)).
1212

@@ -40,7 +40,7 @@ Components are supported by the API, but not in the parser. The [same issue](htt
4040

4141
#### DWARF Export Limitations
4242

43-
Our [DWARF Export plugin](https://github.com/Vector35/binaryninja-api/tree/dev/rust/examples/dwarf/dwarf_export) is also open source and uses a different system from our debug information import plugins. It also does not support function-local variable names or types. The export plugin currently will export the global variables, function prototypes, and all the types in your binary view except for ones that are FunctionTypeClass or VarArgsTypeClass.
43+
Our [DWARF Export plugin](https://github.com/Vector35/binaryninja-api/tree/dev/plugins/dwarf/dwarf_export) is also open source and uses a different system from our debug information import plugins. It also does not support function-local variable names or types. The export plugin currently will export the global variables, function prototypes, and all the types in your binary view except for ones that are FunctionTypeClass or VarArgsTypeClass.
4444

4545
#### Special Note for `.dSYM` Files
4646

0 commit comments

Comments
 (0)