diff options
| author | Aldo Cortesi <aldo@nullcube.com> | 2012-11-16 14:51:31 +1300 | 
|---|---|---|
| committer | Aldo Cortesi <aldo@nullcube.com> | 2012-11-16 14:51:31 +1300 | 
| commit | 5fb31f916231e8d76da3a3792e8bf596b93556d4 (patch) | |
| tree | c2d309dd7ca12a98377c843cf2a4266bed7bf0f0 | |
| parent | af698b2fdac9df8b6eac362b4d857ea80e1a81e5 (diff) | |
| download | mitmproxy-5fb31f916231e8d76da3a3792e8bf596b93556d4.tar.gz mitmproxy-5fb31f916231e8d76da3a3792e8bf596b93556d4.tar.bz2 mitmproxy-5fb31f916231e8d76da3a3792e8bf596b93556d4.zip  | |
Add :u shortcut example.
Update trove specifiers, netlib dependency.
| -rw-r--r-- | libpathod/templates/request_previewform.html | 6 | ||||
| -rw-r--r-- | setup.py | 4 | 
2 files changed, 7 insertions, 3 deletions
diff --git a/libpathod/templates/request_previewform.html b/libpathod/templates/request_previewform.html index 263b501e..78884145 100644 --- a/libpathod/templates/request_previewform.html +++ b/libpathod/templates/request_previewform.html @@ -27,7 +27,11 @@                  <td>100 random bytes as the body</td>              </tr>              <tr> -                <td><a href='/request_preview?spec=get:/:h"User-Agent"="';drop table browsers;"'>get:/:h"User-Agent"="';drop table browsers;"</a></td> +                <td><a href='/request_preview?spec=get:/:h"Etag"="';drop table browsers;"'>get:/:h"Etag"="';drop table browsers;"</a></td> +                <td>Add a header</td> +            </tr> +            <tr> +                <td><a href='/request_preview?spec=get:/:u"';drop table browsers;"'>get:/:u"';drop table browsers;"</a></td>                  <td>Add a User-Agent header</td>              </tr>              <tr> @@ -80,7 +80,7 @@ setup(          scripts = ["pathod", "pathoc"],          classifiers = [              "License :: OSI Approved :: MIT License", -            "Development Status :: 3 - Alpha", +            "Development Status :: 5 - Production/Stable",              "Operating System :: POSIX",              "Programming Language :: Python",              "Topic :: Internet", @@ -89,5 +89,5 @@ setup(              "Topic :: Software Development :: Testing :: Traffic Generation",              "Topic :: Internet :: WWW/HTTP",          ], -        install_requires=['netlib>=0.2.1', "requests>=0.13", "flask"], +        install_requires=['netlib>=0.2.2', "requests>=0.13", "flask"],  )  | 
