2022-02-09 20:28:55 +00:00
{{ template "base/head" . }}
2023-02-01 19:56:10 -03:00
<div role="main" aria-label=" {{ .Title }} " class="page-content repository file editor edit">
2022-02-09 20:28:55 +00:00
{{ template "repo/header" . }}
<div class="ui container">
{{ template "base/alert" . }}
2023-06-14 20:17:58 +02:00
<form class="ui edit form" method="post" action=" {{ .RepoLink }} /_diffpatch/ {{ .BranchName | PathEscapeSegments }} ">
2022-02-09 20:28:55 +00:00
{{ .CsrfTokenHtml }}
<input type="hidden" name="last_commit" value=" {{ .last_commit }} ">
<input type="hidden" name="page_has_posted" value=" {{ .PageHasPosted }} ">
2023-05-01 17:40:02 +02:00
<div class="repo-editor-header">
<div class="ui breadcrumb field {{ if .Err_TreePath }} error {{ end }} ">
2023-09-25 10:56:50 +02:00
{{ ctx .Locale .Tr "repo.editor.patching" }}
2023-05-01 17:40:02 +02:00
<a class="section" href=" {{ $ .RepoLink }} "> {{ .Repository .FullName }} </a>
2023-08-16 02:08:23 +02:00
<div class="breadcrumb-divider">:</div>
2023-05-01 17:40:02 +02:00
<a class="section" href=" {{ $ .BranchLink }} "> {{ .BranchName }} </a>
2023-09-25 20:42:40 +08:00
<span> {{ ctx .Locale .Tr "repo.editor.or" }} <a href=" {{ $ .BranchLink }} "> {{ ctx .Locale .Tr "repo.editor.cancel_lower" }} </a></span>
2024-02-26 17:05:22 +08:00
<input type="hidden" name="tree_path" value="__dummy_for_EditRepoFileForm.TreePath(Required)__">
<input id="file-name" type="hidden" value="diff.patch">
2022-02-09 20:28:55 +00:00
</div>
</div>
<div class="field">
2024-04-29 22:53:15 +02:00
<div class="ui compact small menu small-menu-items repo-editor-menu">
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 17:42:49 +01:00
<a class="active item" data-tab="write"> {{ svg "octicon-code" 1 6 "tw-mr-1" }} {{ ctx .Locale .Tr "repo.editor.new_patch" }} </a>
2022-02-09 20:28:55 +00:00
</div>
2024-04-29 22:53:15 +02:00
<div class="ui active tab segment tw-rounded tw-p-0" data-tab="write">
2024-03-24 19:23:38 +01:00
<textarea id="edit_area" name="content" class="tw-hidden" data-id="repo- {{ .Repository .Name }} -patch"
2022-02-09 20:28:55 +00:00
data-context=" {{ .RepoLink }} "
data-line-wrap-extensions=" {{ .LineWrapExtensions }} ">
{{ .FileContent }} </textarea>
<div class="editor-loading is-loading"></div>
</div>
</div>
{{ template "repo/editor/commit_form" . }}
</form>
</div>
2023-04-24 19:08:59 +08:00
<div class="ui g-modal-confirm modal" id="edit-empty-content-modal">
2023-04-23 17:24:19 +08:00
<div class="header">
2023-03-21 02:42:02 +01:00
{{ svg "octicon-file" }}
2023-09-25 10:56:50 +02:00
{{ ctx .Locale .Tr "repo.editor.commit_empty_file_header" }}
2022-02-09 20:28:55 +00:00
</div>
<div class="center content">
2023-09-25 10:56:50 +02:00
<p> {{ ctx .Locale .Tr "repo.editor.commit_empty_file_text" }} </p>
2022-02-09 20:28:55 +00:00
</div>
<div class="actions">
2023-09-19 00:05:31 +02:00
<button class="ui cancel button">
2023-03-14 04:34:09 +01:00
{{ svg "octicon-x" }}
2023-09-25 10:56:50 +02:00
{{ ctx .Locale .Tr "repo.editor.cancel" }}
2023-03-14 04:34:09 +01:00
</button>
2023-09-19 00:05:31 +02:00
<button class="ui primary ok button">
2023-03-14 04:34:09 +01:00
{{ svg "fontawesome-save" }}
2023-09-25 10:56:50 +02:00
{{ ctx .Locale .Tr "repo.editor.commit_changes" }}
2023-03-14 04:34:09 +01:00
</button>
2022-02-09 20:28:55 +00:00
</div>
</div>
</div>
{{ template "base/footer" . }}