diff options
Diffstat (limited to 'libpathod/templates/response_previewform.html')
-rw-r--r-- | libpathod/templates/response_previewform.html | 42 |
1 files changed, 23 insertions, 19 deletions
diff --git a/libpathod/templates/response_previewform.html b/libpathod/templates/response_previewform.html index d91a2a67..d46043f3 100644 --- a/libpathod/templates/response_previewform.html +++ b/libpathod/templates/response_previewform.html @@ -1,12 +1,6 @@ <form style="margin-bottom: 0" class="form-inline" method="GET" action="/response_preview"> - <input - style="width: 18em" - id="spec" - name="spec" - class="input-medium" - value="{{spec}}" - placeholder="code:[features]" - > + <input style="width: 18em" id="spec" name="spec" class="input-medium" value="{{spec}}" + placeholder="code:[features]"> <input type="submit" class="btn" value="preview"> {% if not nocraft %} <a href="#" id="submitspec" class="btn">go</a> @@ -16,18 +10,22 @@ <a class="innerlink" data-toggle="collapse" data-target="#responseexamples">examples</a> <div id="responseexamples" class="collapse"> - <p>Check out the <a href="/docs/language">complete language docs</a>. Here - are some examples to get you started:</p> + <p> + Check out the <a href="/docs/language">complete language docs</a>. Here are + some examples to get you started: + </p> <table class="table table-bordered"> - <tbody > + <tbody> <tr> <td><a href="/response_preview?spec=200">200</a></td> <td>A basic HTTP 200 response.</td> </tr> <tr> <td><a href="/response_preview?spec=200:r">200:r</a></td> - <td>A basic HTTP 200 response with no Content-Length header. This will hang.</td> + <td>A basic HTTP 200 response with no Content-Length header. This will + hang. + </td> </tr> <tr> <td><a href="/response_preview?spec=200:da">200:da</a></td> @@ -35,8 +33,10 @@ </tr> <tr> <td><a href="/response_preview?spec=200:b@100">200:b@100</a></td> - <td>100 random bytes as the body. A Content-Lenght header is - added, so the disconnect is no longer needed.</td> + <td> + 100 random bytes as the body. A Content-Lenght header is added, so the disconnect + is no longer needed. + </td> </tr> <tr> <td><a href='/response_preview?spec=200:b@100:h"Server"="';drop table servers;"'>200:b@100:h"Etag"="';drop table servers;"</a></td> @@ -66,18 +66,22 @@ <td> <a href="/response_preview?spec=200:b@100:h@1k,ascii_letters='foo'">200:b@100:h@1k,ascii_letters='foo'</a> </td> - <td>100 ASCII bytes as the body, randomly generated 100k header name, with the value 'foo'.</td> + <td> + 100 ASCII bytes as the body, randomly generated 100k header name, with the value + 'foo'. + </td> </tr> </tbody> </table> </div> +{% if not nocraft %} <script> - $(function(){ - {% if not nocraft %} - $("#submitspec").click(function(){ + $(function() { + $("#submitspec").click(function() { document.location = "{{craftanchor}}" + $("#spec").val() }); - {% endif %} }); + </script> +{% endif %} |