Help message for wiki, styled projects page

This commit is contained in:
Dmitriy Zaporozhets 2012-02-21 22:04:01 +02:00
parent ce8eba8913
commit 1c22d4f50f
11 changed files with 71 additions and 32 deletions

View file

@ -9,17 +9,19 @@ var MergeRequest = {
$(this).parent().addClass("active"); $(this).parent().addClass("active");
}); });
$(".tabs a.merge-notes-tab").live("click", function() { $(".tabs a.merge-notes-tab").live("click", function(e) {
$(".merge-request-diffs").hide(); $(".merge-request-diffs").hide();
$(".merge-request-notes").show(); $(".merge-request-notes").show();
e.preventDefault();
}); });
$(".tabs a.merge-diffs-tab").live("click", function() { $(".tabs a.merge-diffs-tab").live("click", function(e) {
if(!MergeRequest.diffs_loaded) { if(!MergeRequest.diffs_loaded) {
MergeRequest.loadDiff(); MergeRequest.loadDiff();
} }
$(".merge-request-notes").hide(); $(".merge-request-notes").hide();
$(".merge-request-diffs").show(); $(".merge-request-diffs").show();
e.preventDefault();
}); });
}, },

View file

@ -253,14 +253,12 @@ img.lil_av {
} }
.widget { .widget {
@include shade;
padding:20px; padding:20px;
margin-bottom:20px; margin-bottom:20px;
background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #fff), to(#f1f1f1));
background-image: -webkit-linear-gradient(#fff 6.6%, #f1f1f1);
background-image: -moz-linear-gradient(#fff 6.6%, #f1f1f1);
background-image: -o-linear-gradient(#fff 6.6%, #f1f1f1);
border: 1px solid #DDD; border: 1px solid #DDD;
border-radius: 5px; border-radius: 5px;
background:#fafafa;
.link_holder { .link_holder {
background:#eee; background:#eee;
@ -304,6 +302,9 @@ img.lil_av {
.row_title { .row_title {
font-weight:bold; font-weight:bold;
color:#444; color:#444;
&:hover {
text-decoration:underline;
}
} }
li, .wll { li, .wll {
@ -345,10 +346,6 @@ img.lil_av {
@include shade; @include shade;
} }
.well.padded {
padding:29px;
}
.download_repo_link { .download_repo_link {
background: url("images.png") no-repeat 0 -48px; background: url("images.png") no-repeat 0 -48px;
padding-left:20px; padding-left:20px;
@ -369,3 +366,7 @@ table a code {
top: -2px; top: -2px;
margin-right: 3px; margin-right: 3px;
} }
.span12 hr{
margin-top: 5px;
}

View file

@ -1,7 +1,7 @@
/* Login Page */ /* Login Page */
body.login-page{ body.login-page{
padding-top: 10%; padding-top: 10%;
background:$style_color; background:#f1f1f1;
} }
.login-box{ .login-box{

View file

@ -222,6 +222,33 @@ input.git_clone_url {
background:#fff !important; background:#fff !important;
} }
.span12 hr{ .project_tile {
margin-top: 2px; @include shade;
@include round-borders-all(4px);
margin-bottom:20px;
width:338px;
float:left;
margin-left:20px;
border: 1px solid #DDD;
padding-bottom:20px;
.title {
background:#f5f5f5;
padding: 5px 10px 2px 20px;
border-bottom: 1px solid #DDD;
margin-bottom: 15px;
h3 {
&:hover {
text-decoration: underline;
}
}
}
.data {
margin: 0 20px;
}
.buttons {
margin: 0 20px;
}
} }

View file

@ -1,12 +1,12 @@
%tr %tr
%td %td
%a{:href => project_deploy_key_path(key.project, key)} %a{:href => project_deploy_key_path(key.project, key)}
= key.title %strong= key.title
%td %td
%span.update-author %span.update-author
Added Added
= time_ago_in_words(key.created_at) = time_ago_in_words(key.created_at)
ago ago
%td %td
= link_to 'Remove', project_deploy_key_path(key.project, key), :confirm => 'Are you sure?', :method => :delete, :class => "danger btn delete-key small" = link_to 'Remove', project_deploy_key_path(key.project, key), :confirm => 'Are you sure?', :method => :delete, :class => "danger btn delete-key small right"

View file

@ -3,7 +3,7 @@
.widget .widget
You can create at least You can create at least
= current_user.projects_limit = current_user.projects_limit
projects. Click on button to add a new one projects. Click on link below to add a new one
.link_holder .link_holder
= link_to new_project_path, :class => "" do = link_to new_project_path, :class => "" do
New Project » New Project »

View file

@ -1,11 +1,13 @@
- @projects.in_groups_of(2, false) do |projects| - @projects.in_groups_of(2, false) do |projects|
.row .row
- projects.each_with_index do |project, i| - projects.each_with_index do |project, i|
%div.span5.well.padded %div.project_tile
= link_to project_path(project) do .title
%h3= truncate(project.name, :length => 28) = link_to project_path(project) do
%p %h3= truncate(project.name, :length => 28)
%input{ :value => project.url_to_repo, :class => ['git-url', 'one_click_select', 'text', 'project_list_url'], :readonly => 'readonly' } .data
%p
%a.btn.info{:href => tree_project_ref_path(project, project.root_ref)} Browse code %input{ :value => project.url_to_repo, :class => ['git-url', 'one_click_select', 'text', 'project_list_url'], :readonly => 'readonly' }
%a.btn{:href => project_commits_path(project)} Commits .buttons
%a.btn.info{:href => tree_project_ref_path(project, project.root_ref)} Browse code
%a.btn{:href => project_commits_path(project)} Commits

View file

@ -6,6 +6,12 @@
- @wiki.errors.full_messages.each do |msg| - @wiki.errors.full_messages.each do |msg|
%li= msg %li= msg
.alert-message.block-message.warning
%p
Wiki content is parsed with #{link_to "Markdown", "http://en.wikipedia.org/wiki/Markdown"}.
%br
To add link to new page you can just type
%code [Link Title](page-slug)
.clearfix .clearfix
= f.label :title = f.label :title
.input= f.text_field :title, :class => :xxlarge .input= f.text_field :title, :class => :xxlarge

View file

@ -1,3 +1,3 @@
%h1 Editing page %h3 Editing page
%hr
= render 'form' = render 'form'

View file

@ -1,4 +1,4 @@
%h2 Versions %h3 Versions
%table %table
%thead %thead
%tr %tr

View file

@ -1,10 +1,11 @@
%h3 %h3
= @wiki.title = @wiki.title
= link_to edit_project_wiki_path(@project, @wiki), :class => "right btn small" do %span.right
Edit - if can? current_user, :write_wiki, @project
- if can? current_user, :write_wiki, @project = link_to history_project_wiki_path(@project, @wiki), :class => "btn small" do
= link_to history_project_wiki_path(@project, @wiki), :class => "right btn small" do History
History = link_to edit_project_wiki_path(@project, @wiki), :class => "btn small" do
Edit
%hr %hr
= markdown_to_html @wiki.content = markdown_to_html @wiki.content