Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
79a3d667
Commit
79a3d667
authored
Dec 07, 2005
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Makefile.am : add new browse.xml file
* functions.js : add option to select directories too
parent
cca6fda3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
share/Makefile.am
share/Makefile.am
+1
-0
share/http/functions.js
share/http/functions.js
+9
-0
share/http/style.css
share/http/style.css
+1
-1
No files found.
share/Makefile.am
View file @
79a3d667
...
...
@@ -74,6 +74,7 @@ DIST_skins2 = \
DIST_http
=
\
http/favicon.ico
\
http/functions.js
\
http/requests/browse.xml
\
http/requests/playlist.xml
\
http/requests/status.xml
\
http/style.css
\
...
...
share/http/functions.js
View file @
79a3d667
...
...
@@ -699,6 +699,15 @@ function parse_browse_dir( )
pos
.
lastChild
.
setAttribute
(
'
href
'
,
'
javascript:browse_path(
\'
'
+
elt
.
getAttribute
(
'
path
'
)
+
'
\'
);
'
);
}
pos
.
lastChild
.
appendChild
(
document
.
createTextNode
(
elt
.
getAttribute
(
'
name
'
)
)
);
if
(
elt
.
getAttribute
(
'
type
'
)
==
'
directory
'
)
{
pos
.
appendChild
(
document
.
createTextNode
(
'
'
)
);
pos
.
appendChild
(
document
.
createElement
(
"
a
"
)
);
pos
.
lastChild
.
setAttribute
(
'
class
'
,
'
browser
'
);
pos
.
lastChild
.
setAttribute
(
'
href
'
,
'
javascript:browse_path(
\'
'
+
elt
.
getAttribute
(
'
path
'
)
+
'
\'
);
'
);
pos
.
lastChild
.
appendChild
(
document
.
createTextNode
(
'
(select)
'
)
);
}
pos
.
appendChild
(
document
.
createElement
(
"
br
"
)
);
}
elt
=
elt
.
nextSibling
;
}
...
...
share/http/style.css
View file @
79a3d667
...
...
@@ -109,7 +109,7 @@ div.pl_node, a.pl_leaf {
div
.pl_node
{
font-style
:
italic
;
}
a
.pl_leaf
,
a
.browser
{
a
.pl_leaf
{
font-style
:
normal
;
color
:
#00f
;
text-decoration
:
underline
;
...
...
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