aboutsummaryrefslogtreecommitdiffstats
path: root/libpathod/templates/index.html
blob: 337f361ce0cd8b99d62374149c9875211f8c3006 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{% extends "frame.html" %}
{% block body %}  


<div class="masthead">
    <div class="container">
        <h1>pathod: pathological HTTP</h1>

        <p>Crafted malice for tormenting HTTP clients and servers</p>

        <img src="/static/torture.png">
    </div>
</div>


<div class="row">
    <div class="span6">
        <div>
            <h2> <a href="/docs/pathod">pathod</a> </h2>

            <p>A pathological web daemon.</p>

            {% include "response_previewform.html" %}

            <br>

        </div>
    </div>
    <div class="span6">
        <div>
            <h2> <a href="/docs/pathoc">pathoc</a> </h2>

            <p>A perverse HTTP client.</p>

            {% include "request_previewform.html" %}

        </div>
    </div>
</div>

<section>
<div class="page-header">
    <h1>Install</h1>
</div>
<div class="row">
    <div class="span6">
        <div>
            <h2>pip</h2>

            <pre>pip install pathod</pre>

        </div>
    </div>
    <div class="span6">
        <div>
            <h2>source</h2>

            <ul>
                <li>Current release: <a href="http://mitmproxy.org/download/pathod-{{version}}.tar.gz">pathod {{version}}</a></li>

                <li>GitHub: <a href="http://github.com/mitmproxy/pathod">github.com/cortesi/pathod</a></li>
            </li>
        </div>
    </div>
</div>
</section>


{% endblock %}