Skip to content

Commit 3990b05

Browse files
committed
Fixed broken archive links
1 parent 5c34a3f commit 3990b05

File tree

5 files changed

+28
-17
lines changed

5 files changed

+28
-17
lines changed

latest/_sources/index.rst.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@
99

1010
----
1111

12+
Looking for previous versions?
13+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14+
15+
Go to https://docs.libdebug.org/archive/VERSION to find the documentation for a specific version of libdebug.
16+
17+
e.g, for version 0.5.0, go to https://docs.libdebug.org/archive/0.5.0
18+
1219
Quick Start
1320
====================================
1421
Welcome to libdebug! This powerful Python library can be used to debug your binary executables programmatically, providing a robust, user-friendly interface.

latest/basic_features.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<link rel="index" title="Index" href="genindex.html" />
4343
<link rel="search" title="Search" href="search.html" />
4444
<link rel="next" title="Breakpoints" href="breakpoints.html" />
45-
<link rel="prev" title="Quick Start" href="index.html" />
45+
<link rel="prev" title="Looking for previous versions?" href="index.html" />
4646
<meta name="viewport" content="width=device-width, initial-scale=1"/>
4747
<meta name="docsearch:language" content="en"/>
4848
</head>
@@ -668,7 +668,7 @@ <h1>Supported Architectures<a class="headerlink" href="#supported-architectures"
668668
<i class="fa-solid fa-angle-left"></i>
669669
<div class="prev-next-info">
670670
<p class="prev-next-subtitle">previous</p>
671-
<p class="prev-next-title">Quick Start</p>
671+
<p class="prev-next-title">Looking for previous versions?</p>
672672
</div>
673673
</a>
674674
<a class="right-next"

latest/index.html

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<meta charset="utf-8" />
99
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" />
1010

11-
<title>Quick Start &#8212; libdebug 0.5.2 documentation</title>
11+
<title>Looking for previous versions? &#8212; libdebug 0.5.2 documentation</title>
1212

1313

1414

@@ -398,21 +398,25 @@
398398

399399
<img alt="libdebug logo" class="align-center" src="_images/libdebug.png" />
400400
<hr class="docutils" />
401+
<section id="looking-for-previous-versions">
402+
<h1>Looking for previous versions?<a class="headerlink" href="#looking-for-previous-versions" title="Link to this heading">#</a></h1>
403+
<p>Go to <a class="reference external" href="https://docs.libdebug.org/archive/VERSION">https://docs.libdebug.org/archive/VERSION</a> to find the documentation for a specific version of libdebug.</p>
404+
<p>e.g, for version 0.5.0, go to <a class="reference external" href="https://docs.libdebug.org/archive/0.5.0">https://docs.libdebug.org/archive/0.5.0</a></p>
401405
<section id="quick-start">
402-
<h1>Quick Start<a class="headerlink" href="#quick-start" title="Link to this heading">#</a></h1>
406+
<h2>Quick Start<a class="headerlink" href="#quick-start" title="Link to this heading">#</a></h2>
403407
<p>Welcome to libdebug! This powerful Python library can be used to debug your binary executables programmatically, providing a robust, user-friendly interface.</p>
404408
<p>Debugging multithreaded applications can be a nightmare, but libdebug has you covered. Hijack, and manage signals and syscalls with a simple API.</p>
405409
<section id="supported-architectures">
406-
<h2>Supported Architectures<a class="headerlink" href="#supported-architectures" title="Link to this heading">#</a></h2>
410+
<h3>Supported Architectures<a class="headerlink" href="#supported-architectures" title="Link to this heading">#</a></h3>
407411
<p>libdebug currently supports Linux under the x86_64 architecture.</p>
408412
<p>Other operating systems and architectures are not supported at this time.</p>
409413
</section>
410414
<section id="dependencies">
411-
<h2>Dependencies<a class="headerlink" href="#dependencies" title="Link to this heading">#</a></h2>
415+
<h3>Dependencies<a class="headerlink" href="#dependencies" title="Link to this heading">#</a></h3>
412416
<p>To install libdebug, you first need to have some dependencies that will not be automatically resolved. Depending on your distro, their names may change.</p>
413417
</section>
414418
<section id="installation">
415-
<h2>Installation<a class="headerlink" href="#installation" title="Link to this heading">#</a></h2>
419+
<h3>Installation<a class="headerlink" href="#installation" title="Link to this heading">#</a></h3>
416420
<p>Installing libdebug once you have dependencies is as simple as running the following command:</p>
417421
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>python3<span class="w"> </span>-m<span class="w"> </span>pip<span class="w"> </span>install<span class="w"> </span>libdebug
418422
</pre></div>
@@ -423,7 +427,7 @@ <h2>Installation<a class="headerlink" href="#installation" title="Link to this h
423427
</div>
424428
</section>
425429
<section id="your-first-script">
426-
<h2>Your first script<a class="headerlink" href="#your-first-script" title="Link to this heading">#</a></h2>
430+
<h3>Your first script<a class="headerlink" href="#your-first-script" title="Link to this heading">#</a></h3>
427431
<p>Now that you have libdebug installed, you can start using it in your scripts. Here is a simple example of how to use libdebug to debug a binary:</p>
428432
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="kn">from</span> <span class="nn">libdebug</span> <span class="kn">import</span> <span class="n">debugger</span>
429433

@@ -529,12 +533,13 @@ <h2>Your first script<a class="headerlink" href="#your-first-script" title="Link
529533
</section>
530534
</section>
531535
<section id="indices-and-tables">
532-
<h1>Indices and tables<a class="headerlink" href="#indices-and-tables" title="Link to this heading">#</a></h1>
536+
<h2>Indices and tables<a class="headerlink" href="#indices-and-tables" title="Link to this heading">#</a></h2>
533537
<ul class="simple">
534538
<li><p><a class="reference internal" href="genindex.html"><span class="std std-ref">Index</span></a></p></li>
535539
<li><p><a class="reference internal" href="py-modindex.html"><span class="std std-ref">Module Index</span></a></p></li>
536540
<li><p><a class="reference internal" href="search.html"><span class="std std-ref">Search Page</span></a></p></li>
537541
</ul>
542+
</section>
538543
</section>
539544

540545

@@ -574,18 +579,17 @@ <h1>Indices and tables<a class="headerlink" href="#indices-and-tables" title="Li
574579
</div>
575580
<nav class="bd-toc-nav page-toc" aria-labelledby="pst-page-navigation-heading-2">
576581
<ul class="visible nav section-nav flex-column">
577-
<li class="toc-h1 nav-item toc-entry"><a class="reference internal nav-link" href="#">Quick Start</a><ul class="visible nav section-nav flex-column">
578-
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#supported-architectures">Supported Architectures</a></li>
579-
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#dependencies">Dependencies</a></li>
580-
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#installation">Installation</a></li>
581-
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#your-first-script">Your first script</a><ul class="nav section-nav flex-column">
582+
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#quick-start">Quick Start</a><ul class="nav section-nav flex-column">
583+
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#supported-architectures">Supported Architectures</a></li>
584+
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#dependencies">Dependencies</a></li>
585+
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#installation">Installation</a></li>
586+
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#your-first-script">Your first script</a><ul class="nav section-nav flex-column">
582587
</ul>
583588
</li>
584589
</ul>
585590
</li>
586-
<li class="toc-h1 nav-item toc-entry"><a class="reference internal nav-link" href="#indices-and-tables">Indices and tables</a></li>
591+
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#indices-and-tables">Indices and tables</a></li>
587592
</ul>
588-
589593
</nav></div>
590594

591595
<div class="sidebar-secondary-item">

latest/objects.inv

15 Bytes
Binary file not shown.

latest/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)