Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
0ba30931
Commit
0ba30931
authored
10 years ago
by
Jörn Friedrich Dreyer
Browse files
Options
Downloads
Patches
Plain Diff
full page search results
parent
4b357274
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
search/css/results.css
+20
-20
20 additions, 20 deletions
search/css/results.css
search/js/result.js
+25
-7
25 additions, 7 deletions
search/js/result.js
search/templates/part.results.php
+2
-1
2 additions, 1 deletion
search/templates/part.results.php
with
47 additions
and
28 deletions
search/css/results.css
+
20
−
20
View file @
0ba30931
...
...
@@ -4,26 +4,16 @@
#searchresults
{
background-color
:
#fff
;
border-bottom-left-radius
:
11px
;
box-shadow
:
0
0
10px
#000
;
list-style
:
none
;
max-height
:
80%
;
overflow-x
:
hidden
;
overflow-y
:
auto
;
padding-bottom
:
6px
;
position
:
fixed
;
right
:
0
;
text-overflow
:
ellipsis
;
top
:
45px
;
width
:
380
px
;
max-width
:
95
%
;
top
:
0
;
padding-top
:
45
px
;
height
:
100
%
;
z-index
:
75
;
}
.ie8
#searchresults
{
border
:
1px
solid
#666
!important
;
}
#searchresults
li
.resultHeader
{
background-color
:
#eee
;
border-bottom
:
solid
1px
#CCC
;
...
...
@@ -44,22 +34,34 @@
}
#searchresults
td
{
padding
:
0
.3em
;
height
:
44px
;
border-top
:
20px
solid
white
;
border-bottom
:
none
;
}
#searchresults
tr
.template
{
display
:
none
;
}
#searchresults
.name
,
#searchresults
.text
{
#searchresults
.text
,
#searchresults
.path
{
white-space
:
nowrap
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
}
#searchresults
.name
{
font-size
:
larger
;
}
#searchresults
.text
{
padding-left
:
16px
;
color
:
#999
;
white-space
:
normal
;
color
:
#545454
;
}
#searchresults
.path
{
color
:
green
;
}
#searchresults
.text
em
{
color
:
#545454
;
font-weight
:
bold
;
opacity
:
1
;
}
#searchresults
td
.result
*
{
...
...
@@ -79,8 +81,6 @@
}
#searchresults
td
.type
{
border-bottom
:
none
;
border-right
:
1px
solid
#aaa
;
font-weight
:
700
;
text-align
:
right
;
width
:
3.5em
;
...
...
This diff is collapsed.
Click to expand it.
search/js/result.js
+
25
−
7
View file @
0ba30931
...
...
@@ -45,8 +45,8 @@ OC.search.showResults=function(results){
return
;
}
if
(
!
OC
.
search
.
showResults
.
loaded
){
var
parent
=
$
(
'
<div/>
'
);
$
(
'
body
'
).
append
(
parent
);
var
parent
=
$
(
'
<div
class="searchresults-wrapper"
/>
'
);
$
(
'
#app-content
'
).
append
(
parent
);
parent
.
load
(
OC
.
filePath
(
'
search
'
,
'
templates
'
,
'
part.results.php
'
),
function
(){
OC
.
search
.
showResults
.
loaded
=
true
;
$
(
'
#searchresults
'
).
click
(
function
(
event
){
...
...
@@ -74,19 +74,37 @@ OC.search.showResults=function(results){
var
row
=
$
(
'
#searchresults tr.template
'
).
clone
();
row
.
removeClass
(
'
template
'
);
row
.
addClass
(
'
result
'
);
row
.
data
(
'
type
'
,
typeid
);
row
.
data
(
'
name
'
,
type
[
i
].
name
);
row
.
data
(
'
path
'
,
type
[
i
].
path
);
row
.
data
(
'
text
'
,
type
[
i
].
text
);
row
.
data
(
'
index
'
,
index
);
if
(
i
===
0
){
var
typeName
=
OC
.
search
.
resultTypes
[
typeid
];
row
.
children
(
'
td.type
'
).
text
(
t
(
'
lib
'
,
typeName
));
}
if
(
type
[
i
].
path
)
{
OCA
.
Files
.
App
.
fileList
.
lazyLoadPreview
({
path
:
type
[
i
].
path
,
mime
:
type
[
i
].
mime_type
,
callback
:
function
(
url
)
{
row
.
find
(
'
td.type
'
).
css
(
'
background-image
'
,
'
url(
'
+
url
+
'
)
'
);
}
});
}
row
.
find
(
'
td.result div.name
'
).
text
(
type
[
i
].
name
);
row
.
find
(
'
td.result div.text
'
).
text
(
type
[
i
].
text
);
row
.
find
(
'
td.result div.path
'
).
text
(
type
[
i
].
path
);
if
(
typeof
type
[
i
].
highlights
===
'
object
'
)
{
var
highlights
=
type
[
i
].
highlights
.
join
(
'
…
'
);
row
.
find
(
'
td.result div.text
'
).
html
(
highlights
);
}
else
{
row
.
find
(
'
td.result div.text
'
).
text
(
type
[
i
].
text
);
}
if
(
type
[
i
].
path
)
{
var
parent
=
OC
.
dirname
(
type
[
i
].
path
);
if
(
parent
===
''
)
{
...
...
@@ -105,7 +123,7 @@ OC.search.showResults=function(results){
}
else
{
row
.
find
(
'
td.result a
'
).
attr
(
'
href
'
,
type
[
i
].
link
);
}
index
++
;
/**
* Give plugins the ability to customize the search results. For example:
...
...
This diff is collapsed.
Click to expand it.
search/templates/part.results.php
+
2
−
1
View file @
0ba30931
...
...
@@ -5,7 +5,8 @@
<td
class=
"type"
></td>
<td
class=
"result"
>
<a>
<div
class=
"name"
></div>
<div
class=
"name"
></div><div
class=
"storage"
></div>
<div
class=
"path"
></div>
<div
class=
"text"
></div>
</a>
</td>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment