Sweet, thanks! Looks like we were both looking into it at the exact same time :-)
-- Cosme On 7/25/06, Stephane Delcroix <[EMAIL PROTECTED]> wrote: > Hi Cosme, but also hi Dotan, Bengt and all the other guys interested in > this... > > > > > Last problem I remember is tags using non ASCII characters as you > > discussed recently. > > > > After spending something like 2 hours on tracking this issue, I finally > found out !!!! > > it's as simple as replacing (in src/XmpTagsMetadata.cs): > > string stmt_pre_str = stmt.Predicate.ToString(); > string stmt_obj_str = stmt.Object.ToString() > > by: > > string stmt_pre_str = stmt.Predicate.ToString(); > string stmt_obj_str; > if (stmt.Object is SemWeb.Literal) > stmt_obj_str = ((SemWeb.Literal)(stmt.Object)).Value; > else > stmt_obj_str = stmt.Object.ToString(); > > > Now, the XMP import patch can handle special (read utf8) characters !!!! > -- > Stephane Delcroix > [EMAIL PROTECTED] _______________________________________________ F-spot-list mailing list [email protected] http://mail.gnome.org/mailman/listinfo/f-spot-list
