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