mitmproxy/libpathod/templates/index.html
2012-10-04 12:17:35 +13:00

92 lines
2.2 KiB
HTML

{% extends "frame.html" %}
{% block body %}
<div class="row">
<div class="span6 bigtitle">
<div>
<img src="/static/torture.png">
</div>
</div>
<div class="span6 bigtitle">
<div>Tormenting HTTP clients and servers</div>
</div>
</div>
<div class="row">
<div class="span6">
<div>
<h1> <a href="/docs/pathod">pathod</a> </h1>
<p>A pathological web daemon.</p>
{% include "response_previewform.html" %}
<br>
<p>There is also a live, public instance of pathod here:</p>
<p><b>http://public.pathod.net/</b><input
style="width: 14em"
id="publicspec"
name="spec"
class="input-medium search-query"
value="{{spec}}"
placeholder="code[msg]:[features]"
>
<a id="gopublic" class="btn">go</a>
</p>
<p>Please use responsibly. There are some restrictions on the
public server.</p>
<script>
$(function(){
$("#gopublic").click(function(){
document.location = "http://public.pathod.net/" + $("#publicspec").val()
});
});
</script>
</div>
</div>
<div class="span6">
<div>
<h1> <a href="/docs/pathoc">pathoc</a> </h1>
<p>A perverse HTTP client.</p>
{% include "request_previewform.html" %}
<pre class="terminal">&gt; pathoc -n 3 google.com "get:/:ir,@1"
&lt;&lt; 200 OK: 44177 bytes
&lt;&lt; 405 Method Not Allowed: 959 bytes
&lt;&lt; 200 OK: 44107 bytes</pre>
</div>
</div>
</div>
<div style="margin-top: 50px" class="row">
<div class="span6">
<div>
<h1> <a href="/docs/test">libpathod.test</a> </h1>
<p>Using pathod in your unit tests.</p>
</div>
</div>
<div class="span6">
<div>
<h1> <a href="/docs/test">libpathod.test</a> </h1>
<p>Using pathod in your unit tests.</p>
{% include "examples_context.html" %}
</div>
</div>
</div>
{% endblock %}