~ubuntu-branches/ubuntu/quantal/banshee/quantal-updates

« back to all changes in this revision

Viewing changes to src/Libraries/Migo/Migo.Syndication/RssParser.cs

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2011-09-15 02:37:59 UTC
  • mfrom: (6.3.18 experimental)
  • Revision ID: package-import@ubuntu.com-20110915023759-q4mnp6t5qgo442c5
Tags: 2.1.4-1ubuntu1
* Merge from Debian Experimental, remaining changes:
  + Enable SoundMenu and Disable NotificationArea by default
  + Disable boo and karma extensions
  + Enable and recommnd u1ms and soundmenu extensions
  + Move desktop file for Meego UI to /usr/share/une/applications
  + Change the url for the Amazon store redirector
* [5ba1472] Move banshee-extension-ubuntuonemusicstore to Suggests.
  Thanks to Rodney Dawes <rodney.dawes@ubuntu.com> (LP: #833824)
* [08dea2c] Revert "Fix invalid cast causing ftbfs with libgpod"

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
            this.url = url;
49
49
            xml = xml.TrimStart ();
50
50
            doc = new XmlDocument ();
 
51
            // Don't resolve any external references, see bgo#601554
 
52
            doc.XmlResolver = null;
 
53
            
51
54
            try {
52
55
                doc.LoadXml (xml);
53
56
            } catch (XmlException e) {