ea9b3687db
This commit replaces the old database backed Wiki system with the excellent Gollum git based Wiki system. The UI has been updated to allow for utilizing the extra features that Gollum provides. Specifically: * Edit page now allows you to choose the content format. * Edit page allows you to provide a commit message for the change. * History page now shows Format, Commit Message, and Commit Hash. * A new Git Access page has been added with the Wiki Repo URL. * The default page has been changed to Home from Index to match the Gollum standard. The old Wiki model has been left in tact to provide for the development of a migration script that will move all content stored in the old Wiki system into new Gollum Wikis.
34 lines
1.2 KiB
Plaintext
34 lines
1.2 KiB
Plaintext
= form_for [@project, @wiki] do |f|
|
|
-if @wiki.errors.any?
|
|
#error_explanation
|
|
%h2= "#{pluralize(@wiki.errors.count, "error")} prohibited this wiki from being saved:"
|
|
%ul
|
|
- @wiki.errors.full_messages.each do |msg|
|
|
%li= msg
|
|
|
|
.ui-box.ui-box-show
|
|
.ui-box-head
|
|
%h3.page_title
|
|
.edit-wiki-header
|
|
= @wiki.title.titleize
|
|
= f.hidden_field :title, value: @wiki.title
|
|
= f.select :format, options_for_select(GollumWiki::MARKUPS, {selected: @wiki.format}), {}, class: "pull-right input-medium"
|
|
= f.label :format, class: "pull-right", style: "padding-right: 20px;"
|
|
.ui-box-body
|
|
.input
|
|
%span.cgray
|
|
Wiki content is parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}.
|
|
To link to a (new) page you can just type
|
|
%code [Link Title](page-slug)
|
|
\.
|
|
|
|
.ui-box-bottom
|
|
= f.label :content
|
|
.input= f.text_area :content, class: 'span8 js-gfm-input'
|
|
.ui-box-bottom
|
|
= f.label :commit_message
|
|
.input= f.text_field :message, class: 'span8'
|
|
.actions
|
|
= f.submit 'Save', class: "btn-save btn"
|
|
= link_to "Cancel", project_wiki_path(@project, :index), class: "btn btn-cancel"
|