##// 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:

r5095:aa627a5f default
r5496:cab50adf default
Show More
__init__.py
118 lines | 3.9 KiB | text/x-python | PythonLexer
copyrights: updated for 2023
r5088 # Copyright (C) 2016-2023 RhodeCode GmbH
dan
gists: migrated gists controller to pyramid view.
r1891 #
# 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/
from rhodecode.apps._base import ADMIN_PREFIX
def admin_routes(config):
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.gist.views import GistView
dan
gists: migrated gists controller to pyramid view.
r1891 config.add_route(
name='gists_show', pattern='/gists')
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(
GistView,
attr='gist_show_all',
route_name='gists_show', request_method='GET',
renderer='rhodecode:templates/admin/gists/gist_index.mako')
dan
gists: migrated gists controller to pyramid view.
r1891 config.add_route(
name='gists_new', pattern='/gists/new')
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(
GistView,
attr='gist_new',
route_name='gists_new', request_method='GET',
renderer='rhodecode:templates/admin/gists/gist_new.mako')
dan
gists: migrated gists controller to pyramid view.
r1891 config.add_route(
name='gists_create', pattern='/gists/create')
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(
GistView,
attr='gist_create',
route_name='gists_create', request_method='POST',
renderer='rhodecode:templates/admin/gists/gist_new.mako')
dan
gists: migrated gists controller to pyramid view.
r1891
config.add_route(
name='gist_show', pattern='/gists/{gist_id}')
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(
GistView,
attr='gist_show',
route_name='gist_show', request_method='GET',
renderer='rhodecode:templates/admin/gists/gist_show.mako')
config.add_route(
name='gist_show_rev',
pattern='/gists/{gist_id}/rev/{revision}')
config.add_view(
GistView,
attr='gist_show',
route_name='gist_show_rev', request_method='GET',
renderer='rhodecode:templates/admin/gists/gist_show.mako')
config.add_route(
name='gist_show_formatted',
pattern='/gists/{gist_id}/rev/{revision}/{format}')
config.add_view(
GistView,
attr='gist_show',
route_name='gist_show_formatted', request_method='GET',
renderer=None)
config.add_route(
name='gist_show_formatted_path',
pattern='/gists/{gist_id}/rev/{revision}/{format}/{f_path:.*}')
config.add_view(
GistView,
attr='gist_show',
route_name='gist_show_formatted_path', request_method='GET',
renderer=None)
dan
gists: migrated gists controller to pyramid view.
r1891
config.add_route(
name='gist_delete', pattern='/gists/{gist_id}/delete')
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(
GistView,
attr='gist_delete',
route_name='gist_delete', request_method='POST')
dan
gists: migrated gists controller to pyramid view.
r1891
config.add_route(
name='gist_edit', pattern='/gists/{gist_id}/edit')
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(
GistView,
attr='gist_edit',
route_name='gist_edit', request_method='GET',
renderer='rhodecode:templates/admin/gists/gist_edit.mako')
config.add_route(
name='gist_update', pattern='/gists/{gist_id}/update')
config.add_view(
GistView,
attr='gist_update',
route_name='gist_update', request_method='POST',
renderer='rhodecode:templates/admin/gists/gist_edit.mako')
dan
gists: migrated gists controller to pyramid view.
r1891
config.add_route(
name='gist_edit_check_revision',
pattern='/gists/{gist_id}/edit/check_revision')
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(
GistView,
attr='gist_edit_check_revision',
route_name='gist_edit_check_revision', request_method='GET',
renderer='json_ext')
dan
gists: migrated gists controller to pyramid view.
r1891
def includeme(config):
config.include(admin_routes, route_prefix=ADMIN_PREFIX)