Make the shell to be able to display URIs that the user specified on

the command-line.

svn path=/trunk/; revision=10554
This commit is contained in:
Ettore Perazzoli
2001-06-28 04:50:02 +00:00
parent 764cfb5a6b
commit 268c7dbe42
9 changed files with 159 additions and 47 deletions

View File

@ -48,13 +48,15 @@ module Evolution {
/* FIXME: We might want more exceptions here. */
exception NotFound {};
exception UnsupportedType {};
exception UnsupportedSchema {};
exception InternalError {};
Bonobo::Control createView (in string physical_uri,
in string type)
raises (NotFound, UnsupportedType, InternalError);
void handleExternalURI (in string external_uri);
void handleExternalURI (in string external_uri)
raises (NotFound, UnsupportedSchema, InternalError);
exception Busy {};