Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | doc: update :class: to :py:class: for modern Sphinx. | W. Trevor King | 2012-10-26 | 1 | -2/+2 |
| | |||||
* | doc: update :mod: to :py:mod: for modern Sphinx. | W. Trevor King | 2012-10-26 | 1 | -1/+1 |
| | |||||
* | Ran update-copyright.py. | W. Trevor King | 2012-10-16 | 1 | -1/+1 |
| | |||||
* | command:serve-storage: rename `be serve` -> `be serve-storage`. | W. Trevor King | 2012-08-29 | 1 | -5/+5 |
| | | | | | | | | | | This will help avoid confusion between be serve-storage and be serve-commands | ||||
* | util:wsgi: add BEExceptionApp for translating storage exceptions. | W. Trevor King | 2012-08-29 | 1 | -1/+3 |
| | | | | | | This fixes .test_get_initial_value for the HTTP backend, because the tests use TestingHTTP.getURL, which only catch HandlerError, not the more specific storage exceptions. | ||||
* | libbe:util:wsgi: extract WSGI utilities into a separate module. | W. Trevor King | 2012-08-27 | 1 | -2/+8 |
| | |||||
* | util:http: pull HTTP helpers from libbe.storage.http into their own module. | W. Trevor King | 2012-08-24 | 1 | -103/+11 |
| | | | | This way they can be shared with the upcoming Command._run_remote. | ||||
* | storage:http: use an explicit relative import for base. | W. Trevor King | 2012-08-24 | 1 | -2/+3 |
| | |||||
* | storage:http: adjust HTTPError message in get_post_url. | W. Trevor King | 2012-08-24 | 1 | -2/+2 |
| | | | | | | We'll usually get this message if we fail to reach the server, but we can also get it if the server is so broken that it dies without returning a valid HTTP response. | ||||
* | storage:http: add agent argument to get_post_url. | W. Trevor King | 2012-08-24 | 1 | -2/+4 |
| | | | | | This allows us to set an appropriate user agent if we use this function in other places (e.g. upcoming Command._run_remote). | ||||
* | Ran update-copyright.py. | W. Trevor King | 2012-02-16 | 1 | -10/+10 |
| | |||||
* | bugseverywhere.org has changed URL handling, so use different URLs for HTTP ↵ | W. Trevor King | 2011-07-30 | 1 | -3/+3 |
| | | | | testing. | ||||
* | Run update_copyright.py. | W. Trevor King | 2011-05-25 | 1 | -1/+2 |
| | |||||
* | Add --notify to `be serve`. | W. Trevor King | 2011-04-16 | 1 | -0/+1 |
| | |||||
* | Fix typo libbe.storage.serve -> libbe.command.serve in libbe.storage.http ↵ | W. Trevor King | 2011-04-16 | 1 | -2/+2 |
| | | | | comments. | ||||
* | Bumped to version 1.0.01.0.0 | Chris Ball | 2011-01-08 | 1 | -1/+1 |
| | |||||
* | Ran update_copyright.py | W. Trevor King | 2010-06-22 | 1 | -11/+12 |
| | |||||
* | Fixed docstrings so only Sphinx errors are "autosummary" and "missing attribute" | W. Trevor King | 2010-02-07 | 1 | -14/+43 |
| | |||||
* | Streamlined libbe.command.serve, adding --auth option, #/bea/c1b#, and testing. | W. Trevor King | 2010-01-27 | 1 | -19/+158 |
| | |||||
* | Add .changed support to HTTP storage backend. | W. Trevor King | 2010-01-18 | 1 | -0/+9 |
| | | | | Also work around urlparse.parse_qs location in Python <= 2.5. | ||||
* | Add ancestors support to HTTP storage | W. Trevor King | 2010-01-18 | 1 | -0/+7 |
| | |||||
* | Fixed update_copyright.py's subproc import and updated copyrights | W. Trevor King | 2010-01-01 | 1 | -1/+1 |
| | |||||
* | Fixed commit handling in commands.serve and storage.http | W. Trevor King | 2010-01-01 | 1 | -2/+2 |
| | |||||
* | Fixed some stupid typos in libbe/storage/http.py | W. Trevor King | 2010-01-01 | 1 | -2/+2 |
| | |||||
* | Added libbe.command.serve and libbe.storage.http for HTTP backend. | W. Trevor King | 2010-01-01 | 1 | -0/+262 |
Now the following works: some-BE-dir$ ./be serve $ ./be --repo http://localhost:8000 list I haven't come up with a clean idea for testing this yet, so other commands may be broken, but once we get the testing working, it shouldn't be too hard to get everything working over HTTP :). |