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