This is an automated email from the ASF dual-hosted git repository.
gcruz pushed a change to branch gc/8452
in repository https://gitbox.apache.org/repos/asf/allura.git
discard a8111a58c fixup! [#8452] replaced .bind calls with .on
discard 0055b6343 [#8452] replaced .bind calls with .on
discard d8dbce397 [#8452] updated .removeAttr -> .prop
add 49cf14985 [#8449] added jQuery 3.6
add 4ff55c84d [#8450] REST docs: remove displayName from parameters; don't
want to show it as anything other than its real param name
add e24ba6070 [#8450] REST docs: mention oauth endpoints
add 24de5cb4a [#8450] show more info for individual repos
add d783ab26b [#8450] do oauth check for all /rest/ paths, and simplify
normal request auth methods
add e96c19fd5 [#8450] make /rest/auth/tools endpoint, refactor repo
fields, remove old/confusing tool fields
add 1babf6314 has_access() works with == not just is/bool checks
add 91c783605 post_widget.html has_access() cleanup:
new 263467d70 [#8452] updated .removeAttr -> .prop
new b00d185f2 [#8452] replaced .bind calls with .on
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (a8111a58c)
\
N -- N -- N refs/heads/gc/8452 (b00d185f2)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
Allura/LICENSE | 4 +-
Allura/allura/app.py | 10 +-
Allura/allura/controllers/auth.py | 15 +
Allura/allura/controllers/basetest_project_root.py | 13 +-
Allura/allura/controllers/repository.py | 21 +-
Allura/allura/controllers/rest.py | 15 +-
Allura/allura/controllers/root.py | 7 +-
Allura/allura/lib/base.py | 40 -
Allura/allura/lib/repository.py | 10 +
Allura/allura/lib/utils.py | 9 +-
Allura/allura/lib/widgets/form_fields.py | 2 +-
Allura/allura/model/auth.py | 7 +-
Allura/allura/model/project.py | 14 +-
Allura/allura/model/repository.py | 1 -
Allura/allura/public/nf/js/jquery-3.6.0.min.js | 3 +
Allura/allura/public/nf/js/jquery-base.js | 121 ---
Allura/allura/public/nf/js/jquery-migrate-3.4.0.js | 983 +++++++++++++++++++++
Allura/allura/public/nf/js/jquery.cookie-1.4.1.js | 117 +++
Allura/allura/templates/jinja_master/master.html | 4 +-
Allura/allura/templates/login_fragment.html | 4 +-
.../templates/phone_verification_fragment.html | 4 +-
Allura/allura/templates/widgets/post_widget.html | 25 +-
.../templates_responsive/jinja_master/master.html | 4 +-
Allura/allura/tests/functional/test_auth.py | 41 +-
Allura/allura/tests/functional/test_rest.py | 6 +
Allura/allura/tests/test_utils.py | 4 +
Allura/docs/api-rest/api.raml | 60 +-
Allura/docs/api-rest/examples/auth-tools.json | 22 +
Allura/docs/api-rest/examples/scm.json | 10 +
Allura/docs/api-rest/schemas/auth-tools.json | 50 ++
Allura/docs/api-rest/schemas/page.json | 2 +-
Allura/docs/api-rest/schemas/scm.json | 44 +
Allura/docs/api-rest/schemas/tickets.json | 2 +-
.../forgegit/tests/functional/test_controllers.py | 11 +-
.../forgeimporters/templates/project_base.html | 1 -
LICENSE | 4 +-
rat-excludes.txt | 4 +-
37 files changed, 1446 insertions(+), 248 deletions(-)
delete mode 100644 Allura/allura/lib/base.py
create mode 100644 Allura/allura/public/nf/js/jquery-3.6.0.min.js
delete mode 100644 Allura/allura/public/nf/js/jquery-base.js
create mode 100644 Allura/allura/public/nf/js/jquery-migrate-3.4.0.js
create mode 100644 Allura/allura/public/nf/js/jquery.cookie-1.4.1.js
create mode 100755 Allura/docs/api-rest/examples/auth-tools.json
create mode 100755 Allura/docs/api-rest/examples/scm.json
create mode 100755 Allura/docs/api-rest/schemas/auth-tools.json
create mode 100755 Allura/docs/api-rest/schemas/scm.json