mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
66 lines
1.6 KiB
HTML
66 lines
1.6 KiB
HTML
{% extends "frame.html" %}
|
|
{% block body %}
|
|
|
|
<div class="hero-unit">
|
|
<h1>Testing and torturing HTTP clients and servers.</h1>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="span6">
|
|
<div class="well">
|
|
<h1> <a href="/docs/pathod">pathod</a> </h1>
|
|
|
|
A pathological web daemon.
|
|
|
|
{% include "response_previewform.html" %}
|
|
|
|
|
|
<h1>public pathod server</h1>
|
|
|
|
<p>http://p.pathod.org/<input
|
|
style="width: 15em"
|
|
id="publicspec"
|
|
name="spec"
|
|
class="input-medium search-query"
|
|
value="{{spec}}"
|
|
placeholder="code[msg]:[features]"
|
|
>
|
|
<a href="#" id="submitspec" class="btn">go</a>
|
|
</p>
|
|
|
|
<p>Please use responsibly. There are some restrictions on the
|
|
public server.</p>
|
|
<script>
|
|
$(function(){
|
|
$("#submitspec").click(function(){
|
|
document.location = "http://p.pathod.org/" + $("#publicspec").val()
|
|
});
|
|
});
|
|
</script>
|
|
</div>
|
|
</div>
|
|
<div class="span6">
|
|
<div class="well">
|
|
<h1> <a href="/docs/pathoc">pathoc</a> </h1>
|
|
|
|
A perverse HTTP client.
|
|
|
|
{% include "request_previewform.html" %}
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="span12">
|
|
<div class="well">
|
|
<h1> <a href="/docs/test">libpathod.test</a> </h1>
|
|
|
|
Using pathod and pathoc in your unit tests.
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|