Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python-Werkzeug-doc-0.14.1-lp152.3.2 RPM for noarch

From OpenSuSE Leap 15.2 for noarch

Name: python-Werkzeug-doc Distribution: openSUSE Leap 15.2
Version: 0.14.1 Vendor: openSUSE
Release: lp152.3.2 Build date: Fri Sep 20 23:08:53 2019
Group: Documentation/Other Build host: lamb03
Size: 312762 Source RPM: python-Werkzeug-doc-0.14.1-lp152.3.2.src.rpm
Packager: https://bugs.opensuse.org
Url: http://werkzeug.pocoo.org/
Summary: Documentation for python-Werkzeug
Documentation and examples for python-Werkzeug

Provides

Requires

License

BSD-3-Clause

Changelog

* Wed Jan 03 2018 arun@gmx.de
  - specfile:
    * update copyright year
  - update to version 0.14.1:
    * Resolved a regression with status code handling in the integrated
      development server.
  - changes from version 0.14:
    * HTTP exceptions are now automatically caught by
      Request.application.
    * Added support for edge as browser.
    * Added support for platforms that lack SpooledTemporaryFile.
    * Add support for etag handling through if-match
    * Added support for the SameSite cookie attribute.
    * Added werkzeug.wsgi.ProxyMiddleware
    * Implemented has for NullCache
    * get_multi on cache clients now returns lists all the time.
    * Improved the watchdog observer shutdown for the reloader to not
      crash on exit on older Python versions.
    * Added support for filename* filename attributes according to RFC
      2231
    * Resolved an issue where machine ID for the reloader PIN was not
      read accurately on windows.
    * Added a workaround for syntax errors in init files in the
      reloader.
    * Added support for using the reloader with console scripts on
      windows.
    * The built-in HTTP server will no longer close a connection in
      cases where no HTTP body is expected (204, 204, HEAD requests
      etc.)
    * The EnvironHeaders object now skips over empty content type and
      lengths if they are set to falsy values.
    * Werkzeug will no longer send the content-length header on 1xx or
      204/304 responses.
    * Cookie values are now also permitted to include slashes and equal
      signs without quoting.
    * Relaxed the regex for the routing converter arguments.
    * If cookies are sent without values they are now assumed to have an
      empty value and the parser accepts this. Previously this could
      have corrupted cookies that followed the value.
    * The test Client and EnvironBuilder now support mimetypes like the
      request object does.
    * Added support for static weights in URL rules.
    * Better handle some more complex reloader scenarios where sys.path
      contained non directory paths.
    * EnvironHeaders no longer raises weird errors if non string keys
      are passed to it.
* Fri Dec 08 2017 arun@gmx.de
  - specfile:
    * added CHANGES.rst and README.rst to %doc section
    * require requests and hypothesis for tests
  - update to version 0.13:
    * Deprecate support for Python 2.6 and 3.3. CI tests will not run
      for these versions, and support will be dropped completely in the
      next version. (pallets/meta#24)
    * Raise TypeError when port is not an integer. (#1088)
    * Fully deprecate werkzeug.script. Use Click instead. (#1090)
    * response.age is parsed as a timedelta. Previously, it was
      incorrectly treated as a datetime. The header value is an integer
      number of seconds, not a date string. (#414)
    * Fix a bug in TypeConversionDict where errors are not propagated
      when using the converter. (#1102)
    * Authorization.qop is a string instead of a set, to comply with RFC
      2617. (#984)
    * An exception is raised when an encoded cookie is larger than, by
      default, 4093 bytes. Browsers may silently ignore cookies larger
      than this. BaseResponse has a new attribute max_cookie_size and
      dump_cookie has a new argument max_size to configure this. (#780,
      [#1109])
    * Fix a TypeError in
      werkzeug.contrib.lint.GuardedIterator.close. (#1116)
    * BaseResponse.calculate_content_length now correctly works for
      Unicode responses on Python 3. It first encodes using
      iter_encoded. (#705)
    * Secure cookie contrib works with string secret key on Python
      3. (#1205)
    * Shared data middleware accepts a list instead of a dict of static
      locations to preserve lookup order. (#1197)
    * HTTP header values without encoding can contain single
      quotes. (#1208)
    * The built-in dev server supports receiving requests with chunked
      transfer encoding. (#1198)
* Tue Aug 08 2017 tbechtold@suse.com
  - update to 0.12.2:
    - Fix regression: Pull request ``#892`` prevented Werkzeug from correctly
      logging the IP of a remote client behind a reverse proxy, even when using
      `ProxyFix`.
    - Fix a bug in `safe_join` on Windows.
* Tue Apr 04 2017 jmatejek@suse.com
  - update to 0.12.1
  - use python3-Sphinx for build
* Thu Sep 15 2016 toddrme2178@gmail.com
  - update to version 0.11.11:
    * Fix JSONRequestMixin for Python3. See #731
    * Fix broken string handling in test client when passing
      integers. See #852
    * Fix a bug in "parse_options_header" where an invalid content type
      starting with comma or semi-colon would result in an invalid
      return value, see issue "#995".
    * Fix a bug in multidicts when passing empty lists as values, see
      issue "#979".
    * Fix a security issue that allows XSS on the Werkzeug debugger. See
      "#1001".
  - update to version 0.11.10:
    * Fixed a bug that occurs when running on Python 2.6 and using a
      broken locale.  See pull request #912.
    * Fixed a crash when running the debugger on Google App Engine. See
      issue #925.
    * Fixed an issue with multipart parsing that could cause memory
      exhaustion.
  - Update to 0.11.9
    - Corrected an issue that caused the debugger not to use the
      machine GUID on POSIX systems.
    - Corrected an Unicode error on Python 3 for the debugger's
      PIN usage.
    - Corrected the timestamp verification in the pin debug code.
      Without this fix the pin was remebered until too long.
  - update to version 0.11.8:
    * fixed a problem with the machine GUID detection code on OS X on
      Python 3.
  - changes from version 0.11.7:
    * fixed a regression on Python 3 for the debugger.
  - changes from version 0.11.6:
    * werkzeug.serving: Still show the client address on bad requests.
    * improved the PIN based protection for the debugger to make it
      harder to brute force via trying cookies.  Please keep in mind
      that the debugger *is not intended for running on production
      environments*
    * increased the pin timeout to a week to make it less annoying for
      people which should decrease the change that users disable the pin
      check entirely.
    * werkzeug.serving: Fix broken HTTP_HOST when path starts with
      double slash.
  - update to version 0.11.5:
    * werkzeug.serving: Fix crash when attempting SSL connection to HTTP
      server.
  - update to version 0.11.4:
    * Fixed werkzeug.serving not working from -m flag.
    * Fixed incorrect weak etag handling.
  - Rebase 0001_create_a_thread_to_reap_death_process.patch
  - Split documentation into own subpackage to speed up build.

Files

/usr/share/doc/packages/python-Werkzeug-doc
/usr/share/doc/packages/python-Werkzeug-doc/AUTHORS
/usr/share/doc/packages/python-Werkzeug-doc/CHANGES.rst
/usr/share/doc/packages/python-Werkzeug-doc/README.rst
/usr/share/doc/packages/python-Werkzeug-doc/examples
/usr/share/doc/packages/python-Werkzeug-doc/examples/README
/usr/share/doc/packages/python-Werkzeug-doc/examples/contrib
/usr/share/doc/packages/python-Werkzeug-doc/examples/contrib/README
/usr/share/doc/packages/python-Werkzeug-doc/examples/contrib/securecookie.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/contrib/sessions.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/cookieauth.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/coolmagic
/usr/share/doc/packages/python-Werkzeug-doc/examples/coolmagic/__init__.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/coolmagic/application.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/coolmagic/helpers.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/coolmagic/public
/usr/share/doc/packages/python-Werkzeug-doc/examples/coolmagic/public/style.css
/usr/share/doc/packages/python-Werkzeug-doc/examples/coolmagic/templates
/usr/share/doc/packages/python-Werkzeug-doc/examples/coolmagic/templates/layout.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/coolmagic/templates/static
/usr/share/doc/packages/python-Werkzeug-doc/examples/coolmagic/templates/static/about.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/coolmagic/templates/static/index.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/coolmagic/templates/static/not_found.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/coolmagic/utils.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/coolmagic/views
/usr/share/doc/packages/python-Werkzeug-doc/examples/coolmagic/views/__init__.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/coolmagic/views/static.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/couchy
/usr/share/doc/packages/python-Werkzeug-doc/examples/couchy/README
/usr/share/doc/packages/python-Werkzeug-doc/examples/couchy/__init__.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/couchy/application.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/couchy/models.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/couchy/static
/usr/share/doc/packages/python-Werkzeug-doc/examples/couchy/static/style.css
/usr/share/doc/packages/python-Werkzeug-doc/examples/couchy/templates
/usr/share/doc/packages/python-Werkzeug-doc/examples/couchy/templates/display.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/couchy/templates/layout.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/couchy/templates/list.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/couchy/templates/new.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/couchy/templates/not_found.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/couchy/utils.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/couchy/views.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/cupoftee
/usr/share/doc/packages/python-Werkzeug-doc/examples/cupoftee/__init__.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/cupoftee/application.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/cupoftee/db.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/cupoftee/network.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/cupoftee/pages.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/cupoftee/shared
/usr/share/doc/packages/python-Werkzeug-doc/examples/cupoftee/shared/content.png
/usr/share/doc/packages/python-Werkzeug-doc/examples/cupoftee/shared/down.png
/usr/share/doc/packages/python-Werkzeug-doc/examples/cupoftee/shared/favicon.ico
/usr/share/doc/packages/python-Werkzeug-doc/examples/cupoftee/shared/header.png
/usr/share/doc/packages/python-Werkzeug-doc/examples/cupoftee/shared/logo.png
/usr/share/doc/packages/python-Werkzeug-doc/examples/cupoftee/shared/style.css
/usr/share/doc/packages/python-Werkzeug-doc/examples/cupoftee/shared/up.png
/usr/share/doc/packages/python-Werkzeug-doc/examples/cupoftee/templates
/usr/share/doc/packages/python-Werkzeug-doc/examples/cupoftee/templates/layout.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/cupoftee/templates/missingpage.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/cupoftee/templates/search.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/cupoftee/templates/server.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/cupoftee/templates/serverlist.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/cupoftee/utils.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/httpbasicauth.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/i18nurls
/usr/share/doc/packages/python-Werkzeug-doc/examples/i18nurls/__init__.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/i18nurls/application.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/i18nurls/templates
/usr/share/doc/packages/python-Werkzeug-doc/examples/i18nurls/templates/about.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/i18nurls/templates/blog.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/i18nurls/templates/index.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/i18nurls/templates/layout.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/i18nurls/urls.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/i18nurls/views.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/manage-coolmagic.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/manage-couchy.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/manage-cupoftee.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/manage-i18nurls.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/manage-plnt.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/manage-shorty.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/manage-simplewiki.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/manage-webpylike.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/partial
/usr/share/doc/packages/python-Werkzeug-doc/examples/partial/README
/usr/share/doc/packages/python-Werkzeug-doc/examples/partial/complex_routing.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/plnt
/usr/share/doc/packages/python-Werkzeug-doc/examples/plnt/__init__.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/plnt/database.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/plnt/shared
/usr/share/doc/packages/python-Werkzeug-doc/examples/plnt/shared/style.css
/usr/share/doc/packages/python-Werkzeug-doc/examples/plnt/sync.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/plnt/templates
/usr/share/doc/packages/python-Werkzeug-doc/examples/plnt/templates/about.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/plnt/templates/index.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/plnt/templates/layout.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/plnt/utils.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/plnt/views.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/plnt/webapp.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/shortly
/usr/share/doc/packages/python-Werkzeug-doc/examples/shortly/shortly.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/shortly/static
/usr/share/doc/packages/python-Werkzeug-doc/examples/shortly/static/style.css
/usr/share/doc/packages/python-Werkzeug-doc/examples/shortly/templates
/usr/share/doc/packages/python-Werkzeug-doc/examples/shortly/templates/404.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/shortly/templates/layout.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/shortly/templates/new_url.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/shortly/templates/short_link_details.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/shorty
/usr/share/doc/packages/python-Werkzeug-doc/examples/shorty/__init__.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/shorty/application.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/shorty/models.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/shorty/static
/usr/share/doc/packages/python-Werkzeug-doc/examples/shorty/static/style.css
/usr/share/doc/packages/python-Werkzeug-doc/examples/shorty/templates
/usr/share/doc/packages/python-Werkzeug-doc/examples/shorty/templates/display.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/shorty/templates/layout.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/shorty/templates/list.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/shorty/templates/new.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/shorty/templates/not_found.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/shorty/utils.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/shorty/views.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/simplewiki
/usr/share/doc/packages/python-Werkzeug-doc/examples/simplewiki/__init__.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/simplewiki/actions.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/simplewiki/application.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/simplewiki/database.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/simplewiki/shared
/usr/share/doc/packages/python-Werkzeug-doc/examples/simplewiki/shared/style.css
/usr/share/doc/packages/python-Werkzeug-doc/examples/simplewiki/specialpages.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/simplewiki/templates
/usr/share/doc/packages/python-Werkzeug-doc/examples/simplewiki/templates/action_diff.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/simplewiki/templates/action_edit.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/simplewiki/templates/action_log.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/simplewiki/templates/action_revert.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/simplewiki/templates/action_show.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/simplewiki/templates/layout.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/simplewiki/templates/macros.xml
/usr/share/doc/packages/python-Werkzeug-doc/examples/simplewiki/templates/missing_action.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/simplewiki/templates/page_index.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/simplewiki/templates/page_missing.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/simplewiki/templates/recent_changes.html
/usr/share/doc/packages/python-Werkzeug-doc/examples/simplewiki/utils.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/upload.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/webpylike
/usr/share/doc/packages/python-Werkzeug-doc/examples/webpylike/example.py
/usr/share/doc/packages/python-Werkzeug-doc/examples/webpylike/webpylike.py
/usr/share/doc/packages/python-Werkzeug-doc/html
/usr/share/licenses/python-Werkzeug-doc
/usr/share/licenses/python-Werkzeug-doc/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 11:50:38 2024