2012-06-21 04:25:27 +00:00
|
|
|
{% extends "frame.html" %}
|
2012-04-28 00:42:03 +00:00
|
|
|
{% block body %}
|
2012-06-28 23:53:59 +00:00
|
|
|
|
2012-07-29 01:55:59 +00:00
|
|
|
<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>
|
2012-06-28 23:53:59 +00:00
|
|
|
</div>
|
|
|
|
|
2012-07-29 01:55:59 +00:00
|
|
|
<br>
|
2012-06-28 23:53:59 +00:00
|
|
|
<div class="row">
|
2012-07-24 11:13:04 +00:00
|
|
|
<div class="span6">
|
2012-06-28 23:53:59 +00:00
|
|
|
<div class="well">
|
|
|
|
<h1> <a href="/docs/pathod">pathod</a> </h1>
|
|
|
|
|
2012-07-29 01:55:59 +00:00
|
|
|
<p>A pathological web daemon.</p>
|
2012-06-28 23:53:59 +00:00
|
|
|
|
2012-07-24 11:13:04 +00:00
|
|
|
{% include "response_previewform.html" %}
|
2012-07-29 01:55:59 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="span6">
|
|
|
|
<div class="well">
|
|
|
|
<h1> <a href="/docs/pathoc">pathoc</a> </h1>
|
|
|
|
|
|
|
|
<p>A perverse HTTP client.</p>
|
|
|
|
|
|
|
|
{% include "request_previewform.html" %}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2012-07-25 01:07:27 +00:00
|
|
|
|
|
|
|
|
2012-07-29 01:55:59 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="span6">
|
|
|
|
<div class="well">
|
2012-07-25 01:07:27 +00:00
|
|
|
<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>
|
2012-07-29 01:55:59 +00:00
|
|
|
|
2012-07-25 01:07:27 +00:00
|
|
|
<script>
|
|
|
|
$(function(){
|
|
|
|
$("#submitspec").click(function(){
|
|
|
|
document.location = "http://p.pathod.org/" + $("#publicspec").val()
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
2012-06-28 23:53:59 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2012-07-24 11:13:04 +00:00
|
|
|
<div class="span6">
|
2012-06-28 23:53:59 +00:00
|
|
|
<div class="well">
|
|
|
|
<h1> <a href="/docs/test">libpathod.test</a> </h1>
|
|
|
|
|
2012-07-29 01:55:59 +00:00
|
|
|
<p>Using pathod and pathoc in your unit tests.</p>
|
2012-06-28 23:53:59 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2012-06-21 04:25:27 +00:00
|
|
|
{% endblock %}
|