[Checkins] [zopefoundation/Zope] dc2ddb: Fix typos. (#579)

Jens Vagelpohl noreply at github.com
Thu May 2 13:51:05 CEST 2019


  Branch: refs/heads/revise-section-exceptions
  Home:   https://github.com/zopefoundation/Zope
  Commit: dc2ddb05a1add24954af056d33e9b30e9d641b9b
      https://github.com/zopefoundation/Zope/commit/dc2ddb05a1add24954af056d33e9b30e9d641b9b
  Author: Jürgen Gmach <juergen.gmach at apis.de>
  Date:   2019-05-01 (Wed, 01 May 2019)

  Changed paths:
    M src/OFS/Application.py

  Log Message:
  -----------
  Fix typos. (#579)


  Commit: 15706b994196c0db4d522b34d048da54ebadb978
      https://github.com/zopefoundation/Zope/commit/15706b994196c0db4d522b34d048da54ebadb978
  Author: Jens Vagelpohl <jens at dataflake.org>
  Date:   2019-05-01 (Wed, 01 May 2019)

  Changed paths:
    M .gitignore

  Log Message:
  -----------
  - ignore lib64 link pointing to lib [ci skip]


  Commit: e6abeea6365878360232a3930a09ed425272289c
      https://github.com/zopefoundation/Zope/commit/e6abeea6365878360232a3930a09ed425272289c
  Author: Jens Vagelpohl <jens at dataflake.org>
  Date:   2019-05-01 (Wed, 01 May 2019)

  Changed paths:
    M CHANGES.rst
    M src/ZPublisher/HTTPResponse.py
    M src/ZPublisher/tests/testHTTPResponse.py

  Log Message:
  -----------
  - Ensure a redirect path does not get URL-encoded twice


  Commit: c12a21480a278ac239c7096847c3244f0f885bc8
      https://github.com/zopefoundation/Zope/commit/c12a21480a278ac239c7096847c3244f0f885bc8
  Author: Jens Vagelpohl <jens at dataflake.org>
  Date:   2019-05-01 (Wed, 01 May 2019)

  Changed paths:
    M CHANGES.rst
    M constraints.txt
    M requirements-full.txt
    M setup.py
    M src/App/special_dtml.py
    M src/OFS/DTMLMethod.py
    M versions-prod.cfg

  Log Message:
  -----------
  - Be more careful when guessing at encoding for document template types


  Commit: b6fa2ab19e9e5944343cad23dc9bc8d20baafe75
      https://github.com/zopefoundation/Zope/commit/b6fa2ab19e9e5944343cad23dc9bc8d20baafe75
  Author: Michael Howitz <mh at gocept.com>
  Date:   2019-05-02 (Thu, 02 May 2019)

  Changed paths:
    M CHANGES.rst
    M src/ZPublisher/HTTPResponse.py
    M src/ZPublisher/tests/testHTTPResponse.py

  Log Message:
  -----------
  Prevent Error in isHTML() (#577)

* Prevent Error in isHTML()

If the parameter cannot be decoded none of the following checkes can lead to `True`.
The last one even breaks on Python 3 because it tries to find a `text` in a `bytes` object.

* Add change log entry and test.


  Commit: d44dd2ff27690c38874ca77f6b1f68016f682e96
      https://github.com/zopefoundation/Zope/commit/d44dd2ff27690c38874ca77f6b1f68016f682e96
  Author: Jens Vagelpohl <jens at netz.ooo>
  Date:   2019-05-02 (Thu, 02 May 2019)

  Changed paths:
    M CHANGES.rst
    M setup.cfg
    M src/OFS/SimpleItem.py
    A src/Products/Five/utilities/browser/__init__.py
    A src/Products/Five/utilities/browser/configure.zcml
    A src/Products/Five/utilities/browser/edit_markers.pt
    A src/Products/Five/utilities/browser/manage_interfaces.pt
    A src/Products/Five/utilities/browser/marker.py
    A src/Products/Five/utilities/browser/tests/__init__.py
    A src/Products/Five/utilities/browser/tests/test_marker.py
    M src/Products/Five/utilities/configure.zcml
    M src/Shared/DC/Scripts/Bindings.py

  Log Message:
  -----------
  Resurrect the Interfaces ZMI tab (#572)

* - showing missed lines is not helpful with this much output

* - fix a longstanding error traversing into views from page templates

* - Resurrect the Interfaces ZMI tab

* - remove unused method and show ZMI message upon changes

* - bring back tests, this time as unit tests


  Commit: 2139f2ceeb49380d3dd58388236e0461446096ab
      https://github.com/zopefoundation/Zope/commit/2139f2ceeb49380d3dd58388236e0461446096ab
  Author: Jens Vagelpohl <jens at netz.ooo>
  Date:   2019-05-02 (Thu, 02 May 2019)

  Changed paths:
    M .gitignore
    M CHANGES.rst
    M docs/wsgi.rst
    M src/ZPublisher/WSGIPublisher.py
    M src/ZPublisher/tests/test_WSGIPublisher.py
    M src/Zope2/Startup/run.py
    M src/Zope2/Startup/serve.py
    M src/Zope2/Startup/starter.py
    M src/Zope2/Startup/wsgischema.xml
    M src/Zope2/utilities/skel/etc/wsgi.conf.in

  Log Message:
  -----------
  Add setting to disable registered error views for debugging in WSGI setups (#563)

* - ignore VIM swap files [ci skip]

* - fix calls to publish_module by explicitly naming keyword arguments

* - Exceptions during publishing are now re-raised when in debug mode

* - add section for werkzeug and for debugging Zope applications

* - switching everything over to its own configuration setting

* - fix test

* - silence isort

* - simplify this patch

* - change already in master

* - documentation updates and a test polish


  Commit: f076ff697fde7b25ba187c9817dbe61bed7b68c4
      https://github.com/zopefoundation/Zope/commit/f076ff697fde7b25ba187c9817dbe61bed7b68c4
  Author: Jens Vagelpohl <jens at netz.ooo>
  Date:   2019-05-02 (Thu, 02 May 2019)

  Changed paths:
    M .gitignore
    M CHANGES.rst
    M constraints.txt
    M docs/wsgi.rst
    M requirements-full.txt
    M setup.cfg
    M setup.py
    M src/App/special_dtml.py
    M src/OFS/Application.py
    M src/OFS/DTMLMethod.py
    M src/OFS/SimpleItem.py
    A src/Products/Five/utilities/browser/__init__.py
    A src/Products/Five/utilities/browser/configure.zcml
    A src/Products/Five/utilities/browser/edit_markers.pt
    A src/Products/Five/utilities/browser/manage_interfaces.pt
    A src/Products/Five/utilities/browser/marker.py
    A src/Products/Five/utilities/browser/tests/__init__.py
    A src/Products/Five/utilities/browser/tests/test_marker.py
    M src/Products/Five/utilities/configure.zcml
    M src/Shared/DC/Scripts/Bindings.py
    M src/ZPublisher/HTTPResponse.py
    M src/ZPublisher/WSGIPublisher.py
    M src/ZPublisher/tests/testHTTPResponse.py
    M src/ZPublisher/tests/test_WSGIPublisher.py
    M src/Zope2/Startup/run.py
    M src/Zope2/Startup/serve.py
    M src/Zope2/Startup/starter.py
    M src/Zope2/Startup/wsgischema.xml
    M src/Zope2/utilities/skel/etc/wsgi.conf.in
    M versions-prod.cfg

  Log Message:
  -----------
  Merge branch 'master' into revise-section-exceptions


Compare: https://github.com/zopefoundation/Zope/compare/31b3b20ee1d6...f076ff697fde


More information about the checkins mailing list