[zdf] Use _download_xml
authorPhilipp Hagemeister <phihag@phihag.de>
Thu, 28 Nov 2013 04:47:50 +0000 (05:47 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Thu, 28 Nov 2013 04:47:50 +0000 (05:47 +0100)
youtube_dl/extractor/common.py
youtube_dl/extractor/zdf.py
youtube_dl/utils.py

index 5656445a3360b8e908280e967bb97fe5b22beffc..4f1b50880f73a7715a886e18122e40ca2f79023f 100644 (file)
@@ -210,7 +210,8 @@ class InfoExtractor(object):
         """ Returns the data of the page as a string """
         return self._download_webpage_handle(url_or_request, video_id, note, errnote)[0]
 
-    def _download_xml(self, url_or_request, video_id, note=u'Downloading XML', errnote=u'Unable to downloand XML'):
+    def _download_xml(self, url_or_request, video_id,
+                      note=u'Downloading XML', errnote=u'Unable to download XML'):
         """Return the xml as an xml.etree.ElementTree.Element"""
         xml_string = self._download_webpage(url_or_request, video_id, note, errnote)
         return xml.etree.ElementTree.fromstring(xml_string.encode('utf-8'))
index 3c01cc04189de8f3983465f43275c7058413b62d..689f19735456e2a05defe8f2eb49c5b2f4848580 100644 (file)
@@ -5,7 +5,6 @@ import re
 
 from .common import InfoExtractor
 from ..utils import (
-    parse_xml_doc,
     unified_strdate,
 )
 
@@ -30,9 +29,10 @@ class ZDFIE(InfoExtractor):
         video_id = mobj.group('video_id')
 
         xml_url = u'http://www.zdf.de/ZDFmediathek/xmlservice/web/beitragsDetails?ak=web&id=%s' % video_id
-        info_xml = self._download_webpage(
-            xml_url, video_id, note=u'Downloading video info')
-        doc = parse_xml_doc(info_xml)
+        doc = self._download_xml(
+            xml_url, video_id,
+            note=u'Downloading video info',
+            errnote=u'Failed to download video info')
 
         title = doc.find('.//information/title').text
         description = doc.find('.//information/detail').text
index 946e90e93061bb7ff26b46595dfd7930974323b9..c486ef8ecfef9772aaabdb3863a2814349a296b7 100644 (file)
@@ -1009,11 +1009,6 @@ def unsmuggle_url(smug_url):
     return url, data
 
 
-def parse_xml_doc(s):
-    assert isinstance(s, type(u''))
-    return xml.etree.ElementTree.fromstring(s.encode('utf-8'))
-
-
 def format_bytes(bytes):
     if bytes is None:
         return u'N/A'