Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
klaus
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
jonashaag
klaus
Commits
a4b72b44
Commit
a4b72b44
authored
8 years ago
by
Jonas Haag
Browse files
Options
Downloads
Patches
Plain Diff
Refactoring
parent
55517419
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
klaus/templates/view_commit.html
+1
-1
1 addition, 1 deletion
klaus/templates/view_commit.html
klaus/views.py
+19
-14
19 additions, 14 deletions
klaus/views.py
with
20 additions
and
15 deletions
klaus/templates/view_commit.html
+
1
−
1
View file @
a4b72b44
{% extends 'base.html' %}
{% extends 'base.html' %}
{% block extra_header %}{% endblock %} {#
no
branch selector
on commits
#}
{% block extra_header %}{% endblock %} {#
hide
branch selector #}
{% block title %}
{% block title %}
Commit {{ rev }} - {{ repo.name }}
Commit {{ rev }} - {{ repo.name }}
...
...
This diff is collapsed.
Click to expand it.
klaus/views.py
+
19
−
14
View file @
a4b72b44
...
@@ -40,6 +40,24 @@ def robots_txt():
...
@@ -40,6 +40,24 @@ def robots_txt():
return
current_app
.
send_static_file
(
'
robots.txt
'
)
return
current_app
.
send_static_file
(
'
robots.txt
'
)
def
_get_repo_and_rev
(
repo
,
rev
=
None
):
try
:
repo
=
current_app
.
repos
[
repo
]
except
KeyError
:
raise
NotFound
(
"
No such repository %r
"
%
repo
)
if
rev
is
None
:
rev
=
repo
.
get_default_branch
()
if
rev
is
None
:
raise
NotFound
(
"
Empty repository
"
)
try
:
commit
=
repo
.
get_commit
(
rev
)
except
KeyError
:
raise
NotFound
(
"
No such commit %r
"
%
rev
)
return
repo
,
rev
,
commit
class
BaseRepoView
(
View
):
class
BaseRepoView
(
View
):
"""
Base for all views with a repo context.
"""
Base for all views with a repo context.
...
@@ -64,20 +82,7 @@ class BaseRepoView(View):
...
@@ -64,20 +82,7 @@ class BaseRepoView(View):
return
render_template
(
self
.
template_name
,
**
self
.
context
)
return
render_template
(
self
.
template_name
,
**
self
.
context
)
def
make_template_context
(
self
,
repo
,
rev
,
path
):
def
make_template_context
(
self
,
repo
,
rev
,
path
):
try
:
repo
,
rev
,
commit
=
_get_repo_and_rev
(
repo
,
rev
)
repo
=
current_app
.
repos
[
repo
]
except
KeyError
:
raise
NotFound
(
"
No such repository %r
"
%
repo
)
if
rev
is
None
:
rev
=
repo
.
get_default_branch
()
if
rev
is
None
:
raise
NotFound
(
"
Empty repository
"
)
try
:
commit
=
repo
.
get_commit
(
rev
)
except
KeyError
:
raise
NotFound
(
"
No such commit %r
"
%
rev
)
try
:
try
:
blob_or_tree
=
repo
.
get_blob_or_tree
(
commit
,
path
)
blob_or_tree
=
repo
.
get_blob_or_tree
(
commit
,
path
)
except
KeyError
:
except
KeyError
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment