Lines Matching refs:uri
151 _load_uri (const gchar *uri)
159 gchar* uri_local = g_filename_from_utf8( uri, -1, &bytesRead, &bytesWritten, &error);
188 \param uri The path to the file (UTF-8)
193 Svg::open (Inkscape::Extension::Input */*mod*/, const gchar *uri)
196 if (!gnome_vfs_initialized() || gnome_vfs_uri_is_local(gnome_vfs_uri_new(uri))) {
198 return SPDocument::createNewDoc(uri, TRUE);
200 gchar * buffer = _load_uri(uri);
202 g_warning("Error: Could not open file '%s' with VFS\n", uri);
210 return SPDocument::createNewDoc(uri, TRUE);
221 \param uri The filename to save the file to.