Re: [Introspector-developers] Re: Redland/Raptor issue solved
Status: Beta
Brought to you by:
mdupont
|
From: Bernardi M. L. <mar...@in...> - 2003-01-15 17:55:57
|
> And for raptor issues : > re...@ya... > http://groups.yahoo.com/group/redland/ > > the current issue : ah yes > > that is the change in the interator ; > in the new system you use > http://www.redland.opensource.ac.uk/docs/pod/RDF/Redland/Iterator.html > > my $iterator=$model->targets_iterator($source_node, $arc_node); > while($iterator && !$iterator->end) { > my $node=$iterator->current; > ... > $iterator->next; > } > > in the older you use > i next just next, and that returns the current > iirc : > my $iterator=$model->targets_iterator($source_node, $arc_node); > while (defined($x)) > { > $x = $iterator->next; > } > > give me an error on swig processing. It says there is a syntax error > Okey , the issue is resolved , perl interface for redland wants a recent swig version. I've compiled it fine with 1.3.15. Thanks to dajobe on #rdfig. Cheers, Mario L. Bernardi |