Merge wiki, wall & snippets under one tab - writeboards
This commit is contained in:
parent
753ecbdcec
commit
a685624d27
14 changed files with 128 additions and 99 deletions
|
@ -284,6 +284,6 @@ ul.notes {
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
margin-left: 15px;
|
margin-left: 15px;
|
||||||
@extend .pull-left;
|
@extend .pull-left;
|
||||||
@extend .span4;
|
width: 35%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -73,11 +73,19 @@ module TabHelper
|
||||||
end
|
end
|
||||||
|
|
||||||
def project_tab_class
|
def project_tab_class
|
||||||
[:files, :edit].each do |action|
|
return "active" if current_page?(controller: "projects", action: :edit, id: @project)
|
||||||
|
|
||||||
|
if ['services', 'hooks', 'deploy_keys', 'team_members'].include? controller.controller_name
|
||||||
|
"active"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def project_writeboards_tab_class
|
||||||
|
[:files, :wall].each do |action|
|
||||||
return "active" if current_page?(controller: "projects", action: action, id: @project)
|
return "active" if current_page?(controller: "projects", action: action, id: @project)
|
||||||
end
|
end
|
||||||
|
|
||||||
if ['snippets', 'services', 'hooks', 'deploy_keys', 'team_members'].include? controller.controller_name
|
if ['wikis', 'snippets'].include? controller.controller_name
|
||||||
"active"
|
"active"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
.input
|
.input
|
||||||
= f.text_field :url, class: "text_field xxlarge"
|
= f.text_field :url, class: "text_field xxlarge"
|
||||||
|
|
||||||
= f.submit "Add Web Hook", class: "btn btn-primary"
|
= f.submit "Add Web Hook", class: "btn btn-create"
|
||||||
%hr
|
%hr
|
||||||
|
|
||||||
-if @hooks.any?
|
-if @hooks.any?
|
||||||
|
|
|
@ -35,17 +35,11 @@
|
||||||
Merge Requests
|
Merge Requests
|
||||||
%span.count.merge_counter= @project.merge_requests.opened.count
|
%span.count.merge_counter= @project.merge_requests.opened.count
|
||||||
|
|
||||||
- if @project.wall_enabled
|
= nav_link(html_options: {class: "#{project_writeboards_tab_class}"}) do
|
||||||
= nav_link(path: 'projects#wall') do
|
= link_to 'Writeboards', project_wiki_path(@project, :index)
|
||||||
= link_to 'Wall', wall_project_path(@project)
|
|
||||||
|
|
||||||
- if @project.wiki_enabled
|
|
||||||
= nav_link(controller: :wikis) do
|
|
||||||
= link_to 'Wiki', project_wiki_path(@project, :index)
|
|
||||||
|
|
||||||
- if can? current_user, :admin_project, @project
|
- if can? current_user, :admin_project, @project
|
||||||
= nav_link(html_options: {class: "#{project_tab_class}"}) do
|
= nav_link(html_options: {class: "#{project_tab_class}"}) do
|
||||||
= link_to edit_project_path(@project), class: "stat-tab tab " do
|
= link_to edit_project_path(@project), class: "stat-tab tab " do
|
||||||
Settings
|
Settings
|
||||||
|
|
||||||
.content= yield
|
.content= yield
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
= render "project_head"
|
.row
|
||||||
- unless @notes.empty?
|
.span3
|
||||||
|
= render 'writeboards/nav'
|
||||||
|
.span9
|
||||||
|
- unless @notes.empty?
|
||||||
%table
|
%table
|
||||||
%thead
|
%thead
|
||||||
%tr
|
%tr
|
||||||
|
@ -16,7 +19,7 @@
|
||||||
Added
|
Added
|
||||||
= time_ago_in_words(note.created_at)
|
= time_ago_in_words(note.created_at)
|
||||||
ago
|
ago
|
||||||
- else
|
- else
|
||||||
%p.slead All files attached to project wall, issues etc will be displayed here
|
%p.slead All files attached to project wall, issues etc will be displayed here
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,6 @@
|
||||||
%div.wall_page
|
.row
|
||||||
|
.span3
|
||||||
|
= render 'writeboards/nav'
|
||||||
|
.span9
|
||||||
|
%div.wall_page
|
||||||
= render "notes/reversed_notes_with_form"
|
= render "notes/reversed_notes_with_form"
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
= render "projects/project_head"
|
|
||||||
= render "snippets/form"
|
= render "snippets/form"
|
||||||
|
|
|
@ -1,14 +1,16 @@
|
||||||
= render "projects/project_head"
|
.row
|
||||||
|
.span3
|
||||||
%h3.page_title
|
= render 'writeboards/nav'
|
||||||
|
.span9
|
||||||
|
%h3.page_title
|
||||||
Snippets
|
Snippets
|
||||||
%small share code pastes with others out of git repository
|
%small share code pastes with others out of git repository
|
||||||
|
|
||||||
- if can? current_user, :write_snippet, @project
|
- if can? current_user, :write_snippet, @project
|
||||||
= link_to new_project_snippet_path(@project), class: "btn btn-small add_new pull-right", title: "New Snippet" do
|
= link_to new_project_snippet_path(@project), class: "btn btn-small add_new pull-right", title: "New Snippet" do
|
||||||
Add new snippet
|
Add new snippet
|
||||||
%br
|
%br
|
||||||
%table
|
%table
|
||||||
%thead
|
%thead
|
||||||
%tr
|
%tr
|
||||||
%th Title
|
%th Title
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
= render "projects/project_head"
|
|
||||||
= render "snippets/form"
|
= render "snippets/form"
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
= render "projects/project_head"
|
|
||||||
|
|
||||||
%h3.page_title
|
%h3.page_title
|
||||||
= @snippet.title
|
= @snippet.title
|
||||||
%small= @snippet.file_name
|
%small= @snippet.file_name
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
%h3.page_title All Pages
|
.row
|
||||||
%br
|
.span3
|
||||||
%table
|
= render 'writeboards/nav'
|
||||||
|
.span9
|
||||||
|
%h3.page_title All Pages
|
||||||
|
%br
|
||||||
|
%table
|
||||||
%thead
|
%thead
|
||||||
%tr
|
%tr
|
||||||
%th Title
|
%th Title
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
%h3.page_title
|
.row
|
||||||
|
.span3
|
||||||
|
= render 'writeboards/nav'
|
||||||
|
.span9
|
||||||
|
%h3.page_title
|
||||||
= @wiki.title
|
= @wiki.title
|
||||||
%span.pull-right
|
%span.pull-right
|
||||||
= link_to pages_project_wikis_path(@project), class: "btn btn-small grouped" do
|
= link_to pages_project_wikis_path(@project), class: "btn btn-small grouped" do
|
||||||
|
@ -9,15 +13,15 @@
|
||||||
= link_to edit_project_wiki_path(@project, @wiki), class: "btn btn-small grouped" do
|
= link_to edit_project_wiki_path(@project, @wiki), class: "btn btn-small grouped" do
|
||||||
%i.icon-edit
|
%i.icon-edit
|
||||||
Edit
|
Edit
|
||||||
%br
|
%br
|
||||||
- if @wiki != @most_recent_wiki
|
- if @wiki != @most_recent_wiki
|
||||||
.warning_message
|
.warning_message
|
||||||
This is an old version of this page.
|
This is an old version of this page.
|
||||||
You can view the #{link_to "most recent version", project_wiki_path(@project, @wiki)} or browse the #{link_to "history", history_project_wiki_path(@project, @wiki)}.
|
You can view the #{link_to "most recent version", project_wiki_path(@project, @wiki)} or browse the #{link_to "history", history_project_wiki_path(@project, @wiki)}.
|
||||||
|
|
||||||
.file_holder
|
.file_holder
|
||||||
.file_content.wiki
|
.file_content.wiki
|
||||||
= preserve do
|
= preserve do
|
||||||
= markdown @wiki.content
|
= markdown @wiki.content
|
||||||
|
|
||||||
%p.time Last edited by #{link_to_member @project, @wiki.user}, #{time_ago_in_words @wiki.created_at} ago
|
%p.time Last edited by #{link_to_member @project, @wiki.user}, #{time_ago_in_words @wiki.created_at} ago
|
||||||
|
|
14
app/views/writeboards/_nav.html.haml
Normal file
14
app/views/writeboards/_nav.html.haml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
%ul.nav.nav-pills.nav-stacked
|
||||||
|
- if @project.wiki_enabled
|
||||||
|
= nav_link(controller: 'wikis') do
|
||||||
|
= link_to 'Wiki', project_wiki_path(@project, :index)
|
||||||
|
|
||||||
|
- if @project.wall_enabled
|
||||||
|
= nav_link(path: 'projects#wall') do
|
||||||
|
= link_to 'Wall', wall_project_path(@project)
|
||||||
|
|
||||||
|
= nav_link(path: 'projects#files') do
|
||||||
|
= link_to 'Attachments', files_project_path(@project), class: "files-tab tab"
|
||||||
|
|
||||||
|
= nav_link(controller: :snippets) do
|
||||||
|
= link_to 'Snippets', project_snippets_path(@project), class: "snippets-tab tab"
|
Loading…
Add table
Reference in a new issue