2015-11-14 09:34:01 +00:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 22:56:10 +00:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository file list {{if .IsBlame}}blame{{end}}">
|
2015-12-07 22:30:52 +00:00
|
|
|
{{template "repo/header" .}}
|
2020-06-25 18:58:12 +00:00
|
|
|
<div class="ui container {{if .IsBlame}}fluid padded{{end}}">
|
2016-08-25 04:35:03 +00:00
|
|
|
{{template "base/alert" .}}
|
2023-07-08 03:19:00 +00:00
|
|
|
{{template "repo/code/recently_pushed_new_branches" .}}
|
2022-10-13 08:31:10 +00:00
|
|
|
{{if and (not .HideRepoInfo) (not .IsBlame)}}
|
2024-06-04 13:57:11 +00:00
|
|
|
<div class="repo-description tw-break-anywhere">
|
2024-04-21 23:47:31 +00:00
|
|
|
{{- $description := .Repository.DescriptionHTML ctx -}}
|
|
|
|
{{if $description}}{{$description | RenderCodeBlock}}{{end}}
|
|
|
|
{{if .Repository.Website}}<a href="{{.Repository.Website}}">{{.Repository.Website}}</a>{{end}}
|
2017-10-27 06:10:54 +00:00
|
|
|
</div>
|
2024-03-31 15:39:50 +00:00
|
|
|
<div class="tw-flex tw-items-center tw-flex-wrap tw-gap-2 tw-my-2" id="repo-topics">
|
|
|
|
{{/* it should match the code in issue-home.js */}}
|
|
|
|
{{range .Topics}}<a class="repo-topic ui large label" href="{{AppSubUrl}}/explore/repos?q={{.Name}}&topic=1">{{.Name}}</a>{{end}}
|
2024-03-23 21:22:15 +00:00
|
|
|
{{if and .Permission.IsAdmin (not .Repository.IsArchived)}}<button id="manage_topic" class="btn interact-fg tw-text-12">{{ctx.Locale.Tr "repo.topic.manage_topics"}}</button>{{end}}
|
2018-04-11 02:51:44 +00:00
|
|
|
</div>
|
2022-10-13 08:31:10 +00:00
|
|
|
{{end}}
|
2019-01-24 10:22:27 +00:00
|
|
|
{{if and .Permission.IsAdmin (not .Repository.IsArchived)}}
|
2024-03-31 15:39:50 +00:00
|
|
|
<div class="ui form tw-hidden tw-flex tw-gap-2 tw-my-2" id="topic_edit">
|
|
|
|
<div class="ui fluid multiple search selection dropdown tw-flex-wrap tw-flex-1">
|
|
|
|
<input type="hidden" name="topics" value="{{range $i, $v := .Topics}}{{.Name}}{{if Eval $i "+" 1 "<" (len $.Topics)}},{{end}}{{end}}">
|
|
|
|
{{range .Topics}}
|
|
|
|
{{/* keep the same layout as Fomantic UI generated labels */}}
|
|
|
|
<a class="ui label transition visible tw-cursor-default tw-inline-block" data-value="{{.Name}}">{{.Name}}{{svg "octicon-x" 16 "delete icon"}}</a>
|
|
|
|
{{end}}
|
|
|
|
<div class="text"></div>
|
2018-04-11 02:51:44 +00:00
|
|
|
</div>
|
Fine tune more downdrop settings, use SVG for labels, improve Repo Topic Edit form (#23626)
Although it seems that some different purposes are mixed in this PR,
however, they are all related, and can be tested together, so I put them
together to save everyone's time.
Diff: `+79 −84`, everything becomes much better.
### Improve the dropdown settings.
Move all fomantic-init related code into our `fomantic.js`
Fine-tune some dropdown global settings, see the comments.
Also help to fix the first problem in #23625 , cc: @yp05327
The "language" menu has been simplified, and it works with small-height
window better.
### Use SVG instead of `<i class="delete icon">`
It's also done by `$.fn.dropdown.settings.templates.label` , cc:
@silverwind
### Remove incorrect `tabable` CSS class
It doesn't have CSS styles, and it was only in Vue. So it's totally
unnecessary, remove it by the way.
### Improve the Repo Topic Edit form
* Simplify the code
* Add a "Cancel" button
* Align elements
Before:
<details>
![image](https://user-images.githubusercontent.com/2114189/223325782-f09532de-0c38-4742-ba86-ed35cc9a858d.png)
</details>
After:
![image](https://user-images.githubusercontent.com/2114189/226796347-207feb0a-b3cd-4820-8a3e-01930bab1069.png)
2023-03-26 11:31:26 +00:00
|
|
|
<div>
|
2023-09-25 08:56:50 +00:00
|
|
|
<button class="ui basic button" id="cancel_topic_edit">{{ctx.Locale.Tr "cancel"}}</button>
|
|
|
|
<button class="ui primary button" id="save_topic" data-link="{{.RepoLink}}/topics">{{ctx.Locale.Tr "save"}}</button>
|
2018-04-11 02:51:44 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2019-01-23 18:58:38 +00:00
|
|
|
{{if .Repository.IsArchived}}
|
2024-03-04 03:33:20 +00:00
|
|
|
<div class="ui warning message tw-text-center">
|
2023-04-26 14:46:26 +00:00
|
|
|
{{if .Repository.ArchivedUnix.IsZero}}
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "repo.archive.title"}}
|
2023-04-26 14:46:26 +00:00
|
|
|
{{else}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.archive.title_date" (DateTime "long" .Repository.ArchivedUnix)}}
|
2023-04-26 14:46:26 +00:00
|
|
|
{{end}}
|
2019-01-23 18:58:38 +00:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2017-10-26 00:49:16 +00:00
|
|
|
{{template "repo/sub_menu" .}}
|
2024-04-10 06:13:22 +00:00
|
|
|
{{$n := len .TreeNames}}
|
|
|
|
{{$l := Eval $n "-" 1}}
|
|
|
|
{{$isHomepage := (eq $n 0)}}
|
2024-05-12 04:02:25 +00:00
|
|
|
<div class="repo-button-row" data-is-homepage="{{$isHomepage}}">
|
2024-05-02 19:10:49 +00:00
|
|
|
<div class="repo-button-row-left">
|
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}/**/*
```
2024-03-24 16:42:49 +00:00
|
|
|
{{template "repo/branch_dropdown" dict "root" . "ContainerClasses" "tw-mr-1"}}
|
2023-05-22 07:57:00 +00:00
|
|
|
{{if and .CanCompareOrPull .IsViewBranch (not .Repository.IsArchived)}}
|
2023-04-29 12:02:29 +00:00
|
|
|
{{$cmpBranch := ""}}
|
|
|
|
{{if ne .Repository.ID .BaseRepo.ID}}
|
|
|
|
{{$cmpBranch = printf "%s/%s:" (.Repository.OwnerName|PathEscape) (.Repository.Name|PathEscape)}}
|
|
|
|
{{end}}
|
2023-09-16 03:51:54 +00:00
|
|
|
{{$cmpBranch = print $cmpBranch (.BranchName|PathEscapeSegments)}}
|
2023-04-29 12:02:29 +00:00
|
|
|
{{$compareLink := printf "%s/compare/%s...%s" .BaseRepo.Link (.BaseRepo.DefaultBranch|PathEscapeSegments) $cmpBranch}}
|
|
|
|
<a id="new-pull-request" role="button" class="ui compact basic button" href="{{$compareLink}}"
|
2023-09-25 12:42:40 +00:00
|
|
|
data-tooltip-content="{{if .PullRequestCtx.Allowed}}{{ctx.Locale.Tr "repo.pulls.compare_changes"}}{{else}}{{ctx.Locale.Tr "action.compare_branch"}}{{end}}">
|
2023-04-26 02:53:44 +00:00
|
|
|
{{svg "octicon-git-pull-request"}}
|
2023-04-25 14:08:29 +00:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2023-05-22 07:57:00 +00:00
|
|
|
<!-- Show go to file and breadcrumbs if not on home page -->
|
2024-04-10 06:13:22 +00:00
|
|
|
{{if $isHomepage}}
|
2023-09-25 08:56:50 +00:00
|
|
|
<a href="{{.Repository.Link}}/find/{{.BranchNameSubURL}}" class="ui compact basic button">{{ctx.Locale.Tr "repo.find_file.go_to_file"}}</a>
|
2022-09-06 07:01:58 +00:00
|
|
|
{{end}}
|
2023-04-19 13:40:42 +00:00
|
|
|
|
2023-07-07 13:36:14 +00:00
|
|
|
{{if and .CanWriteCode .IsViewBranch (not .Repository.IsMirror) (not .Repository.IsArchived) (not .IsViewFile)}}
|
2024-05-02 19:10:49 +00:00
|
|
|
<button class="ui dropdown basic compact jump button"{{if not .Repository.CanEnableEditor}} disabled{{end}}>
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "repo.editor.add_file"}}
|
2023-06-15 15:12:08 +00:00
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
2022-09-06 07:01:58 +00:00
|
|
|
<div class="menu">
|
2023-04-19 13:40:42 +00:00
|
|
|
<a class="item" href="{{.RepoLink}}/_new/{{.BranchName | PathEscapeSegments}}/{{.TreePath | PathEscapeSegments}}">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "repo.editor.new_file"}}
|
2023-04-19 13:40:42 +00:00
|
|
|
</a>
|
|
|
|
{{if .RepositoryUploadEnabled}}
|
|
|
|
<a class="item" href="{{.RepoLink}}/_upload/{{.BranchName | PathEscapeSegments}}/{{.TreePath | PathEscapeSegments}}">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "repo.editor.upload_file"}}
|
2023-04-19 13:40:42 +00:00
|
|
|
</a>
|
2022-09-06 07:01:58 +00:00
|
|
|
{{end}}
|
2023-04-19 13:40:42 +00:00
|
|
|
<a class="item" href="{{.RepoLink}}/_diffpatch/{{.BranchName | PathEscapeSegments}}/{{.TreePath | PathEscapeSegments}}">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "repo.editor.patch"}}
|
2023-04-19 13:40:42 +00:00
|
|
|
</a>
|
2022-09-06 07:01:58 +00:00
|
|
|
</div>
|
|
|
|
</button>
|
|
|
|
{{end}}
|
2023-04-19 13:40:42 +00:00
|
|
|
|
2024-04-10 06:13:22 +00:00
|
|
|
{{if and $isHomepage (.Repository.IsTemplate)}}
|
2023-03-10 03:14:45 +00:00
|
|
|
<a role="button" class="ui primary compact button" href="{{AppSubUrl}}/repo/create?template_id={{.Repository.ID}}">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "repo.use_template"}}
|
2023-03-10 03:14:45 +00:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2024-04-26 11:21:04 +00:00
|
|
|
{{if $isHomepage}}
|
|
|
|
{{/* only show the "code search" on the repo home page, it only does global search,
|
|
|
|
so do not show it when viewing file or directory to avoid misleading users (it doesn't search in a directory) */}}
|
2024-05-02 19:10:49 +00:00
|
|
|
<form class="ignore-dirty tw-flex tw-flex-1" action="{{.RepoLink}}/search" method="get">
|
|
|
|
<div class="ui small action input tw-flex-1">
|
|
|
|
<input name="q" size="10" placeholder="{{ctx.Locale.Tr "search.code_kind"}}">
|
2024-04-26 11:21:04 +00:00
|
|
|
{{template "shared/search/button"}}
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{{else}}
|
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}/**/*
```
2024-03-24 16:42:49 +00:00
|
|
|
<span class="breadcrumb repo-path tw-ml-1">
|
2023-04-29 12:02:29 +00:00
|
|
|
<a class="section" href="{{.RepoLink}}/src/{{.BranchNameSubURL}}" title="{{.Repository.Name}}">{{StringUtils.EllipsisString .Repository.Name 30}}</a>
|
|
|
|
{{- range $i, $v := .TreeNames -}}
|
2023-08-16 00:08:23 +00:00
|
|
|
<span class="breadcrumb-divider">/</span>
|
2023-04-29 12:02:29 +00:00
|
|
|
{{- if eq $i $l -}}
|
2024-04-10 06:13:22 +00:00
|
|
|
<span class="active section" title="{{$v}}">{{$v}}</span>
|
2023-04-29 12:02:29 +00:00
|
|
|
{{- else -}}
|
2024-04-10 06:13:22 +00:00
|
|
|
{{$p := index $.Paths $i}}<span class="section"><a href="{{$.BranchLink}}/{{PathEscapeSegments $p}}" title="{{$v}}">{{$v}}</a></span>
|
2023-04-29 12:02:29 +00:00
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
|
|
|
</span>
|
2022-08-07 23:15:11 +00:00
|
|
|
{{end}}
|
2017-12-31 00:47:52 +00:00
|
|
|
</div>
|
2024-05-02 19:10:49 +00:00
|
|
|
<div class="repo-button-row-right">
|
2017-08-13 22:49:38 +00:00
|
|
|
<!-- Only show clone panel in repository home page -->
|
2024-04-10 06:13:22 +00:00
|
|
|
{{if $isHomepage}}
|
2024-03-17 12:40:42 +00:00
|
|
|
<div class="clone-panel ui action tiny input">
|
2022-08-12 05:16:05 +00:00
|
|
|
{{template "repo/clone_buttons" .}}
|
2024-03-17 12:40:42 +00:00
|
|
|
<button class="ui small jump dropdown icon button" data-tooltip-content="{{ctx.Locale.Tr "repo.more_operations"}}">
|
2022-11-11 17:02:50 +00:00
|
|
|
{{svg "octicon-kebab-horizontal"}}
|
2015-12-07 22:30:52 +00:00
|
|
|
<div class="menu">
|
2022-08-12 05:16:05 +00:00
|
|
|
{{if not $.DisableDownloadSourceArchives}}
|
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}/**/*
```
2024-03-24 16:42:49 +00:00
|
|
|
<a class="item archive-link" href="{{$.RepoLink}}/archive/{{PathEscapeSegments $.RefName}}.zip" rel="nofollow">{{svg "octicon-file-zip" 16 "tw-mr-2"}}{{ctx.Locale.Tr "repo.download_zip"}}</a>
|
|
|
|
<a class="item archive-link" href="{{$.RepoLink}}/archive/{{PathEscapeSegments $.RefName}}.tar.gz" rel="nofollow">{{svg "octicon-file-zip" 16 "tw-mr-2"}}{{ctx.Locale.Tr "repo.download_tar"}}</a>
|
|
|
|
<a class="item archive-link" href="{{$.RepoLink}}/archive/{{PathEscapeSegments $.RefName}}.bundle" rel="nofollow">{{svg "octicon-package" 16 "tw-mr-2"}}{{ctx.Locale.Tr "repo.download_bundle"}}</a>
|
2024-02-25 00:13:04 +00:00
|
|
|
{{end}}
|
|
|
|
{{if .CitiationExist}}
|
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}/**/*
```
2024-03-24 16:42:49 +00:00
|
|
|
<a class="item" id="cite-repo-button">{{svg "octicon-cross-reference" 16 "tw-mr-2"}}{{ctx.Locale.Tr "repo.cite_this_repo"}}</a>
|
2022-08-12 05:16:05 +00:00
|
|
|
{{end}}
|
2024-02-24 13:12:17 +00:00
|
|
|
{{range .OpenWithEditorApps}}
|
|
|
|
<a class="item js-clone-url-editor" data-href-template="{{.OpenURL}}">{{.IconHTML}}{{ctx.Locale.Tr "repo.open_with_editor" .DisplayName}}</a>
|
|
|
|
{{end}}
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
2021-04-13 00:10:57 +00:00
|
|
|
</button>
|
2022-09-21 11:51:10 +00:00
|
|
|
{{template "repo/clone_script" .}}{{/* the script will update `.js-clone-url` and related elements */}}
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
2022-11-11 17:02:50 +00:00
|
|
|
{{template "repo/cite/cite_modal" .}}
|
2016-08-11 12:48:08 +00:00
|
|
|
{{end}}
|
2024-04-26 11:21:04 +00:00
|
|
|
{{if and (not $isHomepage) (not .IsViewFile) (not .IsBlame)}}{{/* IsViewDirectory (not home), TODO: split the templates, avoid using "if" tricks */}}
|
2022-08-09 10:32:41 +00:00
|
|
|
<a class="ui button" href="{{.RepoLink}}/commits/{{.BranchNameSubURL}}/{{.TreePath | PathEscapeSegments}}">
|
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}/**/*
```
2024-03-24 16:42:49 +00:00
|
|
|
{{svg "octicon-history" 16 "tw-mr-2"}}{{ctx.Locale.Tr "repo.file_history"}}
|
2022-08-09 10:32:41 +00:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2016-08-11 12:48:08 +00:00
|
|
|
</div>
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
2016-08-30 09:08:38 +00:00
|
|
|
{{if .IsViewFile}}
|
2015-12-07 22:30:52 +00:00
|
|
|
{{template "repo/view_file" .}}
|
2019-04-20 02:47:00 +00:00
|
|
|
{{else if .IsBlame}}
|
|
|
|
{{template "repo/blame" .}}
|
2024-04-26 11:21:04 +00:00
|
|
|
{{else}}{{/* IsViewDirectory */}}
|
2015-12-07 22:30:52 +00:00
|
|
|
{{template "repo/view_list" .}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2014-07-26 04:24:27 +00:00
|
|
|
</div>
|
2015-12-07 22:30:52 +00:00
|
|
|
{{template "base/footer" .}}
|