Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
d739fe06
Commit
d739fe06
authored
Feb 12, 2012
by
Pierre Ynard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
metachannels: properly resolve xml entities
parent
9dd9ba63
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
share/lua/sd/metachannels.lua
share/lua/sd/metachannels.lua
+6
-6
No files found.
share/lua/sd/metachannels.lua
View file @
d739fe06
...
...
@@ -37,11 +37,11 @@ function search( string )
for
_
,
item
in
ipairs
(
channel
.
children
)
do
if
(
item
.
name
==
'item'
)
then
simplexml
.
add_name_maps
(
item
)
local
url
=
string.gsub
(
item
.
children_map
[
'link'
][
1
].
children
[
1
],
'&'
,
'&'
)
local
title
=
item
.
children_map
[
'title'
][
1
].
children
[
1
]
local
url
=
vlc
.
strings
.
resolve_xml_special_chars
(
item
.
children_map
[
'link'
][
1
].
children
[
1
]
)
local
title
=
vlc
.
strings
.
resolve_xml_special_chars
(
item
.
children_map
[
'title'
][
1
].
children
[
1
]
)
local
arturl
=
nil
if
item
.
children_map
[
'media:thumbnail'
]
~=
nil
then
arturl
=
item
.
children_map
[
'media:thumbnail'
][
1
].
attributes
[
'url'
]
arturl
=
vlc
.
strings
.
resolve_xml_special_chars
(
item
.
children_map
[
'media:thumbnail'
][
1
].
attributes
[
'url'
]
)
if
(
arturl
==
'/images/thumb_channel_default.jpg'
)
then
arturl
=
'http://www.metachannels.com/images/thumb_channel_default.jpg'
end
...
...
@@ -60,11 +60,11 @@ function main()
for
_
,
item
in
ipairs
(
channel
.
children
)
do
if
(
item
.
name
==
'item'
)
then
simplexml
.
add_name_maps
(
item
)
local
url
=
string.gsub
(
item
.
children_map
[
'link'
][
1
].
children
[
1
],
'&'
,
'&'
)
local
title
=
item
.
children_map
[
'title'
][
1
].
children
[
1
]
local
url
=
vlc
.
strings
.
resolve_xml_special_chars
(
item
.
children_map
[
'link'
][
1
].
children
[
1
]
)
local
title
=
vlc
.
strings
.
resolve_xml_special_chars
(
item
.
children_map
[
'title'
][
1
].
children
[
1
]
)
local
arturl
=
nil
if
item
.
children_map
[
'image'
]
~=
nil
then
arturl
=
item
.
children_map
[
'image'
][
1
].
children_map
[
'url'
][
1
].
children
[
1
]
arturl
=
vlc
.
strings
.
resolve_xml_special_chars
(
item
.
children_map
[
'image'
][
1
].
children_map
[
'url'
][
1
].
children
[
1
]
)
end
local
node
=
vlc
.
sd
.
add_item
(
{
path
=
url
,
title
=
title
,
...
...
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