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
1c7bedae
Commit
1c7bedae
authored
Sep 25, 2011
by
Rob Jonson
Committed by
Rémi Denis-Courmont
Sep 26, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revert previous attempt to make browse handle uri and path in the dir param
Signed-off-by:
Rémi Denis-Courmont
<
remi@remlab.net
>
parent
454d3de2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
13 deletions
+2
-13
share/lua/intf/modules/httprequests.lua
share/lua/intf/modules/httprequests.lua
+2
-13
No files found.
share/lua/intf/modules/httprequests.lua
View file @
1c7bedae
...
...
@@ -356,30 +356,19 @@ end
getbrowsetable
=
function
()
local
dir
=
_GET
[
"dir"
]
if
dir
==
nil
then
dir
=
""
end
--allow browse to deal with file-style URI's as well as paths
local
start
=
string.sub
(
dir
,
0
,
8
)
if
start
==
"file:///"
then
dir
=
string.sub
(
dir
,
9
)
end
local
dir
=
_GET
[
"dir"
]
local
result
=
{}
--paths are returned as an array of elements
result
.
element
=
{}
result
.
element
.
_array
=
{}
if
dir
then
if
dir
==
"~"
then
dir
=
vlc
.
misc
.
homedir
()
end
dir
=
common
.
realpath
(
dir
..
"/"
)
local
d
=
vlc
.
net
.
opendir
(
dir
)
table.sort
(
d
)
--paths are returned as an array of elements
for
_
,
f
in
pairs
(
d
)
do
if
f
==
".."
or
not
string.match
(
f
,
"^%."
)
then
local
df
=
common
.
realpath
(
dir
..
f
)
...
...
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