aboutsummaryrefslogtreecommitdiffstats
path: root/examples/simple
Commit message (Collapse)AuthorAgeFilesLines
* Improve compatibility of wsgi_flask_app example on OS Xsenyuuri2020-04-291-2/+2
|
* improve scripting docsThomas Kriechbaumer2020-04-041-2/+9
|
* Address lintbeth2020-01-201-2/+2
|
* Update WSGI examplebeth922020-01-201-4/+4
|
* Added link_expander.py example to simple examples (#3348)jbrule2018-10-122-0/+29
|
* add websocket exampleThomas Kriechbaumer2018-10-091-0/+13
|
* Fixing TyposJoaquin2018-05-132-2/+2
|
* Ditch the addon stdout wrapperAldo Cortesi2018-05-082-6/+3
| | | | | | This results in a 30% improvement in our core request throughput. Fixes #3102
* fix Python 3.6 variable type annotations #3053oscure762018-04-142-2/+2
|
* fix example filenameThomas Kriechbaumer2018-04-131-1/+1
|
* Replace upsidedown with mirror reflectionMiroslav2018-02-252-16/+9
|
* Merge pull request #2884 from kajojify/hotkeys-cleanupMaximilian Hils2018-02-201-4/+0
|\ | | | | Hotkeys cleanup. #2877
| * Hotkeys cleanupMiroslav2018-02-201-4/+0
| |
* | update log_events example documentationMaximilian Hils2018-02-201-3/+1
| |
* | add documentation for custom_option.pyMaximilian Hils2018-02-201-0/+10
|/
* Fix mistakes in examples/simple/Readme.md.Aniket Panjwani2018-01-291-16/+16
| | | | | 1. Delete row for script_arguments.py. 2. Add row for custom_option.py, using script_arguments.py's Description.
* fix mypy annotationsMaximilian Hils2017-05-263-12/+6
|
* Extend Mypy checking to pathodharsh vijay2017-05-023-4/+9
| | | | | | | | | | | | | | | | | | | * mypy checking pathod * initial commit , fixed errors * tox: mypy checking to pathod * Fixed mypy test failed * issue was with args in custom_contentview.py * tox: mypy checking to #2221 * follow-import=skip since we cant provide args to custom_contentview.py during mypy testing * Lint , Typo Fixed * code style: module import
* Fixed lint errorharsh vijay2017-04-291-1/+1
|
* lint error fixedharsh vijay2017-04-291-1/+1
|
* extend mypy example/simpleharsh vijay2017-04-2913-19/+34
|
* Addons and addon testingAldo Cortesi2017-04-261-6/+12
| | | | | | | | - Fix some loading sequence bugs affecting command-line script invocation - Allow addons to over-ride existing options (with a warning). We need this for reloading. - Convert har_dump to new-style arguments, fix and re-instate its test suite. - Covnert miscelaneous other exmples to new-style args.
* configure(options, updated) -> configure(updated)Aldo Cortesi2017-04-262-10/+5
| | | | | Options are now available globally on ctx, so the first argument of configure is redundant.
* Revamp how addons workAldo Cortesi2017-04-255-47/+25
| | | | | | | | | | | | | | | | | | | - Addons now nest, which means that addons can manage addons. This has a number of salutary effects - the scripts addon no longer has to poke into the global addons list, we no longer have to replace/remove/boot-outof parent addons when we load scripts, and this paves the way for making our top-level tools into addons themselves. - All addon calls are now wrapped in a safe execution environment where exceptions are caught, and output to stdout/stderr are intercepted and turned into logs. - We no longer support script arguments in sys.argv - creating an option properly is the only way to pass arguments. This means that all scripts are always directly controllable from interctive tooling, and that arguments are type-checked. For now, I've disabled testing of the har dump example - it needs to be moved to the new argument handling, and become a class addon. I'll address that in a separate patch.
* proxapp -> proxapp.localMaximilian Hils2017-03-261-2/+2
| | | Chrome doesn't like it if there's no TLD.
* addon loader: add boot_into, which replaces returning from start()Aldo Cortesi2017-03-259-15/+15
| | | | | While we're here, expand test coverage for addonmanager to 100%, and promote to individual coverage.
* addons: start -> load throughoutAldo Cortesi2017-03-259-9/+9
|
* Enable custom options in config filesAldo Cortesi2017-03-141-1/+2
| | | | | We also now ignore unknown options in config files by default, and print a warning if verbosity is incremented.
* Optmanager: handle unknown options in value setsAldo Cortesi2017-03-141-1/+1
|
* Enable custom options for addonsAldo Cortesi2017-03-149-8/+18
| | | | | | | | - Add an options parameter to the start() event. This is to be used by addons on startup to add custom options. - Add a running() event that is called once the proxy is up and running. - With the new paradigm we can't log during master __init__, so add a tiny termstatus addon to print proxy status to terminal once we're running.
* protobuf: coverage++Thomas Kriechbaumer2017-02-191-1/+1
|
* update log_events.pyFeei2017-01-161-2/+2
|
* rename logging.py example. this conflicted with Python's stdlibMaximilian Hils2016-12-191-0/+0
|
* minor fixesMaximilian Hils2016-12-101-1/+1
|
* remove lxml-dependent codeMaximilian Hils2016-12-101-1/+1
|
* organize examplesMaximilian Hils2016-11-2116-0/+267
This commit is largely based on work by Thiago Arrais (@thiagoarrais) and Shane Bradfield (@l33tLumberjack). I wasn't really able to get their PR reasonably merged onto the latest master, so I reapplied their changes manually here and did some further improvements on that.