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
Tatuya Kamada
gitlab-ce
Commits
5bc97fbd
Commit
5bc97fbd
authored
Dec 12, 2011
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
middle panel
parent
f34b1be2
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
53 additions
and
13 deletions
+53
-13
app/assets/stylesheets/projects.css.scss
app/assets/stylesheets/projects.css.scss
+38
-0
app/assets/stylesheets/style.scss
app/assets/stylesheets/style.scss
+0
-1
app/helpers/application_helper.rb
app/helpers/application_helper.rb
+1
-1
app/views/commits/index.html.haml
app/views/commits/index.html.haml
+6
-8
app/views/layouts/_middle_panel.html.haml
app/views/layouts/_middle_panel.html.haml
+7
-0
app/views/layouts/project.html.haml
app/views/layouts/project.html.haml
+1
-2
app/views/refs/_tree.html.haml
app/views/refs/_tree.html.haml
+0
-1
No files found.
app/assets/stylesheets/projects.css.scss
View file @
5bc97fbd
...
...
@@ -529,3 +529,41 @@ h4.dash-tabs {
background
:
#eaeaea
;
}
}
h4
.middle-panel
{
margin
:
0
;
border-bottom
:
1px
solid
#ccc
;
padding
:
10px
10px
;
font-size
:
11px
;
padding-left
:
20px
;
background
:
#F7F7F7
;
height
:
30px
;
.project_name
{
float
:left
;
width
:
160px
;
margin-right
:
30px
;
font-size
:
16px
;
font-weight
:bold
;
padding
:
5px
7px
;
color
:
#777
;
}
.git_url_wrapper
{
padding
:
0px
;
margin
:
0px
;
float
:left
;
.git-url
{
padding
:
0px
;
margin
:
0px
;
font-size
:
12px
;
border-radius
:
5px
;
color
:
#666
;
box-shadow
:
0
1px
2px
rgba
(
0
,
0
,
0
,.
2
)
inset
;
padding
:
7px
0
5px
30px
;
background
:
white
url('images.png')
no-repeat
8px
-40px
;
width
:
250px
;
}
}
}
app/assets/stylesheets/style.scss
View file @
5bc97fbd
...
...
@@ -606,7 +606,6 @@ body.project-page .project-container{ position: relative; float: left; width: 10
body
.project-page
.page-title
{
margin-bottom
:
0
}
body
.project-page
.project-sidebar
{
width
:
180px
;
left
:
0
;
top
:
0
;
height
:
100%
;
bottom
:
0
;
position
:
absolute
;
background-color
:
#f7f7f7
;
float
:
left
;
display
:
inline-block
;
background
:
#f7f7f7
;
padding
:
20px
0
20px
2%
;
margin
:
0
;
}
body
.project-page
input
.text.git-url
,
body
.projects-page
input
.text.git-url
{
font-size
:
12px
;
border-radius
:
5px
;
color
:
#666
;
box-shadow
:
0
1px
2px
rgba
(
0
,
0
,
0
,.
2
)
inset
;
padding
:
8px
0
8px
30px
;
margin-bottom
:
20px
;
background
:
white
url('images.png')
no-repeat
8px
-40px
;
width
:
136px
}
body
.projects-page
input
.text.git-url
{
margin
:
10px
0
0
}
.git_url_wrapper
{
margin-right
:
50px
}
...
...
app/helpers/application_helper.rb
View file @
5bc97fbd
...
...
@@ -48,7 +48,7 @@ module ApplicationHelper
def
grouped_options_refs
(
destination
=
:tree
)
options
=
[
[
"Branch"
,
@repo
.
heads
.
map
(
&
:name
)
],
[
"Branch"
,
@
project
.
repo
.
heads
.
map
(
&
:name
)
],
[
"Tag"
,
@project
.
tags
]
]
...
...
app/views/commits/index.html.haml
View file @
5bc97fbd
...
...
@@ -3,17 +3,15 @@
-#%a.right.button{:href => "#"} Download
-#-if can? current_user, :admin_project, @project
%a.right.button.blue{:href => "#"} EDIT
%h2
.icon
%
spa
n
%d
=
link_to
project_commits_path
(
@project
)
do
=
@project
.
name
-
if
params
[
:path
]
-
if
params
[
:path
]
%
h2
.ico
n
%span
%d
=
link_to
project_commits_path
(
@project
)
do
=
@project
.
code
\/
%a
{
:href
=>
"#"
}=
params
[
:path
].
split
(
"/"
).
join
(
" / "
)
.right
=
render
:partial
=>
"projects/refs"
,
:locals
=>
{
:destination
=>
:commits
}
%div
{
:id
=>
dom_id
(
@project
)}
#commits_list
=
render
"commits"
.clear
...
...
app/views/layouts/_middle_panel.html.haml
0 → 100644
View file @
5bc97fbd
%h4
.middle-panel
.project_name
=
truncate
@project
.
name
,
:length
=>
20
.git_url_wrapper
%input
.git-url.text
{
:id
=>
""
,
:name
=>
""
,
:readonly
=>
""
,
:type
=>
"text"
,
:value
=>
@project
.
url_to_repo
,
:class
=>
"one_click_select"
}
-
if
@project
.
repo_exists?
.right
=
render
:partial
=>
"projects/refs"
,
:locals
=>
{
:destination
=>
controller
.
controller_name
==
"commits"
?
"commits"
:
"tree"
}
app/views/layouts/project.html.haml
View file @
5bc97fbd
...
...
@@ -17,11 +17,10 @@
=
render
:partial
=>
"layouts/flash"
#container
=
render
:partial
=>
"layouts/head_panel"
=
render
:partial
=>
"layouts/middle_panel"
if
@project
&&
!
@project
.
new_record?
.project-container
.project-sidebar
.fixed
.git_url_wrapper
%input
.git-url.text
{
:id
=>
""
,
:name
=>
""
,
:readonly
=>
""
,
:type
=>
"text"
,
:value
=>
@project
.
url_to_repo
,
:class
=>
"one_click_select"
}
%aside
=
link_to
"Activities"
,
project_path
(
@project
),
:class
=>
current_page?
(
:controller
=>
"projects"
,
:action
=>
"show"
,
:id
=>
@project
)
?
"current"
:
nil
=
link_to
"Tree"
,
tree_project_ref_path
(
@project
,
@project
.
root_ref
),
:class
=>
current_page?
(
:controller
=>
"refs"
,
:action
=>
"tree"
,
:project_id
=>
@project
,
:id
=>
@ref
||
@project
.
root_ref
)
?
"current"
:
nil
...
...
app/views/refs/_tree.html.haml
View file @
5bc97fbd
...
...
@@ -8,7 +8,6 @@
\/
=
link
.right
=
render
:partial
=>
"projects/refs"
,
:locals
=>
{
:destination
=>
:tree
}
.clear
#tree-content-holder
-
if
tree
.
is_blob?
...
...
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