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
Boxiang Sun
gitlab-ce
Commits
477e9f87
Commit
477e9f87
authored
Nov 29, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'drop_rjs_2' of /home/git/repositories/gitlab/gitlabhq
parents
ff25cb93
da10cad1
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
43 additions
and
27 deletions
+43
-27
app/assets/javascripts/issues.js.coffee
app/assets/javascripts/issues.js.coffee
+11
-2
app/assets/javascripts/notes.js
app/assets/javascripts/notes.js
+6
-3
app/controllers/application_controller.rb
app/controllers/application_controller.rb
+8
-0
app/controllers/projects/issues_controller.rb
app/controllers/projects/issues_controller.rb
+8
-7
app/controllers/projects/notes_controller.rb
app/controllers/projects/notes_controller.rb
+8
-1
app/views/projects/issues/_head.html.haml
app/views/projects/issues/_head.html.haml
+1
-5
app/views/projects/issues/index.js.haml
app/views/projects/issues/index.js.haml
+0
-4
app/views/projects/notes/index.js.haml
app/views/projects/notes/index.js.haml
+0
-4
config/initializers/1_settings.rb
config/initializers/1_settings.rb
+1
-1
No files found.
app/assets/javascripts/issues.js.coffee
View file @
477e9f87
...
...
@@ -22,7 +22,7 @@
backgroundColor
:
'#DDD'
opacity
:
.
4
)
reload
:
->
Issues
.
initSelects
()
Issues
.
initChecks
()
...
...
@@ -54,7 +54,16 @@
unless
terms
is
last_terms
last_terms
=
terms
if
terms
.
length
>=
2
or
terms
.
length
is
0
form
.
submit
()
$
.
ajax
type
:
"GET"
url
:
location
.
href
data
:
"issue_search="
+
terms
complete
:
->
$
(
".loading"
).
hide
()
success
:
(
data
)
->
$
(
'.issues-holder'
).
html
(
data
.
html
)
Issues
.
reload
()
dataType
:
"json"
checkChanged
:
->
checked_issues
=
$
(
".selected_issue:checked"
)
...
...
app/assets/javascripts/notes.js
View file @
477e9f87
...
...
@@ -6,7 +6,7 @@ var NoteList = {
target_type
:
null
,
init
:
function
(
tid
,
tt
,
path
)
{
NoteList
.
notes_path
=
path
+
"
.js
"
;
NoteList
.
notes_path
=
path
+
"
.js
on
"
;
NoteList
.
target_id
=
tid
;
NoteList
.
target_type
=
tt
;
NoteList
.
target_params
=
"
target_type=
"
+
NoteList
.
target_type
+
"
&target_id=
"
+
NoteList
.
target_id
;
...
...
@@ -411,7 +411,10 @@ var NoteList = {
data
:
NoteList
.
target_params
,
complete
:
function
(){
$
(
'
.js-notes-busy
'
).
removeClass
(
"
loading
"
)},
beforeSend
:
function
()
{
$
(
'
.js-notes-busy
'
).
addClass
(
"
loading
"
)
},
dataType
:
"
script
"
success
:
function
(
data
)
{
NoteList
.
setContent
(
data
.
html
);
},
dataType
:
"
json
"
});
},
...
...
@@ -419,7 +422,7 @@ var NoteList = {
* Called in response to getContent().
* Replaces the content of #notes-list with the given html.
*/
setContent
:
function
(
newNoteIds
,
html
)
{
setContent
:
function
(
html
)
{
$
(
"
#notes-list
"
).
html
(
html
);
},
...
...
app/controllers/application_controller.rb
View file @
477e9f87
...
...
@@ -188,4 +188,12 @@ class ApplicationController < ActionController::Base
count:
count
}
end
def
view_to_html_string
(
partial
)
render_to_string
(
partial
,
layout:
false
,
formats:
[
:html
]
)
end
end
app/controllers/projects/issues_controller.rb
View file @
477e9f87
...
...
@@ -11,7 +11,7 @@ class Projects::IssuesController < Projects::ApplicationController
# Allow modify issue
before_filter
:authorize_modify_issue!
,
only:
[
:edit
,
:update
]
respond_to
:
js
,
:
html
respond_to
:html
def
index
terms
=
params
[
'issue_search'
]
...
...
@@ -28,9 +28,13 @@ class Projects::IssuesController < Projects::ApplicationController
respond_to
do
|
format
|
format
.
html
# index.html.erb
format
.
js
format
.
html
format
.
atom
{
render
layout:
false
}
format
.
json
do
render
json:
{
html:
view_to_html_string
(
"projects/issues/_issues"
)
}
end
end
end
...
...
@@ -48,10 +52,7 @@ class Projects::IssuesController < Projects::ApplicationController
@target_type
=
:issue
@target_id
=
@issue
.
id
respond_to
do
|
format
|
format
.
html
format
.
js
end
respond_with
(
@issue
)
end
def
create
...
...
app/controllers/projects/notes_controller.rb
View file @
477e9f87
...
...
@@ -14,7 +14,14 @@ class Projects::NotesController < Projects::ApplicationController
@discussions
=
discussions_from_notes
end
respond_with
(
@notes
)
respond_to
do
|
format
|
format
.
html
{
redirect_to
:back
}
format
.
json
do
render
json:
{
html:
view_to_html_string
(
"projects/notes/_notes"
)
}
end
end
end
def
create
...
...
app/views/projects/issues/_head.html.haml
View file @
477e9f87
...
...
@@ -21,9 +21,5 @@
=
link_to
new_project_issue_path
(
@project
,
issue:
{
assignee_id:
params
[
:assignee_id
],
milestone_id:
params
[
:milestone_id
]}),
class:
"btn btn-new pull-right"
,
title:
"New Issue"
,
id:
"new_issue_link"
do
%i
.icon-plus
New Issue
=
form_tag
project_issues_path
(
@project
),
method: :get
,
remote:
true
,
id:
"issue_search_form"
,
class:
'pull-right issue-search-form'
do
=
hidden_field_tag
:status
,
params
[
:status
],
id:
'search_status'
=
hidden_field_tag
:assignee_id
,
params
[
:assignee_id
],
id:
'search_assignee_id'
=
hidden_field_tag
:milestone_id
,
params
[
:milestone_id
],
id:
'search_milestone_id'
=
hidden_field_tag
:label_name
,
params
[
:label_name
],
id:
'search_label_name'
=
form_tag
project_issues_path
(
@project
),
method: :get
,
id:
"issue_search_form"
,
class:
'pull-right issue-search-form'
do
=
search_field_tag
:issue_search
,
nil
,
{
placeholder:
'Filter by title or description'
,
class:
'input-xpadding issue_search input-xlarge append-right-10 search-text-input'
}
app/views/projects/issues/index.js.haml
deleted
100644 → 0
View file @
ff25cb93
:plain
$('.issues-holder').html("
#{
escape_javascript
(
render
(
'issues'
))
}
");
History.replaceState({path: "
#{
request
.
url
}
"}, document.title, "
#{
request
.
url
}
");
Issues.reload();
app/views/projects/notes/index.js.haml
deleted
100644 → 0
View file @
ff25cb93
-
unless
@notes
.
blank?
var notesHtml = "
#{
escape_javascript
(
render
'projects/notes/notes'
)
}
";
-
new_note_ids
=
@notes
.
map
(
&
:id
)
NoteList.setContent(
#{
new_note_ids
}
, notesHtml);
config/initializers/1_settings.rb
View file @
477e9f87
...
...
@@ -30,7 +30,7 @@ class Settings < Settingslogic
gitlab
.
relative_url_root
].
join
(
''
)
end
# check that values in `current` (string or integer) is a contant in `modul`.
def
verify_constant_array
(
modul
,
current
,
default
)
values
=
default
||
[]
...
...
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