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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
7066444f
Commit
7066444f
authored
Nov 07, 2011
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev'
parents
8170da06
32abaa33
Changes
19
Show whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
162 additions
and
130 deletions
+162
-130
app/assets/javascripts/note.js
app/assets/javascripts/note.js
+4
-2
app/assets/stylesheets/projects.css.scss
app/assets/stylesheets/projects.css.scss
+27
-0
app/assets/stylesheets/style.scss
app/assets/stylesheets/style.scss
+11
-0
app/controllers/issues_controller.rb
app/controllers/issues_controller.rb
+1
-0
app/views/admin/users/_form.html.haml
app/views/admin/users/_form.html.haml
+35
-37
app/views/admin/users/index.html.haml
app/views/admin/users/index.html.haml
+1
-0
app/views/issues/_form.html.haml
app/views/issues/_form.html.haml
+5
-8
app/views/issues/_issues.html.haml
app/views/issues/_issues.html.haml
+4
-13
app/views/issues/_show.html.haml
app/views/issues/_show.html.haml
+23
-31
app/views/issues/create.js.haml
app/views/issues/create.js.haml
+1
-0
app/views/issues/index.html.haml
app/views/issues/index.html.haml
+27
-24
app/views/issues/index.js.haml
app/views/issues/index.js.haml
+1
-1
app/views/keys/_form.html.haml
app/views/keys/_form.html.haml
+3
-3
app/views/notes/_form.html.haml
app/views/notes/_form.html.haml
+6
-3
app/views/profile/password.html.haml
app/views/profile/password.html.haml
+2
-2
app/views/profile/show.html.haml
app/views/profile/show.html.haml
+3
-3
public/.directory
public/.directory
+4
-0
spec/requests/issues_spec.rb
spec/requests/issues_spec.rb
+1
-0
vendor/assets/stylesheets/jquery-ui/jquery-ui.css
vendor/assets/stylesheets/jquery-ui/jquery-ui.css
+3
-3
No files found.
app/assets/javascripts/note.js
View file @
7066444f
...
...
@@ -42,8 +42,10 @@ replace:
prepend
:
function
(
id
,
html
)
{
if
(
id
!=
this
.
last_id
)
{
this
.
last_id
=
id
;
$
(
"
#notes-list
"
).
prepend
(
html
);
}
},
getNew
:
...
...
app/assets/stylesheets/projects.css.scss
View file @
7066444f
...
...
@@ -276,6 +276,9 @@ input.ssh_project_url {
/** FORM INPUTS **/
.user_new
,
.new_key
,
.new_issue
,
.new_note
,
.edit_user
,
.new_project
,
.new_snippet
,
...
...
@@ -676,6 +679,30 @@ body.project-page table .commit {
}
}
#notes-list
.note
.delete-note
{
display
:none
;
}
#notes-list
.note
:hover
.delete-note
{
display
:block
;
}
#issues-table-holder
.issue
.action-links
{
display
:none
;
a
{
margin-left
:
10px
;
}
}
.issue-number
{
float
:
left
;
border-radius
:
5px
;
text-shadow
:
none
;
background
:
rgba
(
0
,
0
,
0
,
0
.12
);
text-align
:
center
;
padding
:
14px
8px
;
width
:
40px
;
margin-right
:
10px
;
color
:
#444
;
}
#issues-table-holder
.issue
:hover
.action-links
{
display
:block
;
}
body
.project-page
#notes-list
.note
{
padding
:
10px
;
border-bottom
:
1px
solid
#eee
;
overflow
:
hidden
;
display
:
block
;}
body
.project-page
#notes-list
.note
{
padding
:
10px
;
border-bottom
:
1px
solid
#eee
;
overflow
:
hidden
;
display
:
block
;}
body
.project-page
#notes-list
.note
img
{
float
:
left
;
margin-right
:
10px
;}
...
...
app/assets/stylesheets/style.scss
View file @
7066444f
...
...
@@ -87,6 +87,17 @@ h2{margin: 1.5em 0}
/* Forms */
input
[
type
=
"text"
]
:focus
,
input
[
type
=
"password"
]
:focus
{
outline
:
none
;
}
input
.text
{
border
:
1px
solid
#ccc
;
border-radius
:
4px
;
display
:
block
;
padding
:
10px
}
.form-row
{
padding
:
0px
0px
10px
0px
;
}
.form-row
label
{
font-weight
:bold
;
display
:
inline-block
;
padding
:
0px
0px
5px
0px
;
}
/* eo Forms */
/* Tables */
...
...
app/controllers/issues_controller.rb
View file @
7066444f
...
...
@@ -47,6 +47,7 @@ class IssuesController < ApplicationController
def
create
@issue
=
@project
.
issues
.
new
(
params
[
:issue
])
@issue
.
author
=
current_user
if
@issue
.
save
&&
@issue
.
assignee
!=
current_user
Notify
.
new_issue_email
(
@issue
).
deliver
end
...
...
app/views/admin/users/_form.html.haml
View file @
7066444f
...
...
@@ -7,41 +7,39 @@
-
@admin_user
.
errors
.
full_messages
.
each
do
|
msg
|
%li
=
msg
.span-24
.span-11.colborder
.field
.form-row
=
f
.
label
:name
%br
=
f
.
text_field
:name
.field
.form-row
=
f
.
label
:email
%br
=
f
.
text_field
:email
.field
.form-row
=
f
.
label
:password
%br
=
f
.
password_field
:password
.field
.form-row
=
f
.
label
:password_confirmation
%br
=
f
.
password_field
:password_confirmation
.field.prepend-top
.form-row
=
f
.
check_box
:admin
=
f
.
label
:admin
.span-11
.field.prepend-top
.form-row
=
f
.
text_field
:projects_limit
,
:class
=>
"small_input"
=
f
.
label
:projects_limit
.field
.form-row
=
f
.
label
:skype
%br
=
f
.
text_field
:skype
.field
.form-row
=
f
.
label
:linkedin
%br
=
f
.
text_field
:linkedin
.field
.form-row
=
f
.
label
:twitter
%br
=
f
.
text_field
:twitter
...
...
app/views/admin/users/index.html.haml
View file @
7066444f
...
...
@@ -21,4 +21,5 @@
%br
=
paginate
@admin_users
=
link_to
'New User'
,
new_admin_user_path
app/views/issues/_form.html.haml
View file @
7066444f
...
...
@@ -5,24 +5,21 @@
-
@issue
.
errors
.
full_messages
.
each
do
|
msg
|
%li
=
msg
.
span-8
.
form-row
=
f
.
label
:title
=
f
.
text_area
:title
,
:style
=>
"width:450px; height:100px"
,
:maxlength
=>
255
-#.span-8
-#= f.label :content
-#= f.text_area :content, :style => "width:450px; height:130px"
.span-8.append-bottom
.form-row
=
f
.
label
:assignee_id
=
f
.
select
(
:assignee_id
,
@project
.
users
.
all
.
collect
{
|
p
|
[
p
.
name
,
p
.
id
]
},
{
:include_blank
=>
"Select user"
})
.
span-1
.
form-row
=
f
.
label
:critical
,
"Critical"
%br
=
f
.
check_box
:critical
-
unless
@issue
.
new_record?
.
span-2.right
.
form-row
=
f
.
label
:closed
%br
=
f
.
check_box
:closed
%hr
.
span-6
.
form-row
=
f
.
submit
'Save'
,
:class
=>
"lbutton vm"
app/views/issues/_issues.html.haml
View file @
7066444f
%table
.round-borders
#issues-table
%thead
-
if
can?
(
current_user
,
:admin_issue
,
@project
)
&&
!
params
[
:f
]
||
params
[
:f
]
==
"0"
%th
%th
Assignee
%th
ID
%th
Title
%th
Closed?
-
@issues
.
critical
.
each
do
|
issue
|
-
@issues
.
critical
.
each
do
|
issue
|
=
render
(
:partial
=>
'show'
,
:locals
=>
{
:issue
=>
issue
})
-
@issues
.
non_critical
.
each
do
|
issue
|
-
@issues
.
non_critical
.
each
do
|
issue
|
=
render
(
:partial
=>
'show'
,
:locals
=>
{
:issue
=>
issue
})
app/views/issues/_show.html.haml
View file @
7066444f
%tr
{
:id
=>
dom_id
(
issue
),
:class
=>
"issue #{issue.critical ? "
critical
" : ""}"
,
:url
=>
project_issue_path
(
@project
,
issue
)
}
-
if
can?
(
current_user
,
:admin_issue
,
@project
)
&&
(
!
params
[
:f
]
||
params
[
:f
]
==
"0"
)
-
#-
if can?(current_user, :admin_issue, @project) && (!params[:f] || params[:f] == "0")
%td
= image_tag "move.png" , :class => [:handle, :left]
%td
=
image_tag
gravatar_icon
(
issue
.
assignee
.
email
),
:class
=>
"left"
,
:width
=>
40
,
:style
=>
"padding:0 5px;"
=
issue
.
assignee
.
name
%td
##{issue.id}
%td
=
truncate
(
html_escape
(
issue
.
title
),
:length
=>
200
)
%strong
.issue-number
=
"#
#{
issue
.
id
}
"
%span
=
truncate
(
html_escape
(
issue
.
title
),
:length
=>
fixed_mode?
?
100
:
200
)
%br
%br
%div
.note-author
%strong
=
issue
.
assignee
.
name
%cite
.cgray
=
time_ago_in_words
(
issue
.
updated_at
)
ago
-
if
issue
.
critical
%span
.tag.high
critical
-
if
issue
.
today?
%span
.tag.today
today
.right
-
if
can?
(
current_user
,
:admin_issue
,
@project
)
||
issue
.
author
==
current_user
=
link_to
'Edit'
,
edit_project_issue_path
(
@project
,
issue
),
:class
=>
"cgray"
,
:remote
=>
true
.right.action-links
-
if
can?
current_user
,
:write_issue
,
issue
-
if
issue
.
closed
=
link_to
'Reopen'
,
project_issue_path
(
@project
,
issue
,
:issue
=>
{
:closed
=>
false
},
:status_only
=>
true
),
:method
=>
:put
,
:class
=>
"cgray"
,
:remote
=>
true
-
else
=
link_to
'Resolve'
,
project_issue_path
(
@project
,
issue
,
:issue
=>
{
:closed
=>
true
},
:status_only
=>
true
),
:method
=>
:put
,
:class
=>
"cgray"
,
:remote
=>
true
-
if
can?
current_user
,
:write_issue
,
issue
=
link_to
'Edit'
,
edit_project_issue_path
(
@project
,
issue
),
:class
=>
"cgray edit-issue-link"
,
:remote
=>
true
-
if
can?
(
current_user
,
:admin_issue
,
@project
)
||
issue
.
author
==
current_user
=
link_to
'Destroy'
,
[
@project
,
issue
],
:confirm
=>
'Are you sure?'
,
:method
=>
:delete
,
:remote
=>
true
,
:class
=>
"cred delete-issue negative"
,
:id
=>
"destroy_issue_
#{
issue
.
id
}
"
-#- if issue.author == current_user
-#%span.tag.yours yours
-#- if issue.notes.count > 0
-#%span.tag.notes
-#= issue.notes.count
-#notes
%td
-
if
can?
current_user
,
:write_issue
,
@project
=
form_for
([
@project
,
issue
],
:remote
=>
true
)
do
|
f
|
=
f
.
check_box
:closed
,
:onclick
=>
"$(this).parent().submit();"
=
hidden_field_tag
:status_only
,
true
-
else
=
check_box_tag
"closed"
,
1
,
issue
.
closed
,
:disabled
=>
true
app/views/issues/create.js.haml
View file @
7066444f
-
if
@issue
.
valid?
:plain
$("#new_issue_dialog").dialog("close");
$("#issues-table").prepend("
#{
escape_javascript
(
render
(
:partial
=>
'show'
,
:locals
=>
{
:issue
=>
@issue
}
))
}
");
$.ajax({type: "GET", url: location.href, dataType: "script"});
-
else
:plain
...
...
app/views/issues/index.html.haml
View file @
7066444f
%div
%div
#issues-table-holder
%table
.round-borders
#issues-table
%thead
%th
.top_panel_issues
-
if
can?
current_user
,
:write_issue
,
@project
%div
{
:class
=>
"left"
,
:style
=>
"margin-right: 10px;"
}
...
...
@@ -22,7 +25,7 @@
=
radio_button_tag
:f
,
1
,
params
[
:f
]
==
"1"
,
:onclick
=>
"this.form.submit()"
,
:id
=>
"all_issues"
,
:class
=>
"status"
=
label_tag
"all_issues"
,
"All"
#issues-table-holder
=
render
"issues"
=
render
"issues"
%br
:javascript
var
href
=
$
(
'
.issue_search
'
).
parent
().
attr
(
'
action
'
);
...
...
@@ -37,7 +40,7 @@
if
(
terms
.
length
>=
2
||
terms
.
length
==
0
)
{
$
.
get
(
href
,
{
'
status
'
:
status
,
'
terms
'
:
terms
,
project
:
project_id
},
function
(
response
)
{
$
(
'
#issues-table
'
).
html
(
response
);
$
(
'
#issues-table
tbody
'
).
html
(
response
);
setSortable
();
});
}
...
...
app/views/issues/index.js.haml
View file @
7066444f
:plain
$('#issues-table
-holder
').html("
#{
escape_javascript
(
render
(
'issues'
))
}
");
$('#issues-table
tbody
').html("
#{
escape_javascript
(
render
(
'issues'
))
}
");
setSortable();
app/views/keys/_form.html.haml
View file @
7066444f
...
...
@@ -5,12 +5,12 @@
-
@key
.
errors
.
full_messages
.
each
do
|
msg
|
%li
=
msg
.
span-6
.
form-row
=
f
.
label
:title
=
f
.
text_field
:title
,
:style
=>
"width:300px"
.
span-6
.
form-row
=
f
.
label
:key
=
f
.
text_area
:key
,
:style
=>
"width:300px; height:130px"
.
span-6
.
form-row
=
f
.
submit
'Save'
,
:class
=>
"lbutton vm"
app/views/notes/_form.html.haml
View file @
7066444f
...
...
@@ -10,13 +10,16 @@
%div
=
f
.
label
:note
%cite
%cite
.cgray
markdown supported
%br
%br
=
f
.
text_area
:note
,
:size
=>
255
%div
.attach_holder
%br
=
f
.
label
:attachment
%cite
(less than 10 MB)
%cite
.cgray
(less than 10 MB)
%br
%br
=
f
.
file_field
:attachment
...
...
app/views/profile/password.html.haml
View file @
7066444f
...
...
@@ -7,11 +7,11 @@
-
@user
.
errors
.
full_messages
.
each
do
|
msg
|
%li
=
msg
.
div
.
form-row
=
f
.
label
:password
%br
=
f
.
password_field
:password
.
div
.
form-row
=
f
.
label
:password_confirmation
%br
=
f
.
password_field
:password_confirmation
...
...
app/views/profile/show.html.haml
View file @
7066444f
...
...
@@ -16,15 +16,15 @@
-
@user
.
errors
.
full_messages
.
each
do
|
msg
|
%li
=
msg
.
div
.
form-row
=
f
.
label
:skype
%br
=
f
.
text_field
:skype
.
div
.
form-row
=
f
.
label
:linkedin
%br
=
f
.
text_field
:linkedin
.
div
.
form-row
=
f
.
label
:twitter
%br
=
f
.
text_field
:twitter
...
...
public/.directory
0 → 100644
View file @
7066444f
[Dolphin]
ShowPreview=true
Timestamp=2011,11,6,21,7,47
Version=2
spec/requests/issues_spec.rb
View file @
7066444f
...
...
@@ -169,6 +169,7 @@ describe "Issues" do
:assignee
=>
@user
,
:project
=>
project
visit
project_issues_path
(
project
)
page
.
execute_script
(
"$('.action-links').css('display', 'block');"
)
click_link
"Edit"
end
...
...
vendor/assets/stylesheets/jquery-ui/jquery-ui.css
View file @
7066444f
...
...
@@ -59,7 +59,7 @@
.ui-widget
{
font-family
:
"Helvetica Neue"
,
Arial
,
Helvetica
,
sans-serif
;
font-size
:
1.1em
;
}
.ui-widget
.ui-widget
{
font-size
:
1em
;
}
.ui-widget
input
,
.ui-widget
select
,
.ui-widget
textarea
,
.ui-widget
button
{
font-family
:
Verdana
,
Arial
,
sans-serif
;
font-size
:
1em
;
}
.ui-widget-content
{
border
:
1px
solid
#
dddddd
;
background
:
#ffffff
url(ui-bg_flat_75_ffffff_40x100.png)
50%
50%
repeat-x
;
color
:
#222222
;
}
.ui-widget-content
{
border
:
1px
solid
#
474D57
;
background
:
#ffffff
url(ui-bg_flat_75_ffffff_40x100.png)
50%
50%
repeat-x
;
color
:
#222222
;
}
.ui-widget-content
a
{
color
:
#222222
;
}
.ui-widget-header
{
color
:
#222222
;
font-weight
:
bold
;
}
.ui-widget-header
a
{
color
:
#222222
;
}
...
...
@@ -445,8 +445,8 @@ button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra pad
* http://docs.jquery.com/UI/Dialog#theming
*/
.ui-dialog
{
position
:
absolute
;
padding
:
0
;
width
:
300px
;
overflow
:
hidden
;
}
.ui-dialog
.ui-dialog-titlebar
{
padding
:
.4em
1em
;
position
:
relative
;
background
:
#
F7F7F7
;
color
:
#555
;
}
.ui-dialog
.ui-dialog-title
{
float
:
left
;
margin
:
.1em
16px
.1em
0
;}
.ui-dialog
.ui-dialog-titlebar
{
padding
:
.4em
1em
;
position
:
relative
;
background
:
#
474D57
;
color
:
#eee
;
}
.ui-dialog
.ui-dialog-title
{
float
:
left
;
margin
:
.1em
16px
.1em
0
;
text-shadow
:
none
;
}
.ui-dialog
.ui-dialog-titlebar-close
{
position
:
absolute
;
right
:
.3em
;
top
:
50%
;
width
:
19px
;
margin
:
-10px
0
0
0
;
padding
:
1px
;
height
:
18px
;
background
:
#eaeaea
}
.ui-dialog
.ui-dialog-titlebar-close
span
{
display
:
block
;
margin
:
1px
;
}
.ui-dialog
.ui-dialog-titlebar-close
:hover
,
.ui-dialog
.ui-dialog-titlebar-close
:focus
{
padding
:
0
;
}
...
...
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