Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
4d9c3f31
Commit
4d9c3f31
authored
Jan 27, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bootstrap: btn replacing
parent
fbdb1da2
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
53 additions
and
63 deletions
+53
-63
app/views/admin/projects/_form.html.haml
app/views/admin/projects/_form.html.haml
+1
-1
app/views/admin/projects/index.html.haml
app/views/admin/projects/index.html.haml
+1
-1
app/views/admin/projects/show.html.haml
app/views/admin/projects/show.html.haml
+2
-2
app/views/admin/team_members/_form.html.haml
app/views/admin/team_members/_form.html.haml
+1
-1
app/views/admin/team_members/index.html.haml
app/views/admin/team_members/index.html.haml
+1
-1
app/views/admin/users/_form.html.haml
app/views/admin/users/_form.html.haml
+1
-1
app/views/admin/users/index.html.haml
app/views/admin/users/index.html.haml
+1
-1
app/views/admin/users/show.html.haml
app/views/admin/users/show.html.haml
+2
-2
app/views/deploy_keys/_form.html.haml
app/views/deploy_keys/_form.html.haml
+1
-1
app/views/issues/_form.html.haml
app/views/issues/_form.html.haml
+1
-1
app/views/merge_requests/_head.html.haml
app/views/merge_requests/_head.html.haml
+0
-7
app/views/merge_requests/index.html.haml
app/views/merge_requests/index.html.haml
+12
-14
app/views/notes/_form.html.haml
app/views/notes/_form.html.haml
+25
-26
app/views/profile/design.html.haml
app/views/profile/design.html.haml
+1
-1
app/views/profile/password.html.haml
app/views/profile/password.html.haml
+2
-2
app/views/projects/_form.html.haml
app/views/projects/_form.html.haml
+1
-1
No files found.
app/views/admin/projects/_form.html.haml
View file @
4d9c3f31
...
...
@@ -31,7 +31,7 @@
.clear
%br
.actions
=
f
.
submit
'Save'
,
:class
=>
"
grey-butto
n"
=
f
.
submit
'Save'
,
:class
=>
"
bt
n"
:javascript
$
(
function
(){
...
...
app/views/admin/projects/index.html.haml
View file @
4d9c3f31
...
...
@@ -19,4 +19,4 @@
%td
=
link_to
'Destroy'
,
[
:admin
,
project
],
:confirm
=>
'Are you sure?'
,
:method
=>
:delete
=
paginate
@admin_projects
=
link_to
'New Project'
,
new_admin_project_path
,
:class
=>
"
grey-butto
n"
=
link_to
'New Project'
,
new_admin_project_path
,
:class
=>
"
bt
n"
app/views/admin/projects/show.html.haml
View file @
4d9c3f31
...
...
@@ -31,7 +31,7 @@
=
@admin_project
.
description
%tr
%td
{
:colspan
=>
2
}
=
link_to
'Edit'
,
edit_admin_project_path
(
@admin_project
),
:class
=>
"
grey-butto
n"
=
link_to
'Edit'
,
edit_admin_project_path
(
@admin_project
),
:class
=>
"
bt
n"
.span-14
...
...
@@ -53,7 +53,7 @@
%tr
%td
{
:colspan
=>
3
}
=
submit_tag
'Add'
,
:class
=>
"
positive-button
"
=
submit_tag
'Add'
,
:class
=>
"
btn primary
"
%table
.round-borders
%thead
...
...
app/views/admin/team_members/_form.html.haml
View file @
4d9c3f31
...
...
@@ -27,7 +27,7 @@
=
f
.
select
:repo_access
,
options_for_select
(
Repository
.
access_options
,
@admin_team_member
.
repo_access
),
{},
:class
=>
"repo-access-select"
%br
.actions
=
f
.
submit
'Save'
,
:class
=>
"
grey-butto
n"
=
f
.
submit
'Save'
,
:class
=>
"
bt
n"
:css
form
select
{
...
...
app/views/admin/team_members/index.html.haml
View file @
4d9c3f31
...
...
@@ -25,4 +25,4 @@
%br
=
paginate
@admin_team_members
=
link_to
'New Team Member'
,
new_admin_team_member_path
,
:class
=>
"
grey-butto
n"
=
link_to
'New Team Member'
,
new_admin_team_member_path
,
:class
=>
"
bt
n"
app/views/admin/users/_form.html.haml
View file @
4d9c3f31
...
...
@@ -46,4 +46,4 @@
.clear
%br
.actions
=
f
.
submit
'Save'
,
:class
=>
"
grey-butto
n"
=
f
.
submit
'Save'
,
:class
=>
"
bt
n"
app/views/admin/users/index.html.haml
View file @
4d9c3f31
...
...
@@ -18,4 +18,4 @@
=
paginate
@admin_users
%br
=
link_to
'New User'
,
new_admin_user_path
,
:class
=>
"
grey-butto
n"
=
link_to
'New User'
,
new_admin_user_path
,
:class
=>
"
bt
n"
app/views/admin/users/show.html.haml
View file @
4d9c3f31
...
...
@@ -41,7 +41,7 @@
=
@admin_user
.
twitter
%tr
%td
{
:colspan
=>
2
}
=
link_to
'Edit'
,
edit_admin_user_path
(
@admin_user
),
:class
=>
"
grey-butto
n"
=
link_to
'Edit'
,
edit_admin_user_path
(
@admin_user
),
:class
=>
"
bt
n"
.span-14
%h2
Projects
...
...
@@ -66,4 +66,4 @@
%td
=
link_to
'Edit'
,
edit_admin_team_member_path
(
tm
)
%td
=
link_to
'Cancel'
,
admin_team_member_path
(
tm
),
:confirm
=>
'Are you sure?'
,
:method
=>
:delete
=
link_to
'Add To Another Project'
,
new_admin_team_member_path
(
:team_member
=>
{
:user_id
=>
@admin_user
.
id
}),
:class
=>
"
grey-butto
n"
=
link_to
'Add To Another Project'
,
new_admin_team_member_path
(
:team_member
=>
{
:user_id
=>
@admin_user
.
id
}),
:class
=>
"
bt
n"
app/views/deploy_keys/_form.html.haml
View file @
4d9c3f31
...
...
@@ -14,5 +14,5 @@
%td
=
f
.
text_area
:key
,
:style
=>
"width:300px; height:130px"
%br
.merge-tabs
=
f
.
submit
'Save'
,
:class
=>
"p
ositive-butto
n"
=
f
.
submit
'Save'
,
:class
=>
"p
rimary bt
n"
app/views/issues/_form.html.haml
View file @
4d9c3f31
...
...
@@ -44,7 +44,7 @@
%br
%br
.merge-tabs
=
f
.
submit
'Save'
,
:class
=>
"p
ositive-butto
n"
=
f
.
submit
'Save'
,
:class
=>
"p
rimary bt
n"
-
unless
@issue
.
new_record?
.right
...
...
app/views/merge_requests/_head.html.haml
View file @
4d9c3f31
...
...
@@ -2,11 +2,4 @@
=
link_to
project_merge_requests_path
(
@project
),
:class
=>
"tab
#{
'active'
if
current_page?
(
project_merge_requests_path
(
@project
))
}
"
do
%span
Merge Requests
-
if
current_page?
(
project_merge_requests_path
(
@project
))
-
if
can?
current_user
,
:write_merge_request
,
@project
=
link_to
new_project_merge_request_path
(
@project
),
:class
=>
"add_new"
,
:title
=>
"New Merge request"
do
Add new
app/views/merge_requests/index.html.haml
View file @
4d9c3f31
=
render
"merge_requests/head"
.left.issues_filter
=
form_tag
project_merge_requests_path
(
@project
),
:method
=>
:get
do
.left
...
...
@@ -14,17 +12,17 @@
.clear
%hr
-
if
@merge_requests
.
count
>
0
%div
{
:class
=>
"update-data ui-box ui-box-small ui-box-big"
}
.data
=
render
@merge_requests
.clear
%br
-
unless
@merge_requests
.
count
>
0
||
params
[
:f
]
==
"2"
.notice_holder
%li
Merge Requests do not exist yet.
.row
.span10
-
if
@merge_requests
.
count
>
0
%div
{
:class
=>
"update-data ui-box ui-box-small ui-box-big"
}
.data
=
render
@merge_requests
.span4
-
if
can?
current_user
,
:write_merge_request
,
@project
%li
You can add a new one by clicking on "Add New" button
.alert-message.block-message.info
%p
You can open a new merge request.
-
if
current_page?
(
project_merge_requests_path
(
@project
))
=
link_to
new_project_merge_request_path
(
@project
),
:class
=>
"btn small"
,
:title
=>
"New Merge request"
do
Add new
app/views/notes/_form.html.haml
View file @
4d9c3f31
%div
=
form_for
[
@project
,
@note
],
:remote
=>
"true"
,
:multipart
=>
true
do
|
f
|
%h3
Leave a note
=
form_for
[
@project
,
@note
],
:remote
=>
"true"
,
:multipart
=>
true
do
|
f
|
-
if
@note
.
errors
.
any?
.errors.error
-
@note
.
errors
.
full_messages
.
each
do
|
msg
|
%div
=
msg
-
if
@note
.
errors
.
any?
.alert-message.block-message.error
-
@note
.
errors
.
full_messages
.
each
do
|
msg
|
%div
=
msg
=
f
.
hidden_field
:noteable_id
=
f
.
hidden_field
:noteable_type
=
f
.
text_area
:note
,
:size
=>
255
=
f
.
hidden_field
:noteable_id
=
f
.
hidden_field
:noteable_type
=
f
.
text_area
:note
,
:size
=>
255
.row
.span6
%h5
Notify via email:
.clearfix
=
label_tag
:notify
do
=
check_box_tag
:notify
,
1
,
@note
.
noteable_type
!=
"Commit"
%span
Project team
.row
.span6
%h5
Notify via email:
.clearfix
=
label_tag
:notify
do
=
check_box_tag
:notify
,
1
,
@note
.
noteable_type
!=
"Commit"
%span
Project team
-
if
@note
.
noteable_type
==
"Commit"
=
label_tag
:notify_author
do
=
check_box_tag
:notify_author
,
1
,
@note
.
noteable_type
==
"Commit"
%span
Commit author
.span6
%h5
Attachment:
.clearfix
=
f
.
label
:attachment
,
"Any file, < 10 MB"
.input
=
f
.
file_field
:attachment
,
:class
=>
"input-file"
-
if
@note
.
noteable_type
==
"Commit"
=
label_tag
:notify_author
do
=
check_box_tag
:notify_author
,
1
,
@note
.
noteable_type
==
"Commit"
%span
Commit author
.span6
%h5
Attachment:
.clearfix
=
f
.
label
:attachment
,
"Any file, < 10 MB"
.input
=
f
.
file_field
:attachment
,
:class
=>
"input-file"
=
f
.
submit
'Add note'
,
:class
=>
"btn primary"
,
:id
=>
"submit_note"
=
f
.
submit
'Add note'
,
:class
=>
"btn primary"
,
:id
=>
"submit_note"
app/views/profile/design.html.haml
View file @
4d9c3f31
...
...
@@ -18,5 +18,5 @@
Dark code preview
.clear
.buttons
=
f
.
submit
'Save'
,
:class
=>
"
grey-butto
n"
=
f
.
submit
'Save'
,
:class
=>
"
bt
n"
app/views/profile/password.html.haml
View file @
4d9c3f31
...
...
@@ -18,7 +18,7 @@
%br
=
f
.
password_field
:password_confirmation
.buttons
=
f
.
submit
'Save'
,
:class
=>
"
grey-butto
n"
=
f
.
submit
'Save'
,
:class
=>
"
bt
n"
.clear
.ui-box.width-100p
...
...
@@ -40,5 +40,5 @@
-
if
current_user
.
private_token
=
f
.
submit
'Reset'
,
:confirm
=>
"Are you sure?"
,
:class
=>
"grey-button"
-
else
=
f
.
submit
'Generate'
,
:class
=>
"
positive-butto
n"
=
f
.
submit
'Generate'
,
:class
=>
"
bt
n"
app/views/projects/_form.html.haml
View file @
4d9c3f31
...
...
@@ -47,7 +47,7 @@
%h3
.prepend-top
Updating project
&
repository. Please wait for few minutes
.merge-tabs
=
f
.
submit
'Save'
,
:class
=>
"
grey-button
"
=
f
.
submit
'Save'
,
:class
=>
"
btn primary
"
-
unless
@project
.
new_record?
.right
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment