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
f557686e
Commit
f557686e
authored
Sep 03, 2012
by
randx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
git clone panel available on files tab too
parent
8ca0b75d
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
31 additions
and
14 deletions
+31
-14
app/assets/javascripts/projects.js
app/assets/javascripts/projects.js
+9
-0
app/assets/stylesheets/gitlab_bootstrap/blocks.scss
app/assets/stylesheets/gitlab_bootstrap/blocks.scss
+1
-1
app/assets/stylesheets/sections/projects.scss
app/assets/stylesheets/sections/projects.scss
+8
-4
app/views/projects/_clone_panel.html.haml
app/views/projects/_clone_panel.html.haml
+2
-2
app/views/projects/show.html.haml
app/views/projects/show.html.haml
+1
-6
app/views/refs/_head.html.haml
app/views/refs/_head.html.haml
+9
-0
app/views/refs/tree.js.haml
app/views/refs/tree.js.haml
+1
-1
No files found.
app/assets/javascripts/projects.js
View file @
f557686e
...
@@ -14,3 +14,12 @@ function Projects() {
...
@@ -14,3 +14,12 @@ function Projects() {
disableButtonIfEmtpyField
(
"
#project_name
"
,
"
.project-submit
"
)
disableButtonIfEmtpyField
(
"
#project_name
"
,
"
.project-submit
"
)
}
}
function
initGitCloneSwitcher
()
{
var
link_sel
=
"
.project_clone_holder button
"
;
$
(
link_sel
).
bind
(
"
click
"
,
function
(
e
)
{
$
(
link_sel
).
removeClass
(
"
active
"
);
$
(
this
).
addClass
(
"
active
"
);
$
(
"
#project_clone
"
).
val
(
$
(
this
).
attr
(
"
data-clone
"
));
})
}
app/assets/stylesheets/gitlab_bootstrap/blocks.scss
View file @
f557686e
/**
/**
* ===================================
* ===================================
* Contain 3 main UI block elements:
* Contain 3 main UI block elements:
* .main_box - for show pages
* .main_box - for show pages
* .ui-box - for simple block & widgets
* .ui-box - for simple block & widgets
* ===================================
* ===================================
...
...
app/assets/stylesheets/sections/projects.scss
View file @
f557686e
...
@@ -75,17 +75,21 @@
...
@@ -75,17 +75,21 @@
padding
:
4px
7px
;
padding
:
4px
7px
;
border
:
1px
solid
#CCC
;
border
:
1px
solid
#CCC
;
margin-bottom
:
5px
;
margin-bottom
:
5px
;
input
[
type
=
text
]
{
}
.project_clone_holder
{
input
[
type
=
"text"
]
{
border
:
1px
solid
#BBB
;
border
:
1px
solid
#BBB
;
box-shadow
:
none
;
}
}
}
}
.save-project-loader
{
.save-project-loader
{
img
{
img
{
margin-top
:
50px
;
margin-top
:
50px
;
margin-bottom
:
50px
;
margin-bottom
:
50px
;
}
}
h3
{
h3
{
@extend
.page_title
;
@extend
.page_title
;
}
}
...
...
app/views/projects/_clone_panel.html.haml
View file @
f557686e
...
@@ -3,8 +3,8 @@
...
@@ -3,8 +3,8 @@
.span7
.span7
.form-horizontal
.form-horizontal
.input-prepend.project_clone_holder
.input-prepend.project_clone_holder
=
link_to
"SSH"
,
"#"
,
class:
"btn small active"
,
:"data-clone"
=>
@project
.
ssh_url_to_repo
%button
{
class:
"btn small active"
,
:"data-clone"
=>
@project
.
ssh_url_to_repo
}
SSH
=
link_to
"HTTP"
,
"#"
,
class:
"btn small"
,
:"data-clone"
=>
@project
.
http_url_to_repo
%button
{
class:
"btn small"
,
:"data-clone"
=>
@project
.
http_url_to_repo
}
HTTP
=
text_field_tag
:project_clone
,
@project
.
url_to_repo
,
class:
"one_click_select span5"
=
text_field_tag
:project_clone
,
@project
.
url_to_repo
,
class:
"one_click_select span5"
.span4.right
.span4.right
.right
.right
...
...
app/views/projects/show.html.haml
View file @
f557686e
...
@@ -5,10 +5,5 @@
...
@@ -5,10 +5,5 @@
:javascript
:javascript
$
(
function
(){
$
(
function
(){
var
link_sel
=
"
.project_clone_holder a
"
;
initGitCloneSwitcher
();
$
(
link_sel
).
bind
(
"
click
"
,
function
()
{
$
(
link_sel
).
removeClass
(
"
active
"
);
$
(
this
).
addClass
(
"
active
"
);
$
(
"
#project_clone
"
).
val
(
$
(
this
).
attr
(
"
data-clone
"
));
})
})
})
app/views/refs/_head.html.haml
View file @
f557686e
...
@@ -7,4 +7,13 @@
...
@@ -7,4 +7,13 @@
%li
{
class:
"#{'active' if (controller.controller_name == "
refs
") }"
}
%li
{
class:
"#{'active' if (controller.controller_name == "
refs
") }"
}
=
link_to
tree_project_ref_path
(
@project
,
@ref
)
do
=
link_to
tree_project_ref_path
(
@project
,
@ref
)
do
Source
Source
%li
.right
.input-prepend.project_clone_holder
%button
{
class:
"btn small active"
,
:"data-clone"
=>
@project
.
ssh_url_to_repo
}
SSH
%button
{
class:
"btn small"
,
:"data-clone"
=>
@project
.
http_url_to_repo
}
HTTP
=
text_field_tag
:project_clone
,
@project
.
url_to_repo
,
class:
"one_click_select span5"
:javascript
$
(
function
(){
initGitCloneSwitcher
();
})
app/views/refs/tree.js.haml
View file @
f557686e
...
@@ -6,5 +6,5 @@
...
@@ -6,5 +6,5 @@
// Load last commit log for each file in tree
// Load last commit log for each file in tree
$('#tree-slider').waitForImages(function() {
$('#tree-slider').waitForImages(function() {
ajaxGet('
#{
@logs_path
}
');
ajaxGet('
#{
@logs_path
}
');
});
});
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