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
e82837ee
Commit
e82837ee
authored
Jul 26, 2016
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed conflicts
parent
dff64d76
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
20 additions
and
102 deletions
+20
-102
app/assets/javascripts/application.js
app/assets/javascripts/application.js
+0
-15
app/assets/javascripts/confirm_danger_modal.js
app/assets/javascripts/confirm_danger_modal.js
+0
-7
app/assets/javascripts/dispatcher.js
app/assets/javascripts/dispatcher.js
+0
-3
app/assets/javascripts/groups_select.js
app/assets/javascripts/groups_select.js
+0
-13
app/assets/javascripts/lib/utils/common_utils.js
app/assets/javascripts/lib/utils/common_utils.js
+0
-3
app/assets/javascripts/merge_request_widget.js
app/assets/javascripts/merge_request_widget.js
+0
-4
app/assets/javascripts/notes.js
app/assets/javascripts/notes.js
+19
-31
app/assets/javascripts/project_new.js
app/assets/javascripts/project_new.js
+0
-8
app/assets/javascripts/users_select.js
app/assets/javascripts/users_select.js
+0
-12
app/views/projects/branches/index.html.haml
app/views/projects/branches/index.html.haml
+1
-6
No files found.
app/assets/javascripts/application.js
View file @
e82837ee
...
...
@@ -12,10 +12,7 @@
/*= require jquery.atwho */
/*= require jquery.scrollTo */
/*= require jquery.turbolinks */
<<<<<<<
HEAD
/*= require jquery.tablesorter */
=======
>>>>>>>
68162
ba900f1b9003fa3d07613333f201be8154a
/*= require turbolinks */
/*= require autosave */
/*= require bootstrap/affix */
...
...
@@ -132,11 +129,8 @@
window
.
addEventListener
(
"
hashchange
"
,
shiftWindow
);
<<<<<<<
HEAD
$
.
timeago
.
settings
.
allowFuture
=
true
;
=======
>>>>>>>
68162
ba900f1b9003fa3d07613333f201be8154a
window
.
onload
=
function
()
{
if
(
location
.
hash
)
{
return
setTimeout
(
shiftWindow
,
100
);
...
...
@@ -238,7 +232,6 @@
});
$document
.
off
(
"
click
"
,
'
.js-confirm-danger
'
);
$document
.
on
(
"
click
"
,
'
.js-confirm-danger
'
,
function
(
e
)
{
<<<<<<<
HEAD
var
btn
,
form
,
text
,
warningMessage
;
e
.
preventDefault
();
btn
=
$
(
e
.
target
);
...
...
@@ -248,14 +241,6 @@
return
new
ConfirmDangerModal
(
form
,
text
,
{
warningMessage
:
warningMessage
});
=======
var
btn
,
form
,
text
;
e
.
preventDefault
();
btn
=
$
(
e
.
target
);
text
=
btn
.
data
(
"
confirm-danger-message
"
);
form
=
btn
.
closest
(
"
form
"
);
return
new
ConfirmDangerModal
(
form
,
text
);
>>>>>>>
68162
ba900f1b9003fa3d07613333f201be8154a
});
$document
.
on
(
'
click
'
,
'
button
'
,
function
()
{
return
$
(
this
).
blur
();
...
...
app/assets/javascripts/confirm_danger_modal.js
View file @
e82837ee
(
function
()
{
this
.
ConfirmDangerModal
=
(
function
()
{
<<<<<<<
HEAD
function
ConfirmDangerModal
(
form
,
text
,
arg
)
{
var
project_path
,
submit
,
warningMessage
;
warningMessage
=
(
arg
!=
null
?
arg
:
{}).
warningMessage
;
...
...
@@ -9,12 +8,6 @@
if
(
warningMessage
)
{
$
(
'
.js-warning-text
'
).
html
(
warningMessage
);
}
=======
function
ConfirmDangerModal
(
form
,
text
)
{
var
project_path
,
submit
;
this
.
form
=
form
;
$
(
'
.js-confirm-text
'
).
text
(
text
||
''
);
>>>>>>>
68162
ba900f1b9003fa3d07613333f201be8154a
$
(
'
.js-confirm-danger-input
'
).
val
(
''
);
$
(
'
#modal-confirm-danger
'
).
modal
(
'
show
'
);
project_path
=
$
(
'
.js-confirm-danger-match
'
).
text
();
...
...
app/assets/javascripts/dispatcher.js
View file @
e82837ee
...
...
@@ -171,7 +171,6 @@
break
;
case
'
search:show
'
:
new
Search
();
<<<<<<<
HEAD
break
;
case
'
projects:mirrors:show
'
:
case
'
projects:mirrors:update
'
:
...
...
@@ -179,8 +178,6 @@
break
;
case
'
admin:emails:show
'
:
new
AdminEmailSelect
();
=======
>>>>>>>
68162
ba900f1b9003fa3d07613333f201be8154a
}
switch
(
path
.
first
())
{
case
'
admin
'
:
...
...
app/assets/javascripts/groups_select.js
View file @
e82837ee
...
...
@@ -5,20 +5,14 @@
function
GroupsSelect
()
{
$
(
'
.ajax-groups-select
'
).
each
((
function
(
_this
)
{
return
function
(
i
,
select
)
{
<<<<<<<
HEAD
var
skip_group
,
url
;
skip_group
=
$
(
select
).
data
(
"
skip-group
"
);
url
=
$
(
select
).
data
(
"
url
"
);
=======
var
skip_ldap
;
skip_ldap
=
$
(
select
).
hasClass
(
'
skip_ldap
'
);
>>>>>>>
68162
ba900f1b9003fa3d07613333f201be8154a
return
$
(
select
).
select2
({
placeholder
:
"
Search for a group
"
,
multiple
:
$
(
select
).
hasClass
(
'
multiselect
'
),
minimumInputLength
:
0
,
query
:
function
(
query
)
{
<<<<<<<
HEAD
return
$
.
ajax
({
url
:
url
,
data
:
{
...
...
@@ -38,13 +32,6 @@
}
data
.
results
.
push
(
group
);
}
=======
return
Api
.
groups
(
query
.
term
,
skip_ldap
,
function
(
groups
)
{
var
data
;
data
=
{
results
:
groups
};
>>>>>>>
68162
ba900f1b9003fa3d07613333f201be8154a
return
query
.
callback
(
data
);
});
},
...
...
app/assets/javascripts/lib/utils/common_utils.js
View file @
e82837ee
...
...
@@ -35,12 +35,9 @@
}
});
};
<<<<<<<
HEAD
gl
.
utils
.
capitalize
=
function
(
str
)
{
return
str
[
0
].
toUpperCase
()
+
str
.
slice
(
1
);
};
=======
>>>>>>>
68162
ba900f1b9003fa3d07613333f201be8154a
gl
.
utils
.
getPagePath
=
function
()
{
return
$
(
'
body
'
).
data
(
'
page
'
).
split
(
'
:
'
)[
0
];
};
...
...
app/assets/javascripts/merge_request_widget.js
View file @
e82837ee
...
...
@@ -61,7 +61,6 @@
callback
=
function
()
{
return
merge_request_widget
.
mergeInProgress
(
deleteSourceBranch
);
};
<<<<<<<
HEAD
return
setTimeout
(
callback
,
1000
);
}
};
...
...
@@ -80,9 +79,6 @@
return
setTimeout
(
merge_request_widget
.
rebaseInProgress
,
1000
);
}
else
{
return
location
.
reload
();
=======
return
setTimeout
(
callback
,
2000
);
>>>>>>>
68162
ba900f1b9003fa3d07613333f201be8154a
}
};
})(
this
),
...
...
app/assets/javascripts/notes.js
View file @
e82837ee
...
...
@@ -181,11 +181,7 @@
_this
.
last_fetched_at
=
data
.
last_fetched_at
;
_this
.
setPollingInterval
(
data
.
notes
.
length
);
return
$
.
each
(
notes
,
function
(
i
,
note
)
{
<<<<<<<
HEAD
if
(
note
.
discussion_with_diff_html
!=
null
)
{
=======
if
(
note
.
discussion_html
!=
null
)
{
>>>>>>>
68162
ba900f1b9003fa3d07613333f201be8154a
return
_this
.
renderDiscussionNote
(
note
);
}
else
{
return
_this
.
renderNote
(
note
);
...
...
@@ -291,20 +287,12 @@
discussionContainer
=
$
(
"
.notes[data-discussion-id='
"
+
note
.
original_discussion_id
+
"
']
"
);
}
if
(
discussionContainer
.
length
===
0
)
{
<<<<<<<
HEAD
row
.
after
(
note
.
discussion_html
);
=======
row
.
after
(
note
.
diff_discussion_html
);
>>>>>>>
68162
ba900f1b9003fa3d07613333f201be8154a
row
.
next
().
find
(
"
.note
"
).
remove
();
discussionContainer
=
$
(
"
.notes[data-discussion-id='
"
+
note
.
discussion_id
+
"
']
"
);
discussionContainer
.
append
(
note_html
);
if
(
$
(
'
body
'
).
attr
(
'
data-page
'
).
indexOf
(
'
projects:merge_request
'
)
===
0
)
{
<<<<<<<
HEAD
$
(
'
ul.main-notes-list
'
).
append
(
note
.
discussion_with_diff_html
).
syntaxHighlight
();
=======
$
(
'
ul.main-notes-list
'
).
append
(
note
.
discussion_html
).
syntaxHighlight
();
>>>>>>>
68162
ba900f1b9003fa3d07613333f201be8154a
}
}
else
{
discussionContainer
.
append
(
note_html
);
...
...
app/assets/javascripts/project_new.js
View file @
e82837ee
...
...
@@ -16,20 +16,12 @@
ProjectNew
.
prototype
.
toggleSettings
=
function
()
{
this
.
_showOrHide
(
'
#project_builds_enabled
'
,
'
.builds-feature
'
);
<<<<<<<
HEAD
this
.
_showOrHide
(
'
#project_merge_requests_enabled
'
,
'
.merge-requests-feature
'
);
return
this
.
_showOrHide
(
'
#project_issues_enabled
'
,
'
.issues-feature
'
);
};
ProjectNew
.
prototype
.
toggleSettingsOnclick
=
function
()
{
return
$
(
'
#project_builds_enabled, #project_merge_requests_enabled, #project_issues_enabled
'
).
on
(
'
click
'
,
this
.
toggleSettings
);
=======
return
this
.
_showOrHide
(
'
#project_merge_requests_enabled
'
,
'
.merge-requests-feature
'
);
};
ProjectNew
.
prototype
.
toggleSettingsOnclick
=
function
()
{
return
$
(
'
#project_builds_enabled, #project_merge_requests_enabled
'
).
on
(
'
click
'
,
this
.
toggleSettings
);
>>>>>>>
68162
ba900f1b9003fa3d07613333f201be8154a
};
ProjectNew
.
prototype
.
_showOrHide
=
function
(
checkElement
,
container
)
{
...
...
app/assets/javascripts/users_select.js
View file @
e82837ee
...
...
@@ -185,7 +185,6 @@
$
(
'
.ajax-users-select
'
).
each
((
function
(
_this
)
{
return
function
(
i
,
select
)
{
var
firstUser
,
showAnyUser
,
showEmailUser
,
showNullUser
;
<<<<<<<
HEAD
_this
.
skipLdap
=
$
(
select
).
hasClass
(
'
skip_ldap
'
);
_this
.
projectId
=
$
(
select
).
data
(
'
project-id
'
);
_this
.
groupId
=
$
(
select
).
data
(
'
group-id
'
);
...
...
@@ -193,12 +192,6 @@
_this
.
pushCodeToProtectedBranches
=
$
(
select
).
data
(
'
push-code-to-protected-branches
'
);
_this
.
authorId
=
$
(
select
).
data
(
'
author-id
'
);
_this
.
skipUsers
=
$
(
select
).
data
(
'
skip-users
'
);
=======
_this
.
projectId
=
$
(
select
).
data
(
'
project-id
'
);
_this
.
groupId
=
$
(
select
).
data
(
'
group-id
'
);
_this
.
showCurrentUser
=
$
(
select
).
data
(
'
current-user
'
);
_this
.
authorId
=
$
(
select
).
data
(
'
author-id
'
);
>>>>>>>
68162
ba900f1b9003fa3d07613333f201be8154a
showNullUser
=
$
(
select
).
data
(
'
null-user
'
);
showAnyUser
=
$
(
select
).
data
(
'
any-user
'
);
showEmailUser
=
$
(
select
).
data
(
'
email-user
'
);
...
...
@@ -329,16 +322,11 @@
active
:
true
,
project_id
:
this
.
projectId
,
group_id
:
this
.
groupId
,
<<<<<<<
HEAD
skip_ldap
:
this
.
skipLdap
,
current_user
:
this
.
showCurrentUser
,
push_code_to_protected_branches
:
this
.
pushCodeToProtectedBranches
,
author_id
:
this
.
authorId
,
skip_users
:
this
.
skipUsers
=======
current_user
:
this
.
showCurrentUser
,
author_id
:
this
.
authorId
>>>>>>>
68162
ba900f1b9003fa3d07613333f201be8154a
},
dataType
:
"
json
"
}).
done
(
function
(
users
)
{
...
...
app/views/projects/branches/index.html.haml
View file @
e82837ee
...
...
@@ -27,14 +27,9 @@
=
sort_title_recently_updated
=
link_to
filter_branches_path
(
sort:
'last_updated'
)
do
=
sort_title_oldest_updated
<
<<<<<<
HEAD
=
render
'projects/commits/mirror_status'
==
=====
=
link_to
new_namespace_project_branch_path
(
@project
.
namespace
,
@project
),
class:
'btn btn-create'
do
New branch
>
>>>>>> 68162ba900f1b9003fa3d07613333f201be8154a
=
render
'projects/commits/mirror_status'
-
if
@branches
.
any?
%ul
.content-list.all-branches
-
@branches
.
each
do
|
branch
|
...
...
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