forked from go-gitea/gitea
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main'
* upstream/main: Improve show role (go-gitea#26621) Improve some flex layouts (go-gitea#26649) feat: implement organization secret creation API (go-gitea#26566) Check disabled workflow when rerun jobs (go-gitea#26535)
- Loading branch information
Showing
21 changed files
with
356 additions
and
231 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Copyright 2023 The Gitea Authors. All rights reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
package convert | ||
|
||
import ( | ||
secret_model "code.gitea.io/gitea/models/secret" | ||
api "code.gitea.io/gitea/modules/structs" | ||
) | ||
|
||
// ToSecret converts Secret to API format | ||
func ToSecret(secret *secret_model.Secret) *api.Secret { | ||
result := &api.Secret{ | ||
Name: secret.Name, | ||
} | ||
|
||
return result | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
{{template "base/head" .}} | ||
<link rel="stylesheet" href="{{AssetUrlPrefix}}/css/devtest.css?v={{AssetVersion}}"> | ||
<div class="page-content devtest ui container"> | ||
<div> | ||
<h1>Flex List</h1> | ||
<div class="flex-list"> | ||
<div class="flex-item"> | ||
<div class="flex-item-leading"> | ||
{{svg "octicon-info" 32}} | ||
</div> | ||
<div class="flex-item-main"> | ||
<div class="flex-item-title"> | ||
Flex Item | ||
<span class="ui basic label"> | ||
with label | ||
</span> | ||
</div> | ||
<div class="flex-item-body"> | ||
consists of leading/main/trailing part | ||
</div> | ||
<div class="flex-item-body"> | ||
main part contains title and (multiple) body lines | ||
</div> | ||
</div> | ||
<div class="flex-item-trailing"> | ||
<button class="ui tiny red button"> | ||
{{svg "octicon-warning" 14}} CJK文本测试 | ||
</button> | ||
<button class="ui tiny green button"> | ||
{{svg "octicon-info" 14}} Button | ||
</button> | ||
<button class="ui tiny green button"> | ||
Button with long text | ||
</button> | ||
</div> | ||
</div> | ||
|
||
<div class="flex-item"> | ||
<div class="flex-item-leading"> | ||
{{svg "octicon-info" 32}} | ||
</div> | ||
<div class="flex-item-main"> | ||
<div class="flex-item-title"> | ||
Very loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong title | ||
</div> | ||
<div class="flex-item-body"> | ||
consists of leading/main/trailing part | ||
</div> | ||
<div class="flex-item-body"> | ||
Very loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong content | ||
</div> | ||
</div> | ||
<div class="flex-item-trailing"> | ||
<button class="ui tiny red button"> | ||
{{svg "octicon-warning" 12}} CJK文本测试 <!-- single CJK text test, it shouldn't be horizontal --> | ||
</button> | ||
</div> | ||
</div> | ||
|
||
<div class="flex-item"> | ||
<div class="flex-item-leading"> | ||
{{svg "octicon-repo" 32}} | ||
</div> | ||
<div class="flex-item-main"> | ||
<div class="flex-item-header"> | ||
<div class="flex-item-title"> | ||
<a class="text primary" href="{{$.Link}}"> | ||
gitea-org / gitea | ||
</a> | ||
<span data-tooltip-content="{{$.locale.Tr "repo.fork"}}">{{svg "octicon-repo-forked"}}</span> | ||
</div> | ||
<div class="flex-item-trailing"> | ||
<a class="muted" href="{{$.Link}}"> | ||
<span class="flex-text-inline"><i class="color-icon gt-mr-3" style="background-color: aqua"></i>Go</span> | ||
</a> | ||
<a class="text grey flex-text-inline" href="{{$.Link}}">{{svg "octicon-star" 16}}45000</a> | ||
<a class="text grey flex-text-inline" href="{{$.Link}}">{{svg "octicon-git-branch" 16}}1234</a> | ||
</div> | ||
</div> | ||
<div class="flex-item-body"> | ||
when inside header, the trailing part will wrap below the title | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
{{template "base/footer" .}} |
Oops, something went wrong.