2018-03-17 18:26:18 +05:30
|
|
|
- commit_message = @page.persisted? ? s_("WikiPageEdit|Update %{page_title}") : s_("WikiPageCreate|Create %{page_title}")
|
|
|
|
- commit_message = commit_message % { page_title: @page.title }
|
2018-11-20 20:47:30 +05:30
|
|
|
- if params[:legacy_render] || !commonmark_for_repositories_enabled?
|
|
|
|
- markdown_version = CacheMarkdownField::CACHE_REDCARPET_VERSION
|
|
|
|
- else
|
|
|
|
- markdown_version = 0
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
= form_for [@project.namespace.becomes(Namespace), @project, @page], method: @page.persisted? ? :put : :post,
|
|
|
|
html: { class: 'wiki-form common-note-form prepend-top-default js-quick-submit' },
|
2018-11-20 20:47:30 +05:30
|
|
|
data: { markdown_version: markdown_version, uploads_path: uploads_path } do |f|
|
2016-06-02 11:05:42 +05:30
|
|
|
= form_errors(@page)
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
- if @page.persisted?
|
|
|
|
= f.hidden_field :last_commit_sha, value: @page.last_commit_sha
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
.form-group.row
|
2017-09-10 17:25:29 +05:30
|
|
|
.col-sm-12= f.label :title, class: 'control-label-full-width'
|
2018-03-17 18:26:18 +05:30
|
|
|
.col-sm-12
|
|
|
|
= f.text_field :title, class: 'form-control', value: @page.title
|
|
|
|
- if @page.persisted?
|
|
|
|
%span.edit-wiki-page-slug-tip
|
|
|
|
= icon('lightbulb-o')
|
|
|
|
= s_("WikiEditPageTip|Tip: You can move this page by adding the path to the beginning of the title.")
|
|
|
|
= link_to icon('question-circle'), help_page_path('user/project/wiki/index', anchor: 'moving-a-wiki-page'), target: '_blank'
|
2018-11-08 19:23:39 +05:30
|
|
|
.form-group.row
|
2017-09-10 17:25:29 +05:30
|
|
|
.col-sm-12= f.label :format, class: 'control-label-full-width'
|
|
|
|
.col-sm-12
|
2018-03-17 18:26:18 +05:30
|
|
|
= f.select :format, options_for_select(ProjectWiki::MARKUPS, {selected: @page.format}), {}, class: 'form-control'
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
.form-group.row
|
2017-09-10 17:25:29 +05:30
|
|
|
.col-sm-12= f.label :content, class: 'control-label-full-width'
|
|
|
|
.col-sm-12
|
|
|
|
= render layout: 'projects/md_preview', locals: { url: project_wiki_preview_markdown_path(@project, @page.slug) } do
|
2018-11-08 19:23:39 +05:30
|
|
|
= render 'projects/zen', f: f, attr: :content, classes: 'note-textarea', placeholder: s_("WikiPage|Write your content or drag files here…")
|
2017-08-17 22:00:37 +05:30
|
|
|
= render 'shared/notes/hints'
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
.clearfix
|
|
|
|
.error-alert
|
2015-12-23 02:04:40 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
.form-text.text-muted
|
2016-09-13 17:45:13 +05:30
|
|
|
= succeed '.' do
|
2018-03-17 18:26:18 +05:30
|
|
|
= (s_("WikiMarkdownTip|To link to a (new) page, simply type %{link_example}") % { link_example: '<code>[Link Title](page-slug)</code>' }).html_safe
|
2016-09-13 17:45:13 +05:30
|
|
|
|
|
|
|
= succeed '.' do
|
2018-03-17 18:26:18 +05:30
|
|
|
- markdown_link = link_to s_("WikiMarkdownDocs|documentation"), help_page_path('user/markdown', anchor: 'wiki-specific-markdown')
|
|
|
|
= (s_("WikiMarkdownDocs|More examples are in the %{docs_link}") % { docs_link: markdown_link }).html_safe
|
2016-09-13 17:45:13 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
.form-group.row
|
2017-09-10 17:25:29 +05:30
|
|
|
.col-sm-12= f.label :commit_message, class: 'control-label-full-width'
|
|
|
|
.col-sm-12= f.text_field :message, class: 'form-control', rows: 18, value: commit_message
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
.form-actions
|
|
|
|
- if @page && @page.persisted?
|
2018-12-05 23:21:45 +05:30
|
|
|
= f.submit _("Save changes"), class: 'btn-success btn'
|
2018-11-08 19:23:39 +05:30
|
|
|
.float-right
|
2018-03-17 18:26:18 +05:30
|
|
|
= link_to _("Cancel"), project_wiki_path(@project, @page), class: 'btn btn-cancel btn-grouped'
|
2014-09-02 18:07:02 +05:30
|
|
|
- else
|
2018-12-05 23:21:45 +05:30
|
|
|
= f.submit s_("Wiki|Create page"), class: 'btn-success btn'
|
2018-11-08 19:23:39 +05:30
|
|
|
.float-right
|
2018-03-17 18:26:18 +05:30
|
|
|
= link_to _("Cancel"), project_wiki_path(@project, :home), class: 'btn btn-cancel'
|