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
3f91da68
Commit
3f91da68
authored
Feb 18, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed widget counts, improved styles
parent
fa7bd43a
Changes
19
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
102 additions
and
80 deletions
+102
-80
app/assets/stylesheets/common.scss
app/assets/stylesheets/common.scss
+5
-0
app/views/deploy_keys/_show.html.haml
app/views/deploy_keys/_show.html.haml
+12
-7
app/views/deploy_keys/index.html.haml
app/views/deploy_keys/index.html.haml
+2
-2
app/views/deploy_keys/new.html.haml
app/views/deploy_keys/new.html.haml
+2
-1
app/views/hooks/index.html.haml
app/views/hooks/index.html.haml
+9
-5
app/views/hooks/new.html.haml
app/views/hooks/new.html.haml
+5
-6
app/views/keys/_show.html.haml
app/views/keys/_show.html.haml
+13
-8
app/views/keys/index.html.haml
app/views/keys/index.html.haml
+3
-4
app/views/profile/password.html.haml
app/views/profile/password.html.haml
+3
-2
app/views/projects/_form.html.haml
app/views/projects/_form.html.haml
+1
-1
app/views/projects/files.html.haml
app/views/projects/files.html.haml
+11
-10
app/views/repositories/_feed.html.haml
app/views/repositories/_feed.html.haml
+10
-8
app/views/repositories/branches.html.haml
app/views/repositories/branches.html.haml
+1
-1
app/views/repositories/show.html.haml
app/views/repositories/show.html.haml
+5
-6
app/views/repositories/tags.html.haml
app/views/repositories/tags.html.haml
+10
-8
app/views/snippets/_snippet.html.haml
app/views/snippets/_snippet.html.haml
+4
-5
app/views/snippets/index.html.haml
app/views/snippets/index.html.haml
+1
-1
app/views/team_members/show.html.haml
app/views/team_members/show.html.haml
+2
-2
app/views/widgets/_project_member.html.haml
app/views/widgets/_project_member.html.haml
+3
-3
No files found.
app/assets/stylesheets/common.scss
View file @
3f91da68
...
...
@@ -268,6 +268,7 @@ img.lil_av {
.ui-box
{
margin-bottom
:
40px
;
@include
round-borders-all
(
4px
);
border-color
:
#ddd
;
...
...
@@ -322,3 +323,7 @@ img.lil_av {
width
:
20px
;
}
}
.borders
{
border
:
1px
solid
#ccc
;
}
app/views/deploy_keys/_show.html.haml
View file @
3f91da68
%a
.update-item
{
:href
=>
project_deploy_key_path
(
key
.
project
,
key
)}
%span
.update-title
=
key
.
title
%span
.update-author
Added
=
time_ago_in_words
(
key
.
created_at
)
ago
%tr
%td
%a
{
:href
=>
project_deploy_key_path
(
key
.
project
,
key
)}
=
key
.
title
%td
%span
.update-author
Added
=
time_ago_in_words
(
key
.
created_at
)
ago
%td
=
link_to
'Remove'
,
project_deploy_key_path
(
key
.
project
,
key
),
:confirm
=>
'Are you sure?'
,
:method
=>
:delete
,
:class
=>
"danger btn delete-key small"
app/views/deploy_keys/index.html.haml
View file @
3f91da68
...
...
@@ -5,6 +5,6 @@
=
link_to
new_project_deploy_key_path
(
@project
),
:class
=>
"btn small"
,
:title
=>
"New Deploy Key"
do
Add Deploy Key
%
ul
.unstyled
%
table
.zebra-striped.borders
-
@keys
.
each
do
|
key
|
%li
=
render
(
:partial
=>
'show'
,
:locals
=>
{
:key
=>
key
})
=
render
(
:partial
=>
'show'
,
:locals
=>
{
:key
=>
key
})
app/views/deploy_keys/new.html.haml
View file @
3f91da68
=
render
"repositories/head"
%h2
New Deploy key
%h3
New Deploy key
%hr
=
render
'form'
app/views/hooks/index.html.haml
View file @
3f91da68
...
...
@@ -6,13 +6,17 @@
=
link_to
new_project_hook_path
(
@project
),
:class
=>
"btn small"
,
:title
=>
"New Web Hook"
do
Add Post Receive Hook
%
ul
.unstyled
%
table
.zebra-striped.borders
-
@hooks
.
each
do
|
hook
|
%li
.wll
=
link_to
project_hook_path
(
@project
,
hook
)
do
=
hook
.
url
%tr
%td
=
link_to
project_hook_path
(
@project
,
hook
)
do
=
hook
.
url
%td
=
link_to
'Remove'
,
project_hook_path
(
@project
,
hook
),
:confirm
=>
'Are you sure?'
,
:method
=>
:delete
,
:class
=>
"danger btn small"
.alert-message.block-message.info
.alert-message.block-message
We send some data with POST request when someone makes git push
.well
=
render
"data_ex"
app/views/hooks/new.html.haml
View file @
3f91da68
...
...
@@ -4,10 +4,9 @@
%ul
-
@hook
.
errors
.
full_messages
.
each
do
|
msg
|
%li
=
msg
=
f
.
label
:url
,
"URL:"
=
f
.
text_field
:url
,
:class
=>
"text_field"
.clear
%br
.merge-tabs
=
f
.
submit
"Save"
,
:class
=>
"grey-button"
.clearfix
=
f
.
label
:url
,
"URL:"
.input
=
f
.
text_field
:url
,
:class
=>
"text_field"
.actions
=
f
.
submit
"Save"
,
:class
=>
"btn"
app/views/keys/_show.html.haml
View file @
3f91da68
%li
.wll
=
link_to
key_path
(
key
)
do
%p
%strong
=
key
.
title
%span
.right.cgray
Added
=
time_ago_in_words
(
key
.
created_at
)
ago
%tr
%td
=
link_to
key_path
(
key
)
do
%p
%strong
=
key
.
title
%td
%span
.right.cgray
Added
=
time_ago_in_words
(
key
.
created_at
)
ago
%td
=
link_to
'Remove'
,
key
,
:confirm
=>
'Are you sure?'
,
:method
=>
:delete
,
:class
=>
"btn small danger delete-key right"
app/views/keys/index.html.haml
View file @
3f91da68
...
...
@@ -4,7 +4,6 @@
%hr
%div
#keys-table
%ul
.unstyled
-
@keys
.
each
do
|
key
|
=
render
(
:partial
=>
'show'
,
:locals
=>
{
:key
=>
key
})
%table
#keys-table
.zebra-striped.borders
-
@keys
.
each
do
|
key
|
=
render
(
:partial
=>
'show'
,
:locals
=>
{
:key
=>
key
})
app/views/profile/password.html.haml
View file @
3f91da68
...
...
@@ -2,9 +2,10 @@
%hr
=
form_for
@user
,
:url
=>
profile_password_path
,
:method
=>
:put
do
|
f
|
.data
%p
After successfull password update you will be redirected to login page where you should login with new password
.alert-message.block-message.warning
%p
After successfull password update you will be redirected to login page where you should login with new password
-
if
@user
.
errors
.
any?
#error_explanation
.alert-message.block-message.error
%ul
-
@user
.
errors
.
full_messages
.
each
do
|
msg
|
%li
=
msg
...
...
app/views/projects/_form.html.haml
View file @
3f91da68
...
...
@@ -27,7 +27,7 @@
=
f
.
label
:default_branch
,
"Default Branch"
.input
=
f
.
select
(
:default_branch
,
@project
.
heads
.
map
(
&
:name
),
{},
:style
=>
"width:210px;"
)
.
well
.
alert-message.block-message.warning
%h5
Features
.clearfix
...
...
app/views/projects/files.html.haml
View file @
3f91da68
=
render
"project_head"
-
unless
@notes
.
empty?
%div
.update-data.ui-box.ui-box-small
.data
-
@notes
.
each
do
|
note
|
%a
.update-item
{
:href
=>
note
.
attachment
.
url
}
=
image_tag
gravatar_icon
(
note
.
author_email
),
:class
=>
"left"
,
:width
=>
16
%span
.update-title
{
:style
=>
"margin-bottom:0px;"
}
%table
.zebra-striped.borders
-
@notes
.
each
do
|
note
|
%tr
%td
%a
{
:href
=>
note
.
attachment
.
url
}
=
image_tag
gravatar_icon
(
note
.
author_email
),
:class
=>
"left"
,
:width
=>
16
=
note
.
attachment_identifier
%span
.update-author.right
Added
=
time_ago_in_words
(
note
.
created_at
)
ago
%td
Added
=
time_ago_in_words
(
note
.
created_at
)
ago
-
else
.notice_holder
%li
All files attached to project wall, issues etc will be displayed here
...
...
app/views/repositories/_feed.html.haml
View file @
3f91da68
-
commit
=
update
.wll
=
link_to
project_commits_path
(
@project
,
:ref
=>
commit
.
head
.
name
)
do
%p
%strong
.label
%tr
%td
=
link_to
project_commits_path
(
@project
,
:ref
=>
commit
.
head
.
name
)
do
%strong
=
commit
.
head
.
name
%br
%td
%div
%code
=
commit
.
id
.
to_s
[
0
..
10
]
=
image_tag
gravatar_icon
(
commit
.
author_email
),
:class
=>
""
,
:width
=>
16
=
truncate
(
commit
.
safe_message
,
:length
=>
40
)
%span
.right.cgray
=
time_ago_in_words
(
commit
.
committed_date
)
ago
%td
%span
.right.cgray
=
time_ago_in_words
(
commit
.
committed_date
)
ago
app/views/repositories/branches.html.haml
View file @
3f91da68
=
render
"repositories/branches_head"
-
unless
@branches
.
empty?
%table
%table
.zebra-striped.borders
%thead
%tr
%th
Name
...
...
app/views/repositories/show.html.haml
View file @
3f91da68
...
...
@@ -24,11 +24,10 @@
.ui-box
%h5
.cgray
Recent Branches
%h5
.cgray
Recently updated branches
%ul
.unstyled
-
@activities
.
each
do
|
update
|
=
render
"repositories/feed"
,
:update
=>
update
,
:project
=>
@project
%table
.zebra-striped.borders
-
@activities
.
each
do
|
update
|
=
render
"repositories/feed"
,
:update
=>
update
,
:project
=>
@project
app/views/repositories/tags.html.haml
View file @
3f91da68
=
render
"head"
-
unless
@tags
.
empty?
%
ul
.unstyled
%
table
.zebra-striped.borders
-
@tags
.
each
do
|
tag
|
%li
.wll
.span3.right
%tr
%td
=
tag
.
name
%code
=
tag
.
commit
.
id
.
to_s
[
0
..
10
]
%span
.update-author.right
=
time_ago_in_words
(
tag
.
commit
.
committed_date
)
ago
%td
-
if
can?
current_user
,
:download_code
,
@project
=
link_to
"Download"
,
archive_project_repository_path
(
@project
,
:ref
=>
tag
.
name
),
:class
=>
"btn small"
=
link_to
"Commits"
,
project_commits_path
(
@project
,
:ref
=>
tag
.
name
),
:class
=>
"btn small"
=
tag
.
name
%code
=
tag
.
commit
.
id
.
to_s
[
0
..
10
]
%span
.update-author.right
=
time_ago_in_words
(
tag
.
commit
.
committed_date
)
ago
-
else
%h3
No tags
app/views/snippets/_snippet.html.haml
View file @
3f91da68
%li
.entry
%a
{
:href
=>
project_snippet_path
(
snippet
.
project
,
snippet
)}
%p
%strong
=
truncate
(
snippet
.
title
,
:length
=>
60
)
%tr
%td
%a
{
:href
=>
project_snippet_path
(
snippet
.
project
,
snippet
)}
=
truncate
(
snippet
.
title
,
:length
=>
60
)
%span
.right.cgray
=
snippet
.
file_name
app/views/snippets/index.html.haml
View file @
3f91da68
...
...
@@ -9,4 +9,4 @@
To add new snippet - click on button.
-
unless
@snippets
.
fresh
.
empty?
%
ul
.unstyled
=
render
@snippets
.
fresh
%
table
.zebra-striped.borders
=
render
@snippets
.
fresh
app/views/team_members/show.html.haml
View file @
3f91da68
...
...
@@ -12,8 +12,8 @@
=
link_to
team_project_path
(
@project
),
:class
=>
""
do
←
To team list
%
h
r
%table
.
no-
borders
%
b
r
%table
.
zebra-striped.
borders
%tr
%td
Name
%td
=
user
.
name
...
...
app/views/widgets/_project_member.html.haml
View file @
3f91da68
...
...
@@ -11,14 +11,14 @@
%p
-
if
@project
.
issues_enabled
Assigned issues:
=
current_user
.
assigned_issues
.
count
=
current_user
.
assigned_issues
.
opened
.
count
%br
-
if
@project
.
merge_requests_enabled
Assigned merge request:
=
current_user
.
assigned_merge_requests
.
count
=
current_user
.
assigned_merge_requests
.
opened
.
count
%br
Your merge requests:
=
current_user
.
assigned_merge_requests
.
count
=
current_user
.
assigned_merge_requests
.
opened
.
count
.link_holder
=
link_to
project_team_member_path
(
@project
,
member
),
:title
=>
current_user
.
name
do
=
"Access:
#{
member
.
project_access_human
}
»"
...
...
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