~ubuntu-branches/ubuntu/jaunty/beagle/jaunty-security

« back to all changes in this revision

Viewing changes to Util/SemWeb/RdfReader.cs

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ebner
  • Date: 2008-05-04 00:31:32 UTC
  • mfrom: (1.1.21 upstream)
  • Revision ID: james.westby@ubuntu.com-20080504003132-2tkm5o8moo5952ri
Tags: 0.3.7-2ubuntu1
 * Merge from Debian unstable. (LP: #225746) Remaining Ubuntu changes:
  - debian/control:
    + Rename ice{weasel,dove}-beagle to {mozilla,thunderbird}-beagle and
      and update the dependencies accordingly.
    + Change Maintainer to Ubuntu Mono Team.
  - debian/rules:
    + Install the mozilla-beagle and thunderbird-beagle extensions.
  - ice{dove,weasel}.dirs:
    + Renamed to {mozilla,thunderbird}-beagle.dirs.
    + Fixed paths to point to usr/lib/{firefox,thunderbird}

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
using System;
2
2
using System.Collections;
3
3
using System.IO;
4
 
using System.Web;
5
4
 
6
5
namespace SemWeb {
7
6
        public class ParserException : ApplicationException {
74
73
                        }
75
74
                }
76
75
                
 
76
                /*
77
77
                public static RdfReader LoadFromUri(Uri webresource) {
78
78
                        // TODO: Add Accept header for HTTP resources.
79
79
                        
106
106
 
107
107
                        throw new InvalidOperationException("Could not determine the RDF format of the resource.");
108
108
                }
 
109
                */
109
110
                
110
111
                internal static TextReader GetReader(string file) {
111
112
                        if (file == "-") return Console.In;