Bugs item #1512876, was opened at 2006-06-26 20:10
Message generated for change (Comment added) made by rwst
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=604306&aid=1512876&group_id=93438
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Importing
Group: All Platforms
>Status: Closed
>Resolution: Invalid
Priority: 8
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Ralf Stephan (rwst)
Summary: File/Text-Import doesn't work
Initial Comment:
OpenSuse 10.1, Inkscape 0.44: When trying to import a
*.txt-file via File/Import, an error appears (sorry,
it's german): "Laden der gewünschten Datei XXXX
fehlgeschlagen".
----------------------------------------------------------------------
>Comment By: Ralf Stephan (rwst)
Date: 2006-06-30 12:44
Message:
Logged In: YES
user_id=1275729
so, obviously, you have to install the SVG module of the
perl package (this opens a bug with respect to the Gentoo
ebuild, mind you)
----------------------------------------------------------------------
Comment By: Ralf Stephan (rwst)
Date: 2006-06-30 12:31
Message:
Logged In: YES
user_id=1275729
the reason for the unspecified error is twofold: someone
converted char* to Glib::ustring without checking if all
usages are converted too, so we got something like
Glib::ustring s;
if (s != NULL) do_something();
which is equivalent to
if (s.compare(NULL) != 0) do_something;
which virtually never does something, so you never got the
real error message from the txt2svg.pl script which is
Can't locate SVG.pm in @INC (@INC contains: /etc/perl
/usr/lib/perl5/vendor_perl/5.8.8/i686-linux
/usr/lib/perl5/vendor_perl/5.8.8
/usr/lib/perl5/vendor_perl/5.8.7
/usr/lib/perl5/vendor_perl/5.8.7/i686-linux
/usr/lib/perl5/vendor_perl
/usr/lib/perl5/site_perl/5.8.8/i686-linux
/usr/lib/perl5/site_perl/5.8.8 /usr/lib/perl5/site_perl
/usr/lib/perl5/5.8.8/i686-linux /usr/lib/perl5/5.8.8
/usr/local/lib/site_perl .) at
/usr/local/share/inkscape/extensions/txt2svg.pl line 6.
BEGIN failed--compilation aborted at
/usr/local/share/inkscape/extensions/txt2svg.pl line 6.
----------------------------------------------------------------------
Comment By: Ralf Stephan (rwst)
Date: 2006-06-30 10:49
Message:
Logged In: YES
user_id=1275729
confirmed with svn. it also gives a Glib-CRITICAL:
g_utf8_collate: assertion 'str2 != NULL' failed
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=604306&aid=1512876&group_id=93438
|