This is an automated email from the ASF dual-hosted git repository.
brondsem pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/allura.git.
from 45bc8dc Update examples in docs to work with python 3
new 096aaa8 [#8368] Snippets for the new Files App contribution
new cf95d42 [#8368] Python3 migration changes.
new 0587720 [#8368] Implementation of review points.
new 491b923 [#8368] server-side logic instead of JS to control nav bar
download button display
new b9aa0fb [#8368] style improvements
new 034f3ac [#8368] use app_config_id in more queries
new e93421c [#8368] file serving and email handling improvements
The 7 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/allura/nf/allura/css/site_style.css | 8 +
Allura/allura/templates/jinja_master/master.html | 1 -
Allura/allura/templates/jinja_master/nav_menu.html | 12 +-
.../widgets => ForgeFiles/forgefiles}/__init__.py | 0
ForgeFiles/forgefiles/files_main.py | 661 +++++++++++++++++++++
.../forgefiles/model}/__init__.py | 2 +-
ForgeFiles/forgefiles/model/files.py | 216 +++++++
.../forgefiles/nf/files/css/files.css | 89 +--
ForgeFiles/forgefiles/nf/files/js/create_folder.js | 76 +++
.../forgefiles/nf/files/js/delete.js | 32 +-
ForgeFiles/forgefiles/nf/files/js/edit.js | 82 +++
ForgeFiles/forgefiles/nf/files/js/files.js | 95 +++
.../forgefiles/nf/files/js/publish_folder.js | 47 +-
.../forgefiles/nf/files/js/upload_files.js | 35 +-
ForgeFiles/forgefiles/templates/create_folder.html | 58 ++
ForgeFiles/forgefiles/templates/delete.html | 62 ++
ForgeFiles/forgefiles/templates/edit.html | 78 +++
ForgeFiles/forgefiles/templates/files.html | 190 ++++++
.../forgefiles/templates/mail.html | 13 +-
.../forgefiles/templates/publish_folder.html | 69 +++
ForgeFiles/forgefiles/templates/upload_file.html | 55 ++
.../forgefiles/tests}/__init__.py | 0
.../forgefiles/tests/functional}/__init__.py | 0
.../forgefiles/tests/functional/test_root.py | 146 +++++
.../forgefiles/tests/model}/__init__.py | 7 +-
ForgeFiles/forgefiles/tests/model/test_files.py | 56 ++
.../forgefiles/tests/test_files_roles.py | 11 +-
{ForgeBlog => ForgeFiles}/setup.cfg | 2 +-
.../config/environment.py => ForgeFiles/setup.py | 23 +-
29 files changed, 2001 insertions(+), 125 deletions(-)
copy {ForgeWiki/forgewiki/widgets => ForgeFiles/forgefiles}/__init__.py (100%)
mode change 100644 => 100755
create mode 100755 ForgeFiles/forgefiles/files_main.py
copy {Allura/allura/scripts => ForgeFiles/forgefiles/model}/__init__.py (95%)
mode change 100644 => 100755
create mode 100755 ForgeFiles/forgefiles/model/files.py
copy ForgeActivity/forgeactivity/nf/activity/css/activity.css =>
ForgeFiles/forgefiles/nf/files/css/files.css (50%)
create mode 100644 ForgeFiles/forgefiles/nf/files/js/create_folder.js
copy Allura/allura/lib/widgets/resources/css/search.css =>
ForgeFiles/forgefiles/nf/files/js/delete.js (70%)
create mode 100644 ForgeFiles/forgefiles/nf/files/js/edit.js
create mode 100644 ForgeFiles/forgefiles/nf/files/js/files.js
copy ForgeWiki/forgewiki/nf/wiki/js/browse.js =>
ForgeFiles/forgefiles/nf/files/js/publish_folder.js (50%)
copy Allura/allura/lib/widgets/resources/css/search.css =>
ForgeFiles/forgefiles/nf/files/js/upload_files.js (64%)
create mode 100644 ForgeFiles/forgefiles/templates/create_folder.html
create mode 100644 ForgeFiles/forgefiles/templates/delete.html
create mode 100644 ForgeFiles/forgefiles/templates/edit.html
create mode 100755 ForgeFiles/forgefiles/templates/files.html
copy Allura/allura/templates/mail/monitor_email_footer.txt =>
ForgeFiles/forgefiles/templates/mail.html (68%)
create mode 100644 ForgeFiles/forgefiles/templates/publish_folder.html
create mode 100644 ForgeFiles/forgefiles/templates/upload_file.html
copy {Allura/allura/tests/templates/jinja_master =>
ForgeFiles/forgefiles/tests}/__init__.py (100%)
copy {Allura/allura/tests/templates/jinja_master =>
ForgeFiles/forgefiles/tests/functional}/__init__.py (100%)
create mode 100644 ForgeFiles/forgefiles/tests/functional/test_root.py
copy {ForgeBlog/forgeblog/tests/unit =>
ForgeFiles/forgefiles/tests/model}/__init__.py (93%)
create mode 100644 ForgeFiles/forgefiles/tests/model/test_files.py
copy ForgeFeedback/forgefeedback/tests/test_feedback_roles.py =>
ForgeFiles/forgefiles/tests/test_files_roles.py (89%)
copy {ForgeBlog => ForgeFiles}/setup.cfg (81%)
copy Allura/allura/config/environment.py => ForgeFiles/setup.py (73%)
mode change 100644 => 100755