aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Silence pyflakesAldo Cortesi2014-01-198-20/+15
| | | | And pick up one bug as a consequence.
* Release test script and checklist.Aldo Cortesi2014-01-192-0/+62
|
* Doc and readme tweaks.Aldo Cortesi2014-01-196-20/+37
|
* Refactor docs to define nav sidebar in only one place.Aldo Cortesi2014-01-194-95/+51
|
* Tweak setup.py to allow installs outside source dirAldo Cortesi2014-01-192-2/+8
| | | | Also fix mitmdump version output
* Optionally take the mitmproxy path for doc rendering from a env variable.Aldo Cortesi2014-01-191-1/+1
|
* PyInstaller bug requiring a console import in mitmdump is goneAldo Cortesi2014-01-191-2/+1
|
* Merge branch 'master' of ssh.github.com:cortesi/mitmproxyAldo Cortesi2014-01-1915-24/+90
|\
| * fix sni bug: respond with the correct certificateMaximilian Hils2014-01-161-5/+5
| |
| * fix syntax highlighting for countershape urls by using different quotesMaximilian Hils2014-01-146-16/+16
| |
| * add tutorial for transparent proxying, other minor docs improvementsMaximilian Hils2014-01-1410-9/+75
| |
* | Handle views that don't support search gracefullyAldo Cortesi2014-01-191-3/+12
| | | | | | | | | | This includes all key/value formatted views, e.g. the image view. We need to support these ultimately, but no time before the next release.
* | Re-enable caching on search.Aldo Cortesi2014-01-191-10/+3
|/
* Deprecate Flow.unload_script in favor of Flow.unload_scriptsAldo Cortesi2014-01-132-9/+12
| | | | | In the presence of arguments, unloading a single script is clumsy and less useful.
* Extract command parsing and use in script grid editorAldo Cortesi2014-01-133-13/+19
|
* Script refactoring: move script command parsing into script module.Aldo Cortesi2014-01-129-54/+49
|
* Clean up and clarify script APIAldo Cortesi2014-01-124-30/+17
|
* Start refactoring scriptsAldo Cortesi2014-01-126-86/+83
| | | | | - Move ScriptContext into script module - Use mock module instead of hand-rolled mock objects in tests
* ignore console test utilities on windowsMaximilian Hils2014-01-101-2/+3
|
* display build status from master branchMaximilian Hils2014-01-091-1/+1
|
* Merge pull request #199 from dwilbraham/add_protobuffer_content_typeMaximilian Hils2014-01-061-1/+4
|\ | | | | Decode content as protobuf if the content_type is "application/x-protobuffer"
| * Update ViewProtobuf in contentview.py to also decode as protobuf if the ↵Dan Wilbraham2014-01-051-1/+4
|/ | | | content_type is "application/x-protobuffer"
* Tweaking web stub app, icons for certificates, serve PEM correctly.Aldo Cortesi2014-01-0511-7/+1779
|
* Remove / binding alias for limitAldo Cortesi2014-01-051-2/+1
| | | | The search and limit functionality is too different.
* Merge pull request #192 from mitmproxy/refactor_read_http_bodyAldo Cortesi2014-01-042-8/+18
|\ | | | | move CONTINUE checks into mitmproxy
| * move CONTINUE checks into mitmproxyMaximilian Hils2013-12-152-8/+18
| |
* | Merge pull request #193 from droope/search-functionalityAldo Cortesi2014-01-045-43/+353
|\ \ | | | | | | Search functionality
| * | now really fix it + testPedro Worcel2013-12-262-6/+29
| | |
| * | fix bug that happens after searching for a non-existant string, andPedro Worcel2013-12-261-1/+6
| | | | | | | | | | | | later for an existant one.
| * | add docsPedro Worcel2013-12-261-1/+2
| | |
| * | added 'n' functionality, tidy up & testingPedro Worcel2013-12-261-1/+9
| | |
| * | add looping aroundPedro Worcel2013-12-262-53/+137
| | |
| * | fix failing testPedro Worcel2013-12-251-1/+2
| | |
| * | fix crashroot2013-12-251-2/+2
| | |
| * | Add focusing, and fixes non-clearance of prev searches. Addroot2013-12-253-45/+139
| | | | | | | | | | | | documentation.
| * | test passing, UI still not workingroot2013-12-244-6/+99
| | |
| * | add search with / for compatibility with what I'll do.root2013-12-231-1/+2
| | |
* | | Merge branch 'migrate_from_pil_to_pillow' of ↵Aldo Cortesi2014-01-054-8/+7
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | https://github.com/Kami/mitmproxy into Kami-migrate_from_pil_to_pillow Conflicts: requirements.txt
| * | | Update another reference to PIL.Tomaz Muraus2014-01-041-1/+3
| | | |
| * | | Migrate from Pil to the latest version of Pillow.Tomaz Muraus2014-01-033-8/+5
| | | |
* | | | Merge pull request #198 from Kami/add_css_viewAldo Cortesi2014-01-045-2/+63
|\ \ \ \ | | | | | | | | | | Add CSS view which beautifies minified CSS files
| * | | | Fix CSS view prompt, update display mode options.Tomaz Muraus2014-01-042-1/+5
| | | | |
| * | | | Provide more sensible serializer options.Tomaz Muraus2014-01-041-0/+5
| | | | |
| * | | | Add CSS view which beautifies CSS files if cssutils library is available,Tomaz Muraus2014-01-044-2/+54
| |/ / / | | | | | | | | | | | | otherwise it acts as a no-op.
* | | | Introduce file descriptor decorators for Request objectsAldo Cortesi2014-01-053-18/+36
| | | | | | | | | | | | | | | | Which lets us enable the apps again, now running from flow.py
* | | | Decouple message type from message class name.Aldo Cortesi2014-01-043-20/+20
| | | |
* | | | Move app mechanism to flow.pyAldo Cortesi2014-01-046-133/+137
| | | | | | | | | | | | | | | | Disable apps while message passing is improved.
* | | | Merge branch 'master' of ssh.github.com:cortesi/mitmproxyAldo Cortesi2014-01-041-1/+1
|\ \ \ \
| * | | | fix #195Maximilian Hils2014-01-031-1/+1
| |/ / / | | | | | | | | (untested)
* / / / Fix app in mitmproxy console, update to bootstrap 3.Aldo Cortesi2014-01-036-80/+61
|/ / /