Commit b5668234b1b33cc72c36ed167baf40a3101c801d

Authored by Dmitriy Zaporozhets
1 parent 2db010b6

Remove unecessary %br in help area

app/views/help/_layout.html.haml
... ... @@ -2,7 +2,7 @@
2 2 .span3{:"data-spy" => 'affix'}
3 3 .ui-box
4 4 .title
5   - %h5 Help
  5 + Help
6 6 %ul.well-list
7 7 %li
8 8 %strong= link_to "Workflow", help_workflow_path
... ...
app/views/help/api.html.haml
... ... @@ -4,7 +4,6 @@
4 4 %span
5 5 \/
6 6 = @category.titleize
7   - %br
8 7  
9 8 .file-holder
10 9 .file-title
... ...
app/views/help/markdown.html.haml
1 1 = render layout: 'help/layout' do
2 2 %h3.page-title GitLab Flavored Markdown
3   - %br
4 3  
5 4 .help_body
6 5 = preserve do
... ...
app/views/help/permissions.html.haml
1 1 = render layout: 'help/layout' do
2 2 %h3.page-title Permissions
3   - %br
4 3  
5 4 %fieldset
6 5 %legend Guest
... ...
app/views/help/public_access.html.haml
1 1 = render layout: 'help/layout' do
2 2 %h3.page-title Public Access
3   - %br
4 3  
5 4 %p
6 5 GitLab allows you to open selected projects to be accessed publicly.
... ...
app/views/help/raketasks.html.haml
1 1 = render layout: 'help/layout' do
2 2 %h3.page-title GitLab Rake Tasks
3   - %br
4 3  
5 4 %p.slead
6 5 GitLab provides some specific rake tasks to enable special features or perform maintenance tasks.
... ...
app/views/help/ssh.html.haml
1 1 = render layout: 'help/layout' do
2 2 %h3.page-title SSH Keys
3   - %br
4 3  
5 4 %p.slead
6 5 SSH key allows you to establish a secure connection between your computer and GitLab
... ...
app/views/help/system_hooks.html.haml
1 1 = render layout: 'help/layout' do
2 2 %h3.page-title System hooks
3   - %br
4 3  
5 4 %p.slead
6 5 Your GitLab instance can perform HTTP POST requests on the following events: create_project, delete_project, create_user, delete_user, change_team_member.
... ...
app/views/help/web_hooks.html.haml
1 1 = render layout: 'help/layout' do
2 2 %h3.page-title Web hooks
3   - %br
4 3  
5 4 %p.slead
6 5 Every GitLab project can trigger a web server whenever the repo is pushed to.
... ...
app/views/help/workflow.html.haml
1 1 = render layout: 'help/layout' do
2 2 %h3.page-title Workflow
3   - %br
4 3  
5 4 %ol.help
6 5 %li
... ...