Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
7813a370
Commit
7813a370
authored
Oct 17, 2009
by
Ilkka Ollakka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
katsomo.lua: add code to handle both treeId and progId in url
parent
f513e2cc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
share/lua/playlist/katsomo.lua
share/lua/playlist/katsomo.lua
+10
-5
No files found.
share/lua/playlist/katsomo.lua
View file @
7813a370
...
...
@@ -24,6 +24,7 @@
function
probe
()
return
vlc
.
access
==
"http"
and
string.match
(
vlc
.
path
,
"www.katsomo.fi"
)
and
(
string.match
(
vlc
.
path
,
"treeId"
)
or
string.match
(
vlc
.
path
,
"progId"
)
)
end
function
find
(
haystack
,
needle
)
...
...
@@ -34,6 +35,13 @@ end
-- Parse function.
function
parse
()
p
=
{}
if
string.match
(
vlc
.
path
,
"progId"
)
then
programid
=
string.match
(
vlc
.
path
,
"progId=(%d+)"
)
path
=
"http://www.katsomo.fi/metafile.asx?p="
..
programid
..
"&bw=800"
table.insert
(
p
,
{
path
=
path
;
}
)
return
p
end
while
true
do
line
=
vlc
.
readline
()
...
...
@@ -42,11 +50,8 @@ function parse()
then
title
=
vlc
.
strings
.
decode_uri
(
find
(
line
,
"<title>(.-)<"
)
)
end
if
string.match
(
line
,
"<li class=\"
program
\
""
)
then
description
=
vlc
.
strings
.
resolve_xml_special_chars
(
find
(
line
,
"title=\"
(.
-
)
\
""
)
)
end
for
programid
in
string.gmatch
(
line
,
"<li class=\"
program
\
" id=\"
program
(.
-
)
\
""
)
do
for
programid
in
string.gmatch
(
line
,
"<li class=\"
program
\
" id=\"
program
(
%
d
+
)
\
""
)
do
description
=
vlc
.
strings
.
resolve_xml_special_chars
(
find
(
line
,
"title=\"
(.
+
)
\
""
)
)
path
=
"http://www.katsomo.fi/metafile.asx?p="
..
programid
..
"&bw=800"
table.insert
(
p
,
{
path
=
path
;
name
=
title
;
description
=
description
;
url
=
vlc
.
path
;}
)
end
...
...
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