##// END OF EJS Templates
feat(configs): deprecared old hooks protocol and ssh wrapper....
feat(configs): deprecared old hooks protocol and ssh wrapper. New defaults are now set on v2 keys, so previous installation are automatically set to new keys. Fallback mode is still available.

File last commit:

r5099:5122f321 default
r5496:cab50adf default
Show More
__init__.py
155 lines | 5.9 KiB | text/x-python | PythonLexer
copyrights: updated for 2023
r5088 # Copyright (C) 2016-2023 RhodeCode GmbH
user-groups: rewrote the app to pyramid...
r2068 #
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License, version 3
# (only), as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# This program is dual-licensed. If you wish to learn more about the
# RhodeCode Enterprise Edition, including its added features, Support services,
# and proprietary license terms, please see https://rhodecode.com/licenses/
apps: switch import of ADMIN_PREFIX from routing into base app....
r2309 from rhodecode.apps._base import ADMIN_PREFIX
user-groups: rewrote the app to pyramid...
r2068
def admin_routes(config):
"""
User groups /_admin prefixed routes
"""
application: not use config.scan(), and replace all @add_view decorator into a explicit add_view call for faster app start.
r4610 from rhodecode.apps.user_group.views import UserGroupsView
user-groups: rewrote the app to pyramid...
r2068
config.add_route(
name='user_group_members_data',
routing: fixed depracated patterns for routes matching using /d
r5099 pattern=r'/user_groups/{user_group_id:\d+}/members',
user-groups: rewrote the app to pyramid...
r2068 user_group_route=True)
application: not use config.scan(), and replace all @add_view decorator into a explicit add_view call for faster app start.
r4610 config.add_view(
UserGroupsView,
attr='user_group_members',
route_name='user_group_members_data', request_method='GET',
renderer='json_ext', xhr=True)
user-groups: rewrote the app to pyramid...
r2068
# user groups perms
config.add_route(
name='edit_user_group_perms_summary',
routing: fixed depracated patterns for routes matching using /d
r5099 pattern=r'/user_groups/{user_group_id:\d+}/edit/permissions_summary',
user-groups: rewrote the app to pyramid...
r2068 user_group_route=True)
application: not use config.scan(), and replace all @add_view decorator into a explicit add_view call for faster app start.
r4610 config.add_view(
UserGroupsView,
attr='user_group_perms_summary',
route_name='edit_user_group_perms_summary', request_method='GET',
renderer='rhodecode:templates/admin/user_groups/user_group_edit.mako')
user-groups: rewrote the app to pyramid...
r2068 config.add_route(
name='edit_user_group_perms_summary_json',
routing: fixed depracated patterns for routes matching using /d
r5099 pattern=r'/user_groups/{user_group_id:\d+}/edit/permissions_summary/json',
user-groups: rewrote the app to pyramid...
r2068 user_group_route=True)
application: not use config.scan(), and replace all @add_view decorator into a explicit add_view call for faster app start.
r4610 config.add_view(
UserGroupsView,
attr='user_group_perms_summary_json',
route_name='edit_user_group_perms_summary_json', request_method='GET',
renderer='json_ext')
user-groups: rewrote the app to pyramid...
r2068
# user groups edit
config.add_route(
name='edit_user_group',
routing: fixed depracated patterns for routes matching using /d
r5099 pattern=r'/user_groups/{user_group_id:\d+}/edit',
user-groups: rewrote the app to pyramid...
r2068 user_group_route=True)
application: not use config.scan(), and replace all @add_view decorator into a explicit add_view call for faster app start.
r4610 config.add_view(
UserGroupsView,
attr='user_group_edit',
route_name='edit_user_group', request_method='GET',
renderer='rhodecode:templates/admin/user_groups/user_group_edit.mako')
user-groups: rewrote the app to pyramid...
r2068
# user groups update
config.add_route(
name='user_groups_update',
routing: fixed depracated patterns for routes matching using /d
r5099 pattern=r'/user_groups/{user_group_id:\d+}/update',
user-groups: rewrote the app to pyramid...
r2068 user_group_route=True)
application: not use config.scan(), and replace all @add_view decorator into a explicit add_view call for faster app start.
r4610 config.add_view(
UserGroupsView,
attr='user_group_update',
route_name='user_groups_update', request_method='POST',
renderer='rhodecode:templates/admin/user_groups/user_group_edit.mako')
user-groups: rewrote the app to pyramid...
r2068
config.add_route(
name='edit_user_group_global_perms',
routing: fixed depracated patterns for routes matching using /d
r5099 pattern=r'/user_groups/{user_group_id:\d+}/edit/global_permissions',
user-groups: rewrote the app to pyramid...
r2068 user_group_route=True)
application: not use config.scan(), and replace all @add_view decorator into a explicit add_view call for faster app start.
r4610 config.add_view(
UserGroupsView,
attr='user_group_global_perms_edit',
route_name='edit_user_group_global_perms', request_method='GET',
renderer='rhodecode:templates/admin/user_groups/user_group_edit.mako')
user-groups: rewrote the app to pyramid...
r2068
config.add_route(
name='edit_user_group_global_perms_update',
routing: fixed depracated patterns for routes matching using /d
r5099 pattern=r'/user_groups/{user_group_id:\d+}/edit/global_permissions/update',
user-groups: rewrote the app to pyramid...
r2068 user_group_route=True)
application: not use config.scan(), and replace all @add_view decorator into a explicit add_view call for faster app start.
r4610 config.add_view(
UserGroupsView,
attr='user_group_global_perms_update',
route_name='edit_user_group_global_perms_update', request_method='POST',
renderer='rhodecode:templates/admin/user_groups/user_group_edit.mako')
user-groups: rewrote the app to pyramid...
r2068
config.add_route(
name='edit_user_group_perms',
routing: fixed depracated patterns for routes matching using /d
r5099 pattern=r'/user_groups/{user_group_id:\d+}/edit/permissions',
user-groups: rewrote the app to pyramid...
r2068 user_group_route=True)
application: not use config.scan(), and replace all @add_view decorator into a explicit add_view call for faster app start.
r4610 config.add_view(
UserGroupsView,
attr='user_group_edit_perms',
route_name='edit_user_group_perms', request_method='GET',
renderer='rhodecode:templates/admin/user_groups/user_group_edit.mako')
user-groups: rewrote the app to pyramid...
r2068
config.add_route(
name='edit_user_group_perms_update',
routing: fixed depracated patterns for routes matching using /d
r5099 pattern=r'/user_groups/{user_group_id:\d+}/edit/permissions/update',
user-groups: rewrote the app to pyramid...
r2068 user_group_route=True)
application: not use config.scan(), and replace all @add_view decorator into a explicit add_view call for faster app start.
r4610 config.add_view(
UserGroupsView,
attr='user_group_update_perms',
route_name='edit_user_group_perms_update', request_method='POST',
renderer='rhodecode:templates/admin/user_groups/user_group_edit.mako')
user-groups: rewrote the app to pyramid...
r2068
config.add_route(
name='edit_user_group_advanced',
routing: fixed depracated patterns for routes matching using /d
r5099 pattern=r'/user_groups/{user_group_id:\d+}/edit/advanced',
user-groups: rewrote the app to pyramid...
r2068 user_group_route=True)
application: not use config.scan(), and replace all @add_view decorator into a explicit add_view call for faster app start.
r4610 config.add_view(
UserGroupsView,
attr='user_group_edit_advanced',
route_name='edit_user_group_advanced', request_method='GET',
renderer='rhodecode:templates/admin/user_groups/user_group_edit.mako')
user-groups: rewrote the app to pyramid...
r2068
config.add_route(
name='edit_user_group_advanced_sync',
routing: fixed depracated patterns for routes matching using /d
r5099 pattern=r'/user_groups/{user_group_id:\d+}/edit/advanced/sync',
user-groups: rewrote the app to pyramid...
r2068 user_group_route=True)
application: not use config.scan(), and replace all @add_view decorator into a explicit add_view call for faster app start.
r4610 config.add_view(
UserGroupsView,
attr='user_group_edit_advanced_set_synchronization',
route_name='edit_user_group_advanced_sync', request_method='POST',
renderer='rhodecode:templates/admin/user_groups/user_group_edit.mako')
user-groups: rewrote the app to pyramid...
r2068
# user groups delete
config.add_route(
name='user_groups_delete',
routing: fixed depracated patterns for routes matching using /d
r5099 pattern=r'/user_groups/{user_group_id:\d+}/delete',
user-groups: rewrote the app to pyramid...
r2068 user_group_route=True)
application: not use config.scan(), and replace all @add_view decorator into a explicit add_view call for faster app start.
r4610 config.add_view(
UserGroupsView,
attr='user_group_delete',
route_name='user_groups_delete', request_method='POST',
renderer='rhodecode:templates/admin/user_groups/user_group_edit.mako')
user-groups: rewrote the app to pyramid...
r2068
def includeme(config):
# main admin routes
config.include(admin_routes, route_prefix=ADMIN_PREFIX)