2023-10-18 22:59:46 +00:00
< div {{ if .ReadmeInList }} id = "readme" {{ end }} class = " {{ TabSizeClass .Editorconfig .FileName }} non-diff-file-content" >
2022-09-11 22:16:56 +00:00
{{- if .FileError }}
2023-04-06 20:01:20 +00:00
< div class = "ui error message" >
2024-03-04 03:33:20 +00:00
< div class = "text left tw-whitespace-pre" > {{ .FileError }} </ div >
2023-04-06 20:01:20 +00:00
< / div >
{{ end }}
{{- if .FileWarning }}
2022-09-11 22:16:56 +00:00
< div class = "ui warning message" >
2024-03-04 03:33:20 +00:00
< div class = "text left tw-whitespace-pre" > {{ .FileWarning }} </ div >
2022-09-11 22:16:56 +00:00
< / div >
{{ end }}
2024-01-15 16:42:15 +00:00
{{ if not .ReadmeInList }}
2024-04-18 08:34:23 +00:00
< div id = "repo-file-commit-box" class = "ui segment list-header tw-mb-4 tw-flex tw-justify-between" >
2024-04-10 06:13:22 +00:00
< div class = "latest-commit" >
2024-01-15 16:42:15 +00:00
{{ template "repo/latest_commit" . }}
< / div >
{{ if .LatestCommit }}
{{ if .LatestCommit.Committer }}
2024-04-10 06:13:22 +00:00
< div class = "text grey age" >
2024-01-15 16:42:15 +00:00
{{ TimeSince .LatestCommit.Committer.When ctx .Locale }}
< / div >
{{ end }}
{{ end }}
< / div >
{{ end }}
2024-03-22 19:51:29 +00:00
< h4 class = "file-header ui top attached header tw-flex tw-items-center tw-justify-between tw-flex-wrap" >
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 16:42:49 +00:00
< div class = "file-header-left tw-flex tw-items-center tw-py-2 tw-pr-4" >
2019-10-07 04:59:17 +00:00
{{ if .ReadmeInList }}
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 16:42:49 +00:00
{{ svg "octicon-book" 16 "tw-mr-2" }}
2023-10-18 22:59:46 +00:00
< strong >< a class = "default-link muted" href = "#readme" > {{ .FileName }} </ a ></ strong >
2019-10-07 04:59:17 +00:00
{{ else }}
2022-11-19 11:08:06 +00:00
{{ template "repo/file_info" . }}
2019-10-07 04:59:17 +00:00
{{ end }}
< / div >
2024-03-22 19:51:29 +00:00
< div class = "file-header-right file-actions tw-flex tw-items-center tw-flex-wrap" >
2021-01-13 03:45:19 +00:00
{{ if .HasSourceRenderedToggle }}
2023-09-04 10:22:46 +00:00
< div class = "ui compact icon buttons" >
2024-03-20 05:56:42 +00:00
< a href = "?display=source" class = "ui mini basic button {{ if .IsDisplayingSource }} active {{ end }} " data-tooltip-content = " {{ ctx .Locale.Tr "repo.file_view_source" }} " > {{ svg "octicon-code" 15 }} </ a >
2023-09-25 08:56:50 +00:00
< a href = " {{ $.Link }} " class = "ui mini basic button {{ if .IsDisplayingRendered }} active {{ end }} " data-tooltip-content = " {{ ctx .Locale.Tr "repo.file_view_rendered" }} " > {{ svg "octicon-file" 15 }} </ a >
2021-01-13 03:45:19 +00:00
< / div >
{{ end }}
2022-01-07 01:18:52 +00:00
{{ if not .ReadmeInList }}
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 16:42:49 +00:00
< div class = "ui buttons tw-mr-1" >
2024-02-29 19:51:02 +00:00
{{ if .SymlinkURL }}
< a class = "ui mini basic button" href = " {{ $.SymlinkURL }} " data-kind = "follow-symlink" > {{ ctx .Locale.Tr "repo.file_follow" }} </ a >
{{ end }}
2023-09-25 08:56:50 +00:00
< a class = "ui mini basic button" href = " {{ $.RawFileLink }} " > {{ ctx .Locale.Tr "repo.file_raw" }} </ a >
2022-01-07 01:18:52 +00:00
{{ if not .IsViewCommit }}
2023-09-25 08:56:50 +00:00
< a class = "ui mini basic button" href = " {{ .RepoLink }} /src/commit/ {{ PathEscape .CommitID }} / {{ PathEscapeSegments .TreePath }} " > {{ ctx .Locale.Tr "repo.file_permalink" }} </ a >
2022-01-07 01:18:52 +00:00
{{ end }}
{{ if .IsRepresentableAsText }}
2023-09-25 08:56:50 +00:00
< a class = "ui mini basic button" href = " {{ .RepoLink }} /blame/ {{ .BranchNameSubURL }} / {{ PathEscapeSegments .TreePath }} " > {{ ctx .Locale.Tr "repo.blame" }} </ a >
2022-01-07 01:18:52 +00:00
{{ end }}
2023-09-25 08:56:50 +00:00
< a class = "ui mini basic button" href = " {{ .RepoLink }} /commits/ {{ .BranchNameSubURL }} / {{ PathEscapeSegments .TreePath }} " > {{ ctx .Locale.Tr "repo.file_history" }} </ a >
2022-01-07 01:18:52 +00:00
{{ if .EscapeStatus.Escaped }}
2024-03-24 18:23:38 +00:00
< button class = "ui mini basic button unescape-button tw-hidden" > {{ ctx .Locale.Tr "repo.unescape_control_characters" }} </ button >
2023-09-25 08:56:50 +00:00
< button class = "ui mini basic button escape-button" > {{ ctx .Locale.Tr "repo.escape_control_characters" }} </ button >
2022-01-07 01:18:52 +00:00
{{ end }}
< / div >
2023-09-25 08:56:50 +00:00
< a download href = " {{ $.RawFileLink }} " >< span class = "btn-octicon" data-tooltip-content = " {{ ctx .Locale.Tr "repo.download_file" }} " > {{ svg "octicon-download" }} </ span ></ a >
2024-07-08 17:32:59 +00:00
< a href = "#" id = "copy-content" class = "btn-octicon {{ if not .CanCopyContent }} disabled {{ end }} " {{ if or .IsImageFile ( and .HasSourceRenderedToggle ( not .IsDisplayingSource )) }} data-link = " {{ $.RawFileLink }} " {{ end }} data-tooltip-content = " {{ if .CanCopyContent }}{{ ctx .Locale.Tr "copy_content" }}{{ else }}{{ ctx .Locale.Tr "copy_type_unsupported" }}{{ end }} " > {{ svg "octicon-copy" 14 }} </ a >
2023-04-25 14:08:29 +00:00
{{ if .EnableFeed }}
2024-01-06 09:06:17 +00:00
{{ if .IsViewBranch }}
< a class = "btn-octicon" href = " {{ $.FeedURL }} /rss/ {{ $.BranchNameSubURL }} / {{ PathEscapeSegments .TreePath }} " data-tooltip-content = " {{ ctx .Locale.Tr "rss_feed" }} " >
{{ svg "octicon-rss" 14 }}
< / a >
{{ else }}
< span class = "btn-octicon disabled" data-tooltip-content = " {{ ctx .Locale.Tr "repo.rss.must_be_on_branch" }} " >
{{ svg "octicon-rss" 14 }}
< / span >
{{ end }}
2023-04-25 14:08:29 +00:00
{{ end }}
2022-01-07 01:18:52 +00:00
{{ if .Repository.CanEnableEditor }}
{{ if .CanEditFile }}
2023-03-24 10:35:38 +00:00
< a href = " {{ .RepoLink }} /_edit/ {{ PathEscapeSegments .BranchName }} / {{ PathEscapeSegments .TreePath }} " >< span class = "btn-octicon" data-tooltip-content = " {{ .EditFileTooltip }} " > {{ svg "octicon-pencil" }} </ span ></ a >
2022-01-07 01:18:52 +00:00
{{ else }}
2023-03-24 10:35:38 +00:00
< span class = "btn-octicon disabled" data-tooltip-content = " {{ .EditFileTooltip }} " > {{ svg "octicon-pencil" }} </ span >
2022-01-07 01:18:52 +00:00
{{ end }}
{{ if .CanDeleteFile }}
2023-03-24 10:35:38 +00:00
< a href = " {{ .RepoLink }} /_delete/ {{ PathEscapeSegments .BranchName }} / {{ PathEscapeSegments .TreePath }} " >< span class = "btn-octicon btn-octicon-danger" data-tooltip-content = " {{ .DeleteFileTooltip }} " > {{ svg "octicon-trash" }} </ span ></ a >
2022-01-07 01:18:52 +00:00
{{ else }}
2023-03-24 10:35:38 +00:00
< span class = "btn-octicon disabled" data-tooltip-content = " {{ .DeleteFileTooltip }} " > {{ svg "octicon-trash" }} </ span >
2022-01-07 01:18:52 +00:00
{{ end }}
2020-11-01 20:04:26 +00:00
{{ end }}
2022-01-07 01:18:52 +00:00
{{ else if .EscapeStatus.Escaped }}
2024-03-24 18:23:38 +00:00
< button class = "ui mini basic button unescape-button tw-mr-1 tw-hidden" > {{ ctx .Locale.Tr "repo.unescape_control_characters" }} </ button >
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 16:42:49 +00:00
< button class = "ui mini basic button escape-button tw-mr-1" > {{ ctx .Locale.Tr "repo.escape_control_characters" }} </ button >
2020-11-01 20:04:26 +00:00
{{ end }}
2023-11-20 11:47:55 +00:00
{{ if and .ReadmeInList .CanEditReadmeFile }}
< a class = "btn-octicon" data-tooltip-content = " {{ ctx .Locale.Tr "repo.editor.edit_this_file" }} " href = " {{ .RepoLink }} /_edit/ {{ PathEscapeSegments .BranchName }} / {{ PathEscapeSegments .TreePath }} / {{ PathEscapeSegments .FileName }} " > {{ svg "octicon-pencil" }} </ a >
{{ end }}
2017-12-31 00:47:52 +00:00
< / div >
2015-12-07 22:30:52 +00:00
< / h4 >
2024-04-18 08:34:23 +00:00
< div class = "ui bottom attached table unstackable segment" >
2022-12-03 15:47:00 +00:00
{{ if not ( or .IsMarkup .IsRenderedHTML ) }}
{{ template "repo/unicode_escape_prompt" dict "EscapeStatus" .EscapeStatus "root" $ }}
{{ end }}
2022-12-17 20:22:25 +00:00
< div class = "file-view {{ if .IsMarkup }} markup {{ .MarkupType }}{{ else if .IsPlainText }} plain-text {{ else if .IsTextSource }} code-view {{ end }} " >
2017-10-16 23:17:22 +00:00
{{ if .IsMarkup }}
2023-12-17 14:38:54 +00:00
{{ if .FileContent }}{{ .FileContent }}{{ end }}
2022-12-17 20:22:25 +00:00
{{ else if .IsPlainText }}
2023-12-17 14:38:54 +00:00
< pre > {{ if .FileContent }}{{ .FileContent }}{{ end }} </ pre >
2021-01-13 03:45:19 +00:00
{{ else if not .IsTextSource }}
2023-05-29 12:10:00 +00:00
< div class = "view-raw" >
2015-12-07 22:30:52 +00:00
{{ if .IsImageFile }}
2021-11-16 18:18:25 +00:00
< img src = " {{ $.RawFileLink }} " >
2016-12-20 08:09:11 +00:00
{{ else if .IsVideoFile }}
2021-11-16 18:18:25 +00:00
< video controls src = " {{ $.RawFileLink }} " >
2023-09-25 08:56:50 +00:00
< strong > {{ ctx .Locale.Tr "repo.video_not_supported_in_browser" }} </ strong >
2016-12-20 08:09:11 +00:00
< / video >
2018-10-30 02:17:26 +00:00
{{ else if .IsAudioFile }}
2021-11-16 18:18:25 +00:00
< audio controls src = " {{ $.RawFileLink }} " >
2023-09-25 08:56:50 +00:00
< strong > {{ ctx .Locale.Tr "repo.audio_not_supported_in_browser" }} </ strong >
2018-10-30 02:17:26 +00:00
< / audio >
2016-04-27 01:48:44 +00:00
{{ else if .IsPDFFile }}
2023-09-25 08:56:50 +00:00
< div class = "pdf-content is-loading" data-src = " {{ $.RawFileLink }} " data-fallback-button-text = " {{ ctx .Locale.Tr "repo.diff.view_file" }} " ></ div >
2015-12-07 22:30:52 +00:00
{{ else }}
2024-02-01 21:28:50 +00:00
< a href = " {{ $.RawFileLink }} " rel = "nofollow" > {{ ctx .Locale.Tr "repo.file_view_raw" }} </ a >
2015-12-07 22:30:52 +00:00
{{ end }}
< / div >
{{ else if .FileSize }}
2020-06-30 21:34:03 +00:00
{{ if .IsFileTooLarge }}
2015-12-07 22:30:52 +00:00
< table >
< tbody >
< tr >
2023-09-25 08:56:50 +00:00
< td >< strong > {{ ctx .Locale.Tr "repo.file_too_large" }} </ strong ></ td >
2015-12-07 22:30:52 +00:00
< / tr >
< / tbody >
< / table >
2020-06-30 21:34:03 +00:00
{{ else }}
< table >
< tbody >
2021-08-23 21:23:39 +00:00
{{ range $idx , $code := .FileContent }}
Use a general Eval function for expressions in templates. (#23927)
One of the proposals in #23328
This PR introduces a simple expression calculator
(templates/eval/eval.go), it can do basic expression calculations.
Many untested template helper functions like `Mul` `Add` can be replaced
by this new approach.
Then these `Add` / `Mul` / `percentage` / `Subtract` / `DiffStatsWidth`
could all use this `Eval`.
And it provides enhancements for Golang templates, and improves
readability.
Some examples:
----
* Before: `{{Add (Mul $glyph.Row 12) 12}}`
* After: `{{Eval $glyph.Row "*" 12 "+" 12}}`
----
* Before: `{{if lt (Add $i 1) (len $.Topics)}}`
* After: `{{if Eval $i "+" 1 "<" (len $.Topics)}}`
## FAQ
### Why not use an existing expression package?
We need a highly customized expression engine:
* do the calculation on the fly, without pre-compiling
* deal with int/int64/float64 types, to make the result could be used in
Golang template.
* make the syntax could be used in the Golang template directly
* do not introduce too much complex or strange syntax, we just need a
simple calculator.
* it needs to strictly follow Golang template's behavior, for example,
Golang template treats all non-zero values as truth, but many 3rd
packages don't do so.
### What's the benefit?
* Developers don't need to add more `Add`/`Mul`/`Sub`-like functions,
they were getting more and more.
Now, only one `Eval` is enough for all cases.
* The new code reads better than old `{{Add (Mul $glyph.Row 12) 12}}`,
the old one isn't familiar to most procedural programming developers
(eg, the Golang expression syntax).
* The `Eval` is fully covered by tests, many old `Add`/`Mul`-like
functions were never tested.
### The performance?
It doesn't use `reflect`, it doesn't need to parse or compile when used
in Golang template, the performance is as fast as native Go template.
### Is it too complex? Could it be unstable?
The expression calculator program is a common homework for computer
science students, and it's widely used as a teaching and practicing
purpose for developers. The algorithm is pretty well-known.
The behavior can be clearly defined, it is stable.
2023-04-07 13:25:49 +00:00
{{ $line := Eval $idx "+" 1 }}
2020-06-30 21:34:03 +00:00
< tr >
2021-11-29 22:01:56 +00:00
< td id = "L {{ $line }} " class = "lines-num" >< span id = "L {{ $line }} " data-line-number = " {{ $line }} " ></ span ></ td >
2022-01-07 01:18:52 +00:00
{{ if $.EscapeStatus.Escaped }}
2023-09-25 08:56:50 +00:00
< td class = "lines-escape" > {{ if ( index $.LineEscapeStatus $idx ) .Escaped }} < button class = "toggle-escape-button btn interact-bg" title = " {{ if ( index $.LineEscapeStatus $idx ) .HasInvisible }}{{ ctx .Locale.Tr "repo.invisible_runes_line" }} {{ end }}{{ if ( index $.LineEscapeStatus $idx ) .HasAmbiguous }}{{ ctx .Locale.Tr "repo.ambiguous_runes_line" }}{{ end }} " ></ button > {{ end }} </ td >
2022-01-07 01:18:52 +00:00
{{ end }}
2023-12-17 14:38:54 +00:00
< td rel = "L {{ $line }} " class = "lines-code chroma" >< code class = "code-inner" > {{ $code }} </ code ></ td >
2020-06-30 21:34:03 +00:00
< / tr >
{{ end }}
< / tbody >
< / table >
2024-03-15 02:05:31 +00:00
< div class = "code-line-menu tippy-target" >
2022-08-09 12:37:34 +00:00
{{ if $.Permission.CanRead $.UnitTypeIssues }}
2024-03-15 02:05:31 +00:00
< a class = "item ref-in-new-issue" role = "menuitem" data-url-issue-new = " {{ .RepoLink }} /issues/new" data-url-param-body-link = " {{ .Repository.Link }} /src/commit/ {{ PathEscape .CommitID }} / {{ PathEscapeSegments .TreePath }}{{ if $.HasSourceRenderedToggle }} ?display=source {{ end }} " rel = "nofollow noindex" > {{ ctx .Locale.Tr "repo.issues.context.reference_issue" }} </ a >
2022-08-09 12:37:34 +00:00
{{ end }}
2024-03-15 02:05:31 +00:00
< a class = "item view_git_blame" role = "menuitem" href = " {{ .Repository.Link }} /blame/commit/ {{ PathEscape .CommitID }} / {{ PathEscapeSegments .TreePath }} " > {{ ctx .Locale.Tr "repo.view_git_blame" }} </ a >
< a class = "item copy-line-permalink" role = "menuitem" data-url = " {{ .Repository.Link }} /src/commit/ {{ PathEscape .CommitID }} / {{ PathEscapeSegments .TreePath }}{{ if $.HasSourceRenderedToggle }} ?display=source {{ end }} " > {{ ctx .Locale.Tr "repo.file_copy_permalink" }} </ a >
2021-10-02 07:46:43 +00:00
< / div >
2020-06-30 21:34:03 +00:00
{{ end }}
2015-12-07 22:30:52 +00:00
{{ end }}
< / div >
< / div >
< / div >