debian-mirror-gitlab/app/views/projects/wikis/git_access.html.haml

41 lines
1.3 KiB
Text
Raw Normal View History

2018-11-08 19:23:39 +05:30
- @content_class = "limit-container-width" unless fluid_layout
2018-03-17 18:26:18 +05:30
- page_title s_("WikiClone|Git Access"), _("Wiki")
2015-09-25 12:07:36 +05:30
2019-10-12 21:52:04 +05:30
.wiki-page-header.top-area.has-sidebar-toggle
2018-11-08 19:23:39 +05:30
%button.btn.btn-default.d-block.d-sm-block.d-md-none.float-right.sidebar-toggle.js-sidebar-wiki-toggle{ role: "button", type: "button" }
2017-09-10 17:25:29 +05:30
= icon('angle-double-left')
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
.git-access-header
2018-03-17 18:26:18 +05:30
= _("Clone repository")
2017-09-10 17:25:29 +05:30
%strong= @project_wiki.full_path
2014-09-02 18:07:02 +05:30
2017-09-10 17:25:29 +05:30
= render "shared/clone_panel", project: @project_wiki
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
.wiki-git-access
2018-03-17 18:26:18 +05:30
%h3= s_("WikiClone|Install Gollum")
2017-09-10 17:25:29 +05:30
%pre.dark
:preserve
gem install gollum
%p
2018-03-17 18:26:18 +05:30
= (s_("WikiClone|It is recommended to install %{markdown} so that GFM features render locally:") % { markdown: "<code>github-markdown</code>" }).html_safe
2017-09-10 17:25:29 +05:30
%pre.dark
:preserve
gem install github-markdown
2014-09-02 18:07:02 +05:30
2018-03-17 18:26:18 +05:30
%h3= s_("WikiClone|Clone your wiki")
2017-09-10 17:25:29 +05:30
%pre.dark
:preserve
git clone #{ content_tag(:span, h(default_url_to_repo(@project_wiki)), class: 'clone')}
cd #{h @project_wiki.path}
2014-09-02 18:07:02 +05:30
2018-03-17 18:26:18 +05:30
%h3= s_("WikiClone|Start Gollum and edit locally")
2017-09-10 17:25:29 +05:30
%pre.dark
:preserve
gollum
== Sinatra/1.3.5 has taken the stage on 4567 for development with backup from Thin
>> Thin web server (v1.5.0 codename Knife)
>> Maximum connections set to 1024
>> Listening on 0.0.0.0:4567, CTRL+C to stop
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
= render 'sidebar'