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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
iv
gitlab-ce
Commits
23d95085
Commit
23d95085
authored
Apr 09, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Milestone basic scaffold
parent
667edcdd
Changes
28
Hide whitespace changes
Inline
Side-by-side
Showing
28 changed files
with
424 additions
and
36 deletions
+424
-36
app/assets/javascripts/issues.js
app/assets/javascripts/issues.js
+2
-0
app/assets/stylesheets/common.scss
app/assets/stylesheets/common.scss
+7
-0
app/assets/stylesheets/jquery_ui.scss
app/assets/stylesheets/jquery_ui.scss
+31
-0
app/assets/stylesheets/main.scss
app/assets/stylesheets/main.scss
+6
-0
app/controllers/issues_controller.rb
app/controllers/issues_controller.rb
+6
-9
app/controllers/milestones_controller.rb
app/controllers/milestones_controller.rb
+94
-0
app/decorators/milestone_decorator.rb
app/decorators/milestone_decorator.rb
+4
-0
app/models/ability.rb
app/models/ability.rb
+2
-0
app/models/issue.rb
app/models/issue.rb
+1
-0
app/models/milestone.rb
app/models/milestone.rb
+29
-0
app/models/project.rb
app/models/project.rb
+1
-0
app/views/issues/_form.html.haml
app/views/issues/_form.html.haml
+12
-5
app/views/issues/_head.html.haml
app/views/issues/_head.html.haml
+4
-1
app/views/issues/_issues.html.haml
app/views/issues/_issues.html.haml
+3
-0
app/views/issues/edit.html.haml
app/views/issues/edit.html.haml
+1
-0
app/views/issues/index.html.haml
app/views/issues/index.html.haml
+23
-15
app/views/issues/new.html.haml
app/views/issues/new.html.haml
+1
-0
app/views/milestones/_form.html.haml
app/views/milestones/_form.html.haml
+54
-0
app/views/milestones/_milestone.html.haml
app/views/milestones/_milestone.html.haml
+21
-0
app/views/milestones/edit.html.haml
app/views/milestones/edit.html.haml
+7
-0
app/views/milestones/index.html.haml
app/views/milestones/index.html.haml
+25
-0
app/views/milestones/new.html.haml
app/views/milestones/new.html.haml
+1
-0
app/views/milestones/show.html.haml
app/views/milestones/show.html.haml
+50
-0
config/routes.rb
config/routes.rb
+1
-0
db/migrate/20120408180246_create_milestones.rb
db/migrate/20120408180246_create_milestones.rb
+12
-0
db/migrate/20120408181910_add_milestone_id_to_issue.rb
db/migrate/20120408181910_add_milestone_id_to_issue.rb
+5
-0
db/schema.rb
db/schema.rb
+16
-6
spec/models/milestone_spec.rb
spec/models/milestone_spec.rb
+5
-0
No files found.
app/assets/javascripts/issues.js
View file @
23d95085
...
...
@@ -2,6 +2,7 @@ function switchToNewIssue(form){
$
(
"
.issues_content
"
).
hide
(
"
fade
"
,
{
direction
:
"
left
"
},
150
,
function
(){
$
(
"
.issues_content
"
).
after
(
form
);
$
(
'
select#issue_assignee_id
'
).
chosen
();
$
(
'
select#issue_milestone_id
'
).
chosen
();
$
(
"
#new_issue_dialog
"
).
show
(
"
fade
"
,
{
direction
:
"
right
"
},
150
);
$
(
'
.top-tabs .add_new
'
).
hide
();
});
...
...
@@ -11,6 +12,7 @@ function switchToEditIssue(form){
$
(
"
.issues_content
"
).
hide
(
"
fade
"
,
{
direction
:
"
left
"
},
150
,
function
(){
$
(
"
.issues_content
"
).
after
(
form
);
$
(
'
select#issue_assignee_id
'
).
chosen
();
$
(
'
select#issue_milestone_id
'
).
chosen
();
$
(
"
#edit_issue_dialog
"
).
show
(
"
fade
"
,
{
direction
:
"
right
"
},
150
);
$
(
'
.add_new
'
).
hide
();
});
...
...
app/assets/stylesheets/common.scss
View file @
23d95085
...
...
@@ -45,6 +45,13 @@ a {
&
:hover
{
}
&
.primary
{
background
:
$link_color
;
&
:hover
{
background
:
$blue_link
;
}
}
}
a
:focus
{
...
...
app/assets/stylesheets/jquery_ui.scss
0 → 100644
View file @
23d95085
/**
* JQUERY UI datepicker
*
*/
.ui-datepicker
{
border-color
:
#eee
;
padding
:
20px
;
.ui-state-default
{
background
:
#f1f1f1
;
padding
:
5px
;
}
.ui-state-active
{
background
:
#fff
;
}
}
/**
* JQUERY UI progressbar
*
*/
.ui-progressbar
{
border
:
1px
solid
#ddd
;
height
:
6px
;
.ui-progressbar-value
{
background-color
:
#62C462
;
//$blue_link;
margin
:
0
;
}
}
app/assets/stylesheets/main.scss
View file @
23d95085
...
...
@@ -116,3 +116,9 @@ $hover: #FDF5D9;
*
*/
@import
"highlight.black.scss"
;
/**
* JQUERY UI ext
*
*/
@import
"jquery_ui.scss"
;
app/controllers/issues_controller.rb
View file @
23d95085
...
...
@@ -15,7 +15,7 @@ class IssuesController < ApplicationController
before_filter
:authorize_write_issue!
,
:only
=>
[
:new
,
:create
]
# Allow modify issue
before_filter
:authorize_modify_issue!
,
:only
=>
[
:close
,
:edit
,
:update
,
:sort
]
before_filter
:authorize_modify_issue!
,
:only
=>
[
:close
,
:edit
,
:update
]
# Allow destroy issue
before_filter
:authorize_admin_issue!
,
:only
=>
[
:destroy
]
...
...
@@ -28,8 +28,10 @@ class IssuesController < ApplicationController
when
2
then
@project
.
issues
.
closed
when
3
then
@project
.
issues
.
opened
.
assigned
(
current_user
)
else
@project
.
issues
.
opened
end
.
page
(
params
[
:page
]).
per
(
20
)
end
@issues
=
@issues
.
where
(
:milestone_id
=>
params
[
:milestone_id
])
if
params
[
:milestone_id
].
present?
@issues
=
@issues
.
page
(
params
[
:page
]).
per
(
20
)
@issues
=
@issues
.
includes
(
:author
,
:project
).
order
(
"critical, updated_at"
)
respond_to
do
|
format
|
...
...
@@ -51,13 +53,6 @@ class IssuesController < ApplicationController
def
show
@note
=
@project
.
notes
.
new
(
:noteable
=>
@issue
)
@commits
=
if
@issue
.
branch_name
&&
@project
.
repo
.
heads
.
map
(
&
:name
).
include?
(
@issue
.
branch_name
)
@project
.
repo
.
commits_between
(
"master"
,
@issue
.
branch_name
)
else
[]
end
respond_to
do
|
format
|
format
.
html
format
.
js
...
...
@@ -102,6 +97,8 @@ class IssuesController < ApplicationController
end
def
sort
return
render_404
unless
can?
(
current_user
,
:admin_issue
,
@project
)
@issues
=
@project
.
issues
.
where
(
:id
=>
params
[
'issue'
])
@issues
.
each
do
|
issue
|
issue
.
position
=
params
[
'issue'
].
index
(
issue
.
id
.
to_s
)
+
1
...
...
app/controllers/milestones_controller.rb
0 → 100644
View file @
23d95085
class
MilestonesController
<
ApplicationController
before_filter
:authenticate_user!
before_filter
:project
before_filter
:module_enabled
before_filter
:milestone
,
:only
=>
[
:edit
,
:update
,
:destroy
,
:show
]
layout
"project"
# Authorize
before_filter
:add_project_abilities
# Allow read any milestone
before_filter
:authorize_read_milestone!
# Allow admin milestone
before_filter
:authorize_admin_milestone!
,
:except
=>
[
:index
,
:show
]
respond_to
:html
def
index
@milestones
=
case
params
[
:f
].
to_i
when
1
;
@project
.
milestones
else
@project
.
milestones
.
active
end
@milestones
=
@milestones
.
includes
(
:project
).
order
(
"due_date"
)
@milestones
=
@milestones
.
page
(
params
[
:page
]).
per
(
20
)
end
def
new
@milestone
=
@project
.
milestones
.
new
respond_with
(
@milestone
)
end
def
edit
respond_with
(
@milestone
)
end
def
show
respond_to
do
|
format
|
format
.
html
format
.
js
end
end
def
create
@milestone
=
@project
.
milestones
.
new
(
params
[
:milestone
])
if
@milestone
.
save
redirect_to
project_milestone_path
(
@project
,
@milestone
)
else
render
"new"
end
end
def
update
@milestone
.
update_attributes
(
params
[
:milestone
])
respond_to
do
|
format
|
format
.
js
format
.
html
do
if
@milestone
.
valid?
redirect_to
[
@project
,
@milestone
]
else
render
:edit
end
end
end
end
def
destroy
return
access_denied!
unless
can?
(
current_user
,
:admin_milestone
,
@milestone
)
@milestone
.
destroy
respond_to
do
|
format
|
format
.
html
{
redirect_to
project_milestones_path
}
format
.
js
{
render
:nothing
=>
true
}
end
end
protected
def
milestone
@milestone
||=
@project
.
milestones
.
find
(
params
[
:id
])
end
def
authorize_admin_milestone!
return
render_404
unless
can?
(
current_user
,
:admin_milestone
,
@project
)
end
def
module_enabled
return
render_404
unless
@project
.
issues_enabled
end
end
app/decorators/milestone_decorator.rb
0 → 100644
View file @
23d95085
class
MilestoneDecorator
<
ApplicationDecorator
decorates
:milestone
end
app/models/ability.rb
View file @
23d95085
...
...
@@ -17,6 +17,7 @@ class Ability
:read_project
,
:read_wiki
,
:read_issue
,
:read_milestone
,
:read_snippet
,
:read_team_member
,
:read_merge_request
,
...
...
@@ -42,6 +43,7 @@ class Ability
:modify_merge_request
,
:admin_project
,
:admin_issue
,
:admin_milestone
,
:admin_snippet
,
:admin_team_member
,
:admin_merge_request
,
...
...
app/models/issue.rb
View file @
23d95085
class
Issue
<
ActiveRecord
::
Base
belongs_to
:project
belongs_to
:milestone
belongs_to
:author
,
:class_name
=>
"User"
belongs_to
:assignee
,
:class_name
=>
"User"
has_many
:notes
,
:as
=>
:noteable
,
:dependent
=>
:destroy
...
...
app/models/milestone.rb
0 → 100644
View file @
23d95085
class
Milestone
<
ActiveRecord
::
Base
belongs_to
:project
has_many
:issues
validates_presence_of
:project_id
validates_presence_of
:title
def
self
.
active
where
(
"due_date > ? "
,
Date
.
today
)
end
def
percent_complete
@percent_complete
||=
begin
total_i
=
self
.
issues
.
count
closed_i
=
self
.
issues
.
closed
.
count
if
total_i
>
0
(
closed_i
*
100
)
/
total_i
else
100
end
rescue
=>
ex
0
end
end
def
expires_at
"expires at
#{
due_date
.
stamp
(
"Aug 21, 2011"
)
}
"
if
due_date
end
end
app/models/project.rb
View file @
23d95085
...
...
@@ -12,6 +12,7 @@ class Project < ActiveRecord::Base
has_many
:events
,
:dependent
=>
:destroy
has_many
:merge_requests
,
:dependent
=>
:destroy
has_many
:issues
,
:dependent
=>
:destroy
,
:order
=>
"position"
has_many
:milestones
,
:dependent
=>
:destroy
has_many
:users_projects
,
:dependent
=>
:destroy
has_many
:notes
,
:dependent
=>
:destroy
has_many
:snippets
,
:dependent
=>
:destroy
...
...
app/views/issues/_form.html.haml
View file @
23d95085
...
...
@@ -9,18 +9,25 @@
%li
=
msg
.clearfix
=
f
.
label
:title
,
"Issue Subject"
.input
=
f
.
text_field
:title
,
:maxlength
=>
255
,
:class
=>
"xxlarge"
=
f
.
label
:title
,
"Issue Subject *"
.input
=
f
.
text_field
:title
,
:maxlength
=>
255
,
:class
=>
"xxlarge"
.clearfix
=
f
.
label
:assignee_id
,
"Assign to *"
.input
=
f
.
select
(
:assignee_id
,
@project
.
users
.
all
.
collect
{
|
p
|
[
p
.
name
,
p
.
id
]
},
{
:include_blank
=>
"Assign to user"
})
.clearfix
=
f
.
label
:description
,
"Issue Details"
.input
=
f
.
text_area
:description
,
:maxlength
=>
2000
,
:class
=>
"xxlarge"
,
:rows
=>
10
%p
.hint
Markdown is enabled.
.clearfix
=
f
.
label
:assignee_id
.input
=
f
.
select
(
:assignee_id
,
@project
.
users
.
all
.
collect
{
|
p
|
[
p
.
name
,
p
.
id
]
},
{
:include_blank
=>
"Assign to user"
})
=
f
.
label
:milestone_id
.input
=
f
.
select
(
:milestone_id
,
@project
.
milestones
.
active
.
all
.
collect
{
|
p
|
[
p
.
title
,
p
.
id
]
},
{
:include_blank
=>
"Select milestone"
})
.clearfix
=
f
.
label
:critical
,
"Critical"
...
...
app/views/issues/_head.html.haml
View file @
23d95085
.tabs
%li
{
:class
=>
"#{'active' if current_page?(project_issues_path(@project))}"
}
=
link_to
project_issues_path
(
@project
),
:class
=>
"tab"
do
Issues
Browse Issues
%li
{
:class
=>
"#{'active' if current_page?(project_milestones_path(@project))}"
}
=
link_to
project_milestones_path
(
@project
),
:class
=>
"tab"
do
Milestones
app/views/issues/_issues.html.haml
View file @
23d95085
...
...
@@ -10,3 +10,6 @@
.span10
=
paginate
@issues
,
:remote
=>
true
,
:theme
=>
"gitlab"
.span4.right
%span
.cgray.right
#{
@issues
.
total_count
}
issues for this filter
-
else
%li
%p
.padded
Nothing to show here
app/views/issues/edit.html.haml
View file @
23d95085
...
...
@@ -3,5 +3,6 @@
:javascript
$
(
function
(){
$
(
'
select#issue_assignee_id
'
).
chosen
();
$
(
'
select#issue_milestone_id
'
).
chosen
();
});
app/views/issues/index.html.haml
View file @
23d95085
=
render
"issues/head"
.issues_content
%h3
Issues
...
...
@@ -5,14 +6,22 @@
=
link_to
project_issues_path
(
@project
,
:atom
,
{
:private_token
=>
current_user
.
private_token
})
do
=
image_tag
"Rss-UI.PNG"
,
:width
=>
16
,
:title
=>
"feed"
-
if
can?
current_user
,
:write_issue
,
@project
=
link_to
new_project_issue_path
(
@project
),
:class
=>
"right btn small"
,
:title
=>
"New Issue"
,
:remote
=>
true
do
New Issue
.right
.span4.left
=
form_tag
search_project_issues_path
(
@project
),
:method
=>
:get
,
:remote
=>
true
,
:id
=>
"issue_search_form"
,
:class
=>
:left
do
=
hidden_field_tag
:project_id
,
@project
.
id
,
{
:id
=>
'project_id'
}
=
hidden_field_tag
:status
,
params
[
:f
]
=
search_field_tag
:issue_search
,
nil
,
{
:placeholder
=>
'Search'
,
:class
=>
'issue_search'
}
-
if
can?
current_user
,
:write_issue
,
@project
.span2.left
=
link_to
new_project_issue_path
(
@project
),
:class
=>
"right btn small"
,
:title
=>
"New Issue"
,
:remote
=>
true
do
New Issue
%br
%div
#issues-table-holder
.ui-box
.title
.row
.span
8
.span
6
%ul
.pills.left
%li
{
:class
=>
(
"active"
if
(
params
[
:f
]
==
"0"
||
!
params
[
:f
]))}
=
link_to
project_issues_path
(
@project
,
:f
=>
0
)
do
...
...
@@ -27,17 +36,13 @@
=
link_to
project_issues_path
(
@project
,
:f
=>
1
)
do
All
.span3.right
=
form_tag
search_project_issues_path
(
@project
),
:method
=>
:get
,
:remote
=>
true
,
:id
=>
"issue_search_form"
,
:class
=>
:right
do
=
hidden_field_tag
:project_id
,
@project
.
id
,
{
:id
=>
'project_id'
}
=
hidden_field_tag
:status
,
params
[
:f
]
=
search_field_tag
:issue_search
,
nil
,
{
:placeholder
=>
'Search'
,
:class
=>
'issue_search'
}
.span6.right
=
form_tag
project_issues_path
(
@project
),
:method
=>
:get
,
:class
=>
:right
do
=
select_tag
(
:milestone_id
,
options_from_collection_for_select
(
@project
.
milestones
.
order
(
"id desc"
).
all
,
"id"
,
"title"
,
params
[
:milestone_id
]),
:prompt
=>
"Select milestone"
)
%ul
#issues-table
.unstyled
=
render
"issues"
-
if
@issues
.
blank?
%li
%p
.padded
Nothing to show here
:javascript
var
href
=
$
(
'
.issue_search
'
).
parent
().
attr
(
'
action
'
);
var
last_terms
=
''
;
...
...
@@ -65,9 +70,8 @@
$
(
'
#issues-table
'
).
sortable
({
axis
:
'
y
'
,
dropOnEmpty
:
false
,
handle
:
'
.handle
'
,
cursor
:
'
crosshair
'
,
items
:
'
tr
'
,
handle
:
'
.avatar
'
,
items
:
'
li
'
,
opacity
:
0.4
,
scroll
:
true
,
update
:
function
(){
...
...
@@ -85,4 +89,8 @@
$
(
function
(){
setSortable
();
$
(
"
#milestone_id
"
).
chosen
();
$
(
"
#milestone_id
"
).
live
(
"
change
"
,
function
(){
$
(
this
).
closest
(
"
form
"
).
submit
();
});
});
app/views/issues/new.html.haml
View file @
23d95085
...
...
@@ -3,5 +3,6 @@
:javascript
$
(
function
(){
$
(
'
select#issue_assignee_id
'
).
chosen
();
$
(
'
select#issue_milestone_id
'
).
chosen
();
});
app/views/milestones/_form.html.haml
0 → 100644
View file @
23d95085
%h3
=
@milestone
.
new_record?
?
"New Milestone"
:
"Edit Milestone #
#{
@milestone
.
id
}
"
.back_link
=
link_to
project_milestones_path
(
@project
)
do
←
To milestones
%hr
=
form_for
[
@project
,
@milestone
]
do
|
f
|
-
if
@milestone
.
errors
.
any?
.alert-message.block-message.error
%ul
-
@milestone
.
errors
.
full_messages
.
each
do
|
msg
|
%li
=
msg
.row
.span7
.clearfix
=
f
.
label
:title
,
"Title"
.input
=
f
.
text_field
:title
,
:maxlength
=>
255
,
:class
=>
"xlarge"
%p
.hint
Required
.clearfix
=
f
.
label
:description
,
"Description"
.input
=
f
.
text_area
:description
,
:maxlength
=>
2000
,
:class
=>
"xlarge"
,
:rows
=>
10
%p
.hint
Markdown is enabled.
.span8
.clearfix
=
f
.
label
:due_date
,
"Due Date"
.input
=
f
.
hidden_field
:due_date
.input
.datepicker
.actions
-
if
@milestone
.
new_record?
=
f
.
submit
'Create milestone'
,
:class
=>
"primary btn"
-
else
=
f
.
submit
'Save changes'
,
:class
=>
"primary btn"
-
if
request
.
xhr?
=
link_to
"Cancel"
,
"#back"
,
:onclick
=>
"backToIssues();"
,
:class
=>
"btn"
-
else
-
if
@milestone
.
new_record?
=
link_to
"Cancel"
,
project_milestones_path
(
@project
),
:class
=>
"btn"
-
else
=
link_to
"Cancel"
,
project_milestone_path
(
@project
,
@milestone
),
:class
=>
"btn"
:javascript
$
(
function
()
{
$
(
"
.datepicker
"
).
datepicker
({
dateFormat
:
"
yy-mm-dd
"
,
onSelect
:
function
(
dateText
,
inst
)
{
$
(
"
#milestone_due_date
"
).
val
(
dateText
)
}
});
});
app/views/milestones/_milestone.html.haml
0 → 100644
View file @
23d95085
%li
{
:class
=>
"wll"
,
:id
=>
dom_id
(
milestone
)
}
.right
-
if
milestone
.
issues
.
count
>
0
=
link_to
'Browse Issues'
,
project_issues_path
(
milestone
.
project
,
:milestone_id
=>
milestone
.
id
),
:class
=>
"btn small"
-
if
milestone
.
issues
.
any?
%span
.btn.small.disabled.padded
=
pluralize
milestone
.
issues
.
count
,
'issues'
-
if
can?
current_user
,
:admin_milestone
,
milestone
.
project
=
link_to
'Edit'
,
edit_project_milestone_path
(
milestone
.
project
,
milestone
),
:class
=>
"btn small edit-milestone-link"
=
link_to
project_milestone_path
(
milestone
.
project
,
milestone
)
do
%h4
.row_title
=
truncate
(
milestone
.
title
,
:length
=>
100
)
%small
=
milestone
.
expires_at
.progress.span4
:javascript
$
(
function
()
{
$
(
"
##{dom_id(milestone)} .progress
"
).
progressbar
({
value
:
#{
milestone
.
percent_complete
}
});
});
app/views/milestones/edit.html.haml
0 → 100644
View file @
23d95085
=
render
"form"
:javascript
$
(
function
(){
$
(
'
select#issue_assignee_id
'
).
chosen
();
});
app/views/milestones/index.html.haml
0 → 100644
View file @
23d95085
=
render
"issues/head"
.milestones_content
%h3
Milestones
-
if
can?
current_user
,
:admin_milestone
,
@project
=
link_to
"New Milestone"
,
new_project_milestone_path
(
@project
),
:class
=>
"right btn small"
,
:title
=>
"New Milestone"
%br
%div
.ui-box
.title
%ul
.pills
%li
{
:class
=>
(
"active"
if
(
params
[
:f
]
==
"0"
||
!
params
[
:f
]))}
=
link_to
project_milestones_path
(
@project
,
:f
=>
0
)
do
Active
%li
{
:class
=>
(
"active"
if
params
[
:f
]
==
"1"
)}
=
link_to
project_milestones_path
(
@project
,
:f
=>
1
)
do
All
%ul
.unstyled
=
render
@milestones
-
if
@milestones
.
present?
%li
.bottom
=
paginate
@milestones
,
:remote
=>
true
,
:theme
=>
"gitlab"
-
else
%li
%p
.padded
Nothing to show here
app/views/milestones/new.html.haml
0 → 100644
View file @
23d95085
=
render
"form"
app/views/milestones/show.html.haml
0 → 100644
View file @
23d95085
%h3
Milestone ##{@milestone.id}
%small
=
@milestone
.
expires_at
%span
.right
-
if
can?
(
current_user
,
:admin_milestone
,
@project
)
=
link_to
edit_project_milestone_path
(
@project
,
@milestone
),
:class
=>
"btn"
do
Edit
.back_link
=
link_to
project_milestones_path
(
@project
)
do
←
To milestones list
.main_box
.top_box_content
%h5
-
if
@milestone
.
closed
.alert-message.error.status_info
Closed
-
else
.alert-message.success.status_info
Open
=
@milestone
.
title
.middle_box_content
.row
.span2
=
link_to
'Browse Issues'
,
project_issues_path
(
@milestone
.
project
,
:milestone_id
=>
@milestone
.
id
),
:class
=>
"btn small edit-milestone-link"
.span4
%span
=
@milestone
.
expires_at
.span4.right
.progress
%br
%span
#{
@milestone
.
issues
.
opened
.
count
}
open
–
#{
@milestone
.
issues
.
closed
.
count
}
closed
-
if
@milestone
.
description
.
present?
.bottom_box_content
=
markdown
@milestone
.
description
:javascript
$
(
function
()
{
$
(
"
.progress
"
).
progressbar
({
value
:
#{
@milestone
.
percent_complete
}
});
});
config/routes.rb
View file @
23d95085
...
...
@@ -122,6 +122,7 @@ Gitlab::Application.routes.draw do
end
end
resources
:team_members
resources
:milestones
resources
:issues
do
collection
do
post
:sort
...
...
db/migrate/20120408180246_create_milestones.rb
0 → 100644
View file @
23d95085
class
CreateMilestones
<
ActiveRecord
::
Migration
def
change
create_table
:milestones
do
|
t
|
t
.
string
:title
,
:null
=>
false
t
.
integer
:project_id
,
:null
=>
false
t
.
text
:description
t
.
date
:due_date
t
.
boolean
:closed
,
:default
=>
false
,
:null
=>
false
t
.
timestamps
end
end
end
db/migrate/20120408181910_add_milestone_id_to_issue.rb
0 → 100644
View file @
23d95085
class
AddMilestoneIdToIssue
<
ActiveRecord
::
Migration
def
change
add_column
:issues
,
:milestone_id
,
:integer
,
:null
=>
true
end
end
db/schema.rb
View file @
23d95085
...
...
@@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
:version
=>
2012040
521175
0
)
do
ActiveRecord
::
Schema
.
define
(
:version
=>
2012040
818191
0
)
do
create_table
"events"
,
:force
=>
true
do
|
t
|
t
.
string
"target_type"
...
...
@@ -30,13 +30,14 @@ ActiveRecord::Schema.define(:version => 20120405211750) do
t
.
integer
"assignee_id"
t
.
integer
"author_id"
t
.
integer
"project_id"
t
.
datetime
"created_at"
,
:null
=>
false
t
.
datetime
"updated_at"
,
:null
=>
false
t
.
boolean
"closed"
,
:default
=>
false
,
:null
=>
false
t
.
integer
"position"
,
:default
=>
0
t
.
boolean
"critical"
,
:default
=>
false
,
:null
=>
false
t
.
datetime
"created_at"
,
:null
=>
false
t
.
datetime
"updated_at"
,
:null
=>
false
t
.
boolean
"closed"
,
:default
=>
false
,
:null
=>
false
t
.
integer
"position"
,
:default
=>
0
t
.
boolean
"critical"
,
:default
=>
false
,
:null
=>
false
t
.
string
"branch_name"
t
.
text
"description"
t
.
integer
"milestone_id"
end
add_index
"issues"
,
[
"project_id"
],
:name
=>
"index_issues_on_project_id"
...
...
@@ -69,6 +70,15 @@ ActiveRecord::Schema.define(:version => 20120405211750) do
add_index
"merge_requests"
,
[
"project_id"
],
:name
=>
"index_merge_requests_on_project_id"
create_table
"milestones"
,
:force
=>
true
do
|
t
|
t
.
string
"title"
,
:null
=>
false
t
.
text
"description"
t
.
date
"due_date"
,
:null
=>
false
t
.
integer
"project_id"
,
:null
=>
false
t
.
datetime
"created_at"
,
:null
=>
false
t
.
datetime
"updated_at"
,
:null
=>
false
end
create_table
"notes"
,
:force
=>
true
do
|
t
|
t
.
text
"note"
t
.
string
"noteable_id"
...
...
spec/models/milestone_spec.rb
0 → 100644
View file @
23d95085
require
'spec_helper'
describe
Milestone
do
pending
"add some examples to (or delete)
#{
__FILE__
}
"
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