You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by ke...@apache.org on 2020/09/15 15:28:25 UTC

[allura] branch master updated (b3973eb -> 352c329)

This is an automated email from the ASF dual-hosted git repository.

kentontaylor pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/allura.git.


    from b3973eb  Remove byte size validator on project description (just validate string length)
     add 9b0f7a1  [#8375] fix ForgeFeedback file permissions so tests are runnable by nosetests; fix tests
     add 896a6f8  [#8375] fix neighborhood registration
     add 6973f36  [#8375] handle regex escape differences, which fixes a few tests
     add d32ccf8  [#8375] various mail formatting/encoding fixes for py3
     add 7e1d3c4  [#8375] nuanced str/bytes/charset handling for email messages
     add 8a17b6f  [#8375] for json dumping to temp files, set mode to not binary
     add d443bf1  [#8375] ForgeBlog core lookup fix
     add ad78115  [#8375] avoid "Running setup_app() from allura.websetup" output during test runs
     add 886cd0d  [#8375] requirements fine-tuning
     add e70fbe5  [#8375] more formencode bytes fixes
     add e522647  [#8375] git py3 fixes
     add 8c27232  [#8375] hide_private_info Markup py3 fix
     add 59c853f  [#8375] iterator compatibility for py3
     add f6cfee7  [#8375] ForgeImporters test fixes for py3
     add 7456010  [#8375] url quoting fixes
     add 18788c6  [#8375] simpler tg.jsonify.JSONEncoder patch
     add 833cbf0  [#8375] don't use a direct keys() view when mutating a dict in a loop
     add 727d750  [#8375] tracker fixes
     add 352c329  [#8375] svn fixes

No new revisions were added by this update.

Summary of changes:
 Allura/allura/app.py                               |  2 +-
 Allura/allura/controllers/project.py               |  8 +++---
 Allura/allura/controllers/repository.py            | 13 +++++-----
 Allura/allura/lib/decorators.py                    |  2 +-
 Allura/allura/lib/helpers.py                       |  6 ++++-
 Allura/allura/lib/mail_util.py                     | 30 ++++++++++++++--------
 Allura/allura/lib/patches.py                       | 10 +-------
 Allura/allura/lib/plugin.py                        |  3 ++-
 Allura/allura/lib/utils.py                         |  1 +
 Allura/allura/lib/validators.py                    |  8 +++++-
 Allura/allura/lib/widgets/discuss.py               |  7 ++++-
 Allura/allura/model/auth.py                        |  4 ++-
 Allura/allura/model/neighborhood.py                |  2 +-
 Allura/allura/model/repository.py                  |  3 ++-
 Allura/allura/scripts/trac_export.py               |  1 +
 Allura/allura/tests/decorators.py                  | 11 ++++++++
 .../allura/tests/functional/test_neighborhood.py   |  1 +
 .../allura/tests/functional/test_user_profile.py   |  2 +-
 Allura/allura/tests/test_helpers.py                |  3 +++
 Allura/allura/tests/test_mail_util.py              |  2 +-
 Allura/allura/tests/test_tasks.py                  | 21 ++++++++-------
 AlluraTest/alluratest/controller.py                |  2 +-
 ForgeBlog/forgeblog/main.py                        |  2 +-
 ForgeBlog/forgeblog/tests/test_app.py              |  4 +--
 .../forgediscussion/tests/functional/test_forum.py |  3 +++
 ForgeDiscussion/forgediscussion/tests/test_app.py  |  4 +--
 ForgeFeedback/forgefeedback/__init__.py            |  0
 ForgeFeedback/forgefeedback/feedback_main.py       |  0
 ForgeFeedback/forgefeedback/model/__init__.py      |  0
 ForgeFeedback/forgefeedback/model/feedback.py      |  0
 ForgeFeedback/forgefeedback/templates/__init__.py  |  0
 ForgeFeedback/forgefeedback/tests/__init__.py      |  0
 .../forgefeedback/tests/functional/__init__.py     |  0
 .../forgefeedback/tests/functional/test_root.py    |  2 ++
 .../forgefeedback/tests/test_feedback_roles.py     |  0
 ForgeFeedback/forgefeedback/tests/unit/__init__.py |  0
 .../forgefeedback/tests/unit/test_feedback.py      |  0
 .../tests/unit/test_root_controller.py             |  0
 ForgeFeedback/forgefeedback/version.py             |  0
 ForgeFeedback/setup.py                             |  0
 ForgeGit/forgegit/model/git_repo.py                |  4 +--
 .../forgegit/tests/functional/test_controllers.py  |  4 +--
 ForgeGit/forgegit/tests/model/test_repository.py   |  2 +-
 ForgeImporters/forgeimporters/base.py              | 12 +++++++++
 .../forgeimporters/tests/github/test_extractor.py  | 22 ++++++++--------
 .../forgeimporters/tests/github/test_tracker.py    |  4 +--
 .../trac/tests/functional/test_trac.py             |  6 ++---
 ForgeLink/forgelink/link_main.py                   |  2 +-
 ForgeLink/forgelink/tests/functional/test_rest.py  | 14 +++++-----
 ForgeLink/forgelink/tests/functional/test_root.py  |  6 +++--
 ForgeLink/forgelink/tests/test_app.py              |  2 +-
 ForgeSVN/forgesvn/model/svn.py                     |  9 ++++---
 ForgeSVN/forgesvn/tests/model/test_repository.py   |  3 +--
 ForgeTracker/forgetracker/import_support.py        |  4 +--
 ForgeTracker/forgetracker/model/ticket.py          | 15 ++++++-----
 .../forgetracker/tests/functional/test_root.py     | 16 +++++++-----
 ForgeTracker/forgetracker/tests/test_app.py        |  4 +--
 .../forgetracker/tests/unit/test_ticket_model.py   | 16 ++++++------
 ForgeTracker/forgetracker/tracker_main.py          |  6 ++---
 ForgeTracker/forgetracker/widgets/ticket_form.py   |  2 +-
 ForgeWiki/forgewiki/tests/functional/test_rest.py  |  6 ++---
 ForgeWiki/forgewiki/tests/test_app.py              |  6 ++---
 requirements.in                                    |  2 ++
 requirements.txt                                   |  2 +-
 64 files changed, 192 insertions(+), 134 deletions(-)
 mode change 100755 => 100644 ForgeFeedback/forgefeedback/__init__.py
 mode change 100755 => 100644 ForgeFeedback/forgefeedback/feedback_main.py
 mode change 100755 => 100644 ForgeFeedback/forgefeedback/model/__init__.py
 mode change 100755 => 100644 ForgeFeedback/forgefeedback/model/feedback.py
 mode change 100755 => 100644 ForgeFeedback/forgefeedback/templates/__init__.py
 mode change 100755 => 100644 ForgeFeedback/forgefeedback/tests/__init__.py
 mode change 100755 => 100644 ForgeFeedback/forgefeedback/tests/functional/__init__.py
 mode change 100755 => 100644 ForgeFeedback/forgefeedback/tests/functional/test_root.py
 mode change 100755 => 100644 ForgeFeedback/forgefeedback/tests/test_feedback_roles.py
 mode change 100755 => 100644 ForgeFeedback/forgefeedback/tests/unit/__init__.py
 mode change 100755 => 100644 ForgeFeedback/forgefeedback/tests/unit/test_feedback.py
 mode change 100755 => 100644 ForgeFeedback/forgefeedback/tests/unit/test_root_controller.py
 mode change 100755 => 100644 ForgeFeedback/forgefeedback/version.py
 mode change 100755 => 100644 ForgeFeedback/setup.py