| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-07-29 | Use None for the default value of the callbacks list. | Dobes Vandermeer | |
| 2014-07-23 | Add a test case for a response callback adding a response callback when it ↵ | Dobes Vandermeer | |
| is the only callback. | |||
| 2014-07-09 | Allow the last callback called to add a callback | dobesv | |
| This fixes a bug in the finished and response callbacks where if the last/only callback adds another callback, the newly added callback won't be called afterwards. This is because when it tries to add the callback, it is added to a new list instance because the callbacks list is empty at that time; the check for whether the callbacks list was created didn't previously distinguish between an empty list and not a list. However, if it is not the last callback in the list, the callbacks list will not be empty and the new callback will be added to the same list and the newly added callback *will* be called. Because the code as written appears to be trying to support callbacks adding callbacks, this push request modifies the code so that a callback may add another callback whether it is the last one or not. An alternative approach would be to modify the code so that callbacks cannot add new callbacks, which also would be reasonable. But I think it's a bug that the behavior depends currently on whether you are in the last/only callback when you try to add another one. | |||
| 2014-07-04 | Fix path to pshell | Kamal Gill | |
| 2014-07-04 | Correct handler name for logger_wsgi | LiJunjie | |
| 2014-07-02 | dont need to use any settings, we include pyramid_jinja2 in main | Chris McDonough | |
| 2014-07-01 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2014-06-20 | Merge pull request #1365 from frewsxcv/patch-1 | Tres Seaver | |
| Enable automated testing with Python 3.4 | |||
| 2014-06-19 | Enable automated testing with Python 3.4 | Corey Farwell | |
| 2014-06-05 | - Work around a bug introduced in Python 2.7.7 on Windows where | Chris McDonough | |
| ``mimetypes.guess_type`` returns Unicode rather than str for the content type, unlike any previous version of Python. See https://github.com/Pylons/pyramid/issues/1360 for more information. Closes #1360. | |||
| 2014-06-05 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2014-06-04 | Merge pull request #1359 from george2/patch-1 | Michael Merickel | |
| Scaffold templates: fix missing </ul> tags | |||
| 2014-06-04 | Scaffold templates: close more ul tags. | george | |
| Missing tags in other scaffold templates. | |||
| 2014-06-04 | Scaffold template: close an ul tag. | george2 | |
| Missing `</ul>` in starter scaffold template. | |||
| 2014-06-01 | fix inclusion of README.rst in the package description | goodwillcoding | |
| 2014-05-25 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2014-05-25 | Bring in #1352 | Steve Piercy | |
| 2014-05-22 | fix project url | Michael Merickel | |
| 2014-05-21 | oops, re-clarify that tweens should not have mutable state | Michael Merickel | |
| 2014-05-21 | Merge branch 'pull.1349' | Michael Merickel | |
| 2014-05-21 | clarify tween thread-safety | Michael Merickel | |
| 2014-05-18 | Draw attention that tweens instances are unique and shared between threads | flibustenet | |
| Forgetting that tween instance are not instantiated for each request leads to threads issues difficult to detect | |||
| 2014-05-16 | update changelog | Michael Merickel | |
| 2014-05-16 | Merge branch 'pull.1251' | Michael Merickel | |
| 2014-05-16 | close resources and 80-char line width | Michael Merickel | |
| 2014-05-16 | Expand tests - make sure pdf, jpeg types also are not annotated with a charset. | Dobes Vandermeer | |
| 2014-05-16 | Add tests for the content_type fix. | Dobes Vandermeer | |
| 2014-05-16 | Don't incorrectly default charset on FileResponse | dobesv | |
| By passing the content_type into the constructor to Response, we can allow it to decide intelligently whether the default charset should apply. Otherwise we'd have to replicate that logic somehow, or live with weird charset annotations on images, pdfs, and zips. | |||
| 2014-05-16 | Merge pull request #1346 from kpinc/doc_templates | Michael Merickel | |
| Docs: narr/templates.rst: Link template bindings to pyramid docs. | |||
| 2014-05-16 | Docs: narr/templates.rst: Link template bindings to pyramid docs. | Karl O. Pinc | |
| 2014-05-16 | Merge pull request #1347 from krysros/master | Steve Piercy | |
| fix typo | |||
| 2014-05-16 | fix typo | krysros | |
| 2014-05-16 | Merge pull request #1345 from kpinc/doc_templates | Michael Merickel | |
| Docs: narr/templates.rst: Doc default extensions of each template system... | |||
| 2014-05-16 | Docs: narr/templates.rst: Doc default extensions of each template system. | Karl O. Pinc | |
| 2014-05-13 | Merge pull request #1341 from bertjwregeer/fix.typo | Michael Merickel | |
| Update hooks.rst | |||
| 2014-05-13 | Update hooks.rst | synthomat | |
| 'self' param was omitted in the constructor of simple_tween_factory class | |||
| 2014-05-12 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2014-05-07 | Merge branch 'master' of https://github.com/ftravers/pyramid into pull.1325 | Michael Merickel | |
| 2014-05-06 | Added required notes to changes/contributors file. | Fenton Travers | |
| 2014-05-05 | Merge pull request #1322 from Pylons/fix.setUp-relative-package | Michael Merickel | |
| modify p.testing.setUp() to configure the package relative to caller | |||
| 2014-05-05 | modify p.testing.setUp() to configure the package relative to caller | Michael Merickel | |
| 2014-05-05 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2014-05-05 | fix merge conflicts | Chris McDonough | |
| 2014-05-05 | Merge pull request #1335 from flibustenet/patch-3 | Michael Merickel | |
| Order of response_callback in the docstring | |||
| 2014-05-05 | modify changes wrt logging config stripping | Chris McDonough | |
| 2014-05-05 | Merge branch 'redundant_totuorial_logging_config' | Chris McDonough | |
| 2014-05-05 | Merge branch 'master' into redundant_totuorial_logging_config | Chris McDonough | |
| 2014-05-05 | Order of response_callback in the docstring | flibustenet | |
| 2014-05-03 | Merge pull request #1333 from stevepiercy/master | Steve Piercy | |
| - add a reference | |||
| 2014-05-03 | - add a reference | Steve Piercy | |
