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
d567b23b
Commit
d567b23b
authored
Dec 13, 2011
by
Jeremy Mack
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into bulk_repo_import
Conflicts: app/views/refs/_tree.html.haml
parents
3a144328
713802fd
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
32 additions
and
4 deletions
+32
-4
app/assets/images/ajax-loader-facebook.gif
app/assets/images/ajax-loader-facebook.gif
+0
-0
app/assets/javascripts/loader.js
app/assets/javascripts/loader.js
+11
-0
app/assets/stylesheets/projects.css.scss
app/assets/stylesheets/projects.css.scss
+6
-0
app/views/dashboard/_menu.html.haml
app/views/dashboard/_menu.html.haml
+10
-2
app/views/refs/_tree.html.haml
app/views/refs/_tree.html.haml
+5
-2
No files found.
app/assets/images/ajax-loader-facebook.gif
0 → 100644
View file @
d567b23b
723 Bytes
app/assets/javascripts/loader.js
0 → 100644
View file @
d567b23b
var
Loader
=
{
img_src
:
"
/assets/ajax-loader.gif
"
,
html
:
function
(
width
)
{
img
=
$
(
"
<img>
"
);
img
.
attr
(
"
width
"
,
width
);
img
.
attr
(
"
src
"
,
this
.
img_src
);
return
img
;
}
}
app/assets/stylesheets/projects.css.scss
View file @
d567b23b
...
@@ -581,3 +581,9 @@ h4.middle-panel {
...
@@ -581,3 +581,9 @@ h4.middle-panel {
}
}
}
}
}
}
.dashboard-loader
{
float
:right
;
margin-right
:
30px
;
display
:none
;
}
app/views/dashboard/_menu.html.haml
View file @
d567b23b
...
@@ -2,12 +2,20 @@
...
@@ -2,12 +2,20 @@
=
link_to
"Activities"
,
dashboard_path
,
:remote
=>
true
,
:class
=>
"button-small dash-button
#{
"active"
if
current_page?
(
dashboard_path
)
||
current_page?
(
root_path
)
}
"
,
:id
=>
"activities_slide"
=
link_to
"Activities"
,
dashboard_path
,
:remote
=>
true
,
:class
=>
"button-small dash-button
#{
"active"
if
current_page?
(
dashboard_path
)
||
current_page?
(
root_path
)
}
"
,
:id
=>
"activities_slide"
=
link_to
"Issues"
,
dashboard_issues_path
,
:remote
=>
true
,
:class
=>
"button-small dash-button
#{
"active"
if
current_page?
(
dashboard_issues_path
)
}
"
,
:id
=>
"issues_slide"
=
link_to
"Issues"
,
dashboard_issues_path
,
:remote
=>
true
,
:class
=>
"button-small dash-button
#{
"active"
if
current_page?
(
dashboard_issues_path
)
}
"
,
:id
=>
"issues_slide"
=
link_to
"Merge Requests"
,
dashboard_merge_requests_path
,
:remote
=>
true
,
:class
=>
"button-small dash-button
#{
"active"
if
current_page?
(
dashboard_merge_requests_path
)
}
"
,
:id
=>
"merge_requests_slide"
=
link_to
"Merge Requests"
,
dashboard_merge_requests_path
,
:remote
=>
true
,
:class
=>
"button-small dash-button
#{
"active"
if
current_page?
(
dashboard_merge_requests_path
)
}
"
,
:id
=>
"merge_requests_slide"
%img
{
:src
=>
"/assets/ajax-loader-facebook.gif"
,
:class
=>
"dashboard-loader"
}
:javascript
:javascript
$
(
function
(){
$
(
function
(){
$
(
"
.dash-button
"
).
live
(
"
click
"
,
function
()
{
$
(
"
.dash-button
"
).
live
(
"
click
"
,
function
()
{
$
(
"
.dash-button
"
).
removeClass
(
"
active
"
);
$
(
"
.dash-button
"
).
removeClass
(
"
active
"
);
$
(
this
).
addClass
(
"
active
"
);
$
(
this
).
addClass
(
"
active
"
);
})
});
$
(
"
.dash-button
"
).
live
(
"
ajax:before
"
,
function
()
{
$
(
"
.dashboard-loader
"
).
show
();
});
$
(
"
.dash-button
"
).
live
(
"
ajax:complete
"
,
function
()
{
$
(
"
.dashboard-loader
"
).
hide
();
});
});
});
app/views/refs/_tree.html.haml
View file @
d567b23b
...
@@ -35,11 +35,14 @@
...
@@ -35,11 +35,14 @@
-
contents
.
select
{
|
i
|
i
.
is_a?
(
Grit
::
Blob
)}.
each
do
|
content
|
-
contents
.
select
{
|
i
|
i
.
is_a?
(
Grit
::
Blob
)}.
each
do
|
content
|
=
render
:partial
=>
"refs/tree_item"
,
:locals
=>
{
:content
=>
content
}
=
render
:partial
=>
"refs/tree_item"
,
:locals
=>
{
:content
=>
content
}
-
if
content
=
contents
.
select
{
|
c
|
c
.
is_a?
(
Grit
::
Blob
)
and
c
.
name
=~
/^readme
\.(md|markdown)$
/i
}.
first
-
if
content
=
contents
.
select
{
|
c
|
c
.
is_a?
(
Grit
::
Blob
)
and
c
.
name
=~
/^readme/i
}.
first
#tree-readme-holder
#tree-readme-holder
%h3
=
content
.
name
%h3
=
content
.
name
.readme
.readme
-
if
content
.
name
=~
/\.(md|markdown)$/i
=
markdown
(
encode
content
.
data
)
=
markdown
(
encode
content
.
data
)
-
else
=
simple_format
(
encode
content
.
data
)
:javascript
:javascript
$
(
function
(){
$
(
function
(){
...
...
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