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
e3d7ce2c
Commit
e3d7ce2c
authored
Jan 05, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tests are fixed now
parent
0a94640e
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
23 deletions
+19
-23
app/assets/stylesheets/sections/events.scss
app/assets/stylesheets/sections/events.scss
+6
-0
app/controllers/projects_controller.rb
app/controllers/projects_controller.rb
+1
-1
app/views/admin/projects/_form.html.haml
app/views/admin/projects/_form.html.haml
+9
-9
app/views/events/event/_note.html.haml
app/views/events/event/_note.html.haml
+2
-3
spec/models/merge_request_spec.rb
spec/models/merge_request_spec.rb
+1
-1
spec/models/protected_branch_spec.rb
spec/models/protected_branch_spec.rb
+0
-9
No files found.
app/assets/stylesheets/sections/events.scss
View file @
e3d7ce2c
...
...
@@ -47,6 +47,12 @@
.event-info
{
color
:
#666
;
}
.event-note
{
padding-top
:
5px
;
padding-left
:
5px
;
display
:
inline-block
;
color
:
#777
;
}
}
.avatar
{
position
:
relative
;
...
...
app/controllers/projects_controller.rb
View file @
e3d7ce2c
...
...
@@ -101,7 +101,7 @@ class ProjectsController < ProjectResourceController
return
access_denied!
unless
can?
(
current_user
,
:remove_project
,
project
)
# Delete team first in order to prevent multiple gitolite calls
project
.
t
runcate_team
project
.
t
eam
.
truncate
project
.
destroy
...
...
app/views/admin/projects/_form.html.haml
View file @
e3d7ce2c
...
...
@@ -11,18 +11,18 @@
.input
=
f
.
text_field
:name
,
placeholder:
"Example Project"
,
class:
"xxlarge"
-
if
project
.
repo_exists?
%fieldset
.adv_settings
%legend
Advanced settings:
.clearfix
=
f
.
label
:path
do
Path
.input
=
text_field_tag
:ppath
,
@project
.
path_to_repo
,
class:
"xlarge"
,
disabled:
true
=
text_field_tag
:ppath
,
@project
.
repository
.
path_to_repo
,
class:
"xlarge"
,
disabled:
true
-
if
project
.
repo_exists?
.clearfix
=
f
.
label
:default_branch
,
"Default Branch"
.input
=
f
.
select
(
:default_branch
,
repository
.
heads
.
map
(
&
:name
),
{},
style:
"width:210px;"
)
.input
=
f
.
select
(
:default_branch
,
@project
.
repository
.
heads
.
map
(
&
:name
),
{},
style:
"width:210px;"
)
%fieldset
.adv_settings
%legend
Features:
...
...
app/views/events/event/_note.html.haml
View file @
e3d7ce2c
...
...
@@ -19,7 +19,6 @@
=
event
.
project_name
.event-body
%span
.hint
%i
.icon-comment
%span
.event-note
%i
.icon-comment-alt
=
truncate
event
.
target
.
note
,
length:
70
spec/models/merge_request_spec.rb
View file @
e3d7ce2c
...
...
@@ -40,7 +40,7 @@ describe MergeRequest do
let!
(
:merge_request
)
{
create
(
:merge_request
)
}
before
do
merge_request
.
stub
(
:commits
)
{
[
merge_request
.
project
.
commit
]
}
merge_request
.
stub
(
:commits
)
{
[
merge_request
.
project
.
repository
.
commit
]
}
create
(
:note
,
commit_id:
merge_request
.
commits
.
first
.
id
,
noteable_type:
'Commit'
)
create
(
:note
,
noteable:
merge_request
)
end
...
...
spec/models/protected_branch_spec.rb
View file @
e3d7ce2c
...
...
@@ -39,13 +39,4 @@ describe ProtectedBranch do
branch
.
destroy
end
end
describe
'#commit'
do
let
(
:branch
)
{
create
(
:protected_branch
)
}
it
'commits itself to its project'
do
branch
.
project
.
repository
.
should_receive
(
:commit
).
with
(
branch
.
name
)
branch
.
commit
end
end
end
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