After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 136161 - wrong report of selected text with yelp
wrong report of selected text with yelp
Status: RESOLVED FIXED
Product: gnopernicus
Classification: Deprecated
Component: general
unspecified
Other Linux
: Normal normal
: ---
Assigned To: remus draica
remus draica
AP2
Depends on: 301040
Blocks:
 
 
Reported: 2004-03-04 09:38 UTC by remus draica
Modified: 2006-02-09 11:14 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
proposed patch (4.78 KB, patch)
2005-02-15 12:54 UTC, remus draica
needs-work Details | Review
reworked patch (4.78 KB, patch)
2005-03-22 09:45 UTC, remus draica
needs-work Details | Review
reworked patch (5.57 KB, patch)
2005-04-15 12:47 UTC, remus draica
committed Details | Review

Description remus draica 2004-03-04 09:38:34 UTC
When selected text belongs to more than 1 object, gnopernicus reports only
the selected text for current object.

This behaviour is because for a visible text object is no reliable way to
get next visible sibling. 

Example for yelp hierarchy:
 html-container
    panel
       panel
          panel
             text
          panel
             text
          panel
             panel
                panel
                   text
                   text


This bug is the remained issue for bug 120730.
Comment 1 padraig.obriain 2004-03-09 09:20:22 UTC
The flows-from flows-to relations should be present.
Comment 2 Calum Benson 2004-10-21 16:40:55 UTC
Apologies for spam-- ensuring Sun a11y team are cc'ed on all current a11y bugs.
 Filter on "SUN A11Y SPAM" to ignore.
Comment 3 remus draica 2005-02-15 12:54:12 UTC
Created attachment 37489 [details] [review]
proposed patch
Comment 4 bill.haneman 2005-03-21 15:38:06 UTC
Comment on attachment 37489 [details] [review]
proposed patch

Please use ALLCAPS for this macro, or rename it.  Using the naming convention
you use below, it would be likely to conflict with a 'real'
AccessibleRelationSet_free() API if we add one in the future (and we probably
should).


>+#define AccessibleRelationSet_free(rel)			\
>+    {							\
>+	gint k;						\
>+	srl_assert (rel);				\
>+	for (k = 0; rel[k]; k++)			\
>+	    AccessibleRelation_unref (rel[k]);		\
>+	g_free (rel);					\
>+    }
Comment 5 remus draica 2005-03-21 16:06:33 UTC
That was the ideea. When that function will be added in at-spi, the macro will
be removed without other changes.
Comment 6 bill.haneman 2005-03-21 16:27:10 UTC
Remus: that would make gnopernicus depend _forwards and backwards_ on specific
versions of at-spi, which is not OK.
Comment 7 remus draica 2005-03-22 09:36:53 UTC
gnopernicus will depend forwards on a specific at-spi version when the new
function will be added.
Comment 8 remus draica 2005-03-22 09:45:13 UTC
Created attachment 39059 [details] [review]
reworked patch
Comment 9 bill.haneman 2005-04-04 15:08:53 UTC
Comment on attachment 39059 [details] [review]
reworked patch

>Index: gnopernicus/srlow/libsrlow/SRObject.c
...
>+	if (cnt > 0)
>+	{
>+	    gchar *str = NULL;
>+	    long int sp, ep;
>+	    AccessibleText_getSelection (text, cnt - 1, &sp, &ep);
>+	    str = AccessibleText_getText (text,  sp, ep);
>+	    g_string_insert (sel, 0, " ");
>+	    g_string_insert (sel, 0, str ? str : "");
>+	    SPI_freeString (str); 
>+	}

This seems to assume that the last selection from the FLOWS_FROM object is
contiguous with the current object's selection(s).  This isn't always true...
...

>+	    long int sp, ep;
>+	    AccessibleText_getSelection (text, 0, &sp, &ep);
>+	    str = AccessibleText_getText (text,  sp, ep);
>+	    g_string_append (sel, " ");
>+	    g_string_append (sel, str ? str : "");

Same issue arised here, I think.

...

>+	if (n_sel > 1)
>+	{
>+	    long i;
>+	    for (i = 0; i < n_sel; i++)
>+	    {
>+		gchar *tmp;
>+		long int start, end;
>+		AccessibleText_getSelection (acc_text, i, &start, &end);
>+		tmp = AccessibleText_getText (acc_text, start, end);
>+		(*selections)[i] = SR_strdup (tmp);
>+		SPI_freeString (tmp);
>+	    }
>+	}

Does this mean that selections from FLOWS relations are only appended if there
is only one selection in the object?

- Bill
Comment 10 remus draica 2005-04-13 14:06:29 UTC
>This seems to assume that the last selection from the FLOWS_FROM object is
>contiguous with the current object's selection(s).  This isn't always true...

For a multiple selection, like:
  1111_____222222 (first object)
  cccccC______ (second object, has FLOWS_FROM relation with first object)
  (1= a selected char from first selection, 2=a selected char form second
selection, c=a selected char from current object, C=the caret)

In this case, gnopernicus has to report "222222\nccccc" (this is _current_
selection). So, from the objects with FLOWS_FROM relation, _only_ the last
selection is part of current (for user) selection.

Same observation for first selection in case of FLOWS_TO relation.

>Does this mean that selections from FLOWS relations are only appended if there
>is only one selection in the object?
Yes, I did not see (yet) any case where is possible to have multiple selections
and FLOWS_TO/FROM relations.

Comment 11 bill.haneman 2005-04-13 14:31:09 UTC
This isn't right: the 'current selection' should in fact be "the current
selection set".  I still think your patch is incorrect because it doesn't ensure
that the selected text from the previous object (FLOWS_FROM) is contiguous with
the selected text in the current object. 
Comment 12 remus draica 2005-04-15 10:55:03 UTC
Bill, is your case a practical one? Or is just in theory?

I agree your scenario is possible, but I don't think it is practical.
Comment 13 bill.haneman 2005-04-15 11:01:26 UTC
My case will occur with any application or text widget that supports
multi-selection.
Comment 14 remus draica 2005-04-15 11:03:10 UTC
Do they all have FLOWS_TO/FLOWS_FROM relations?
Comment 15 bill.haneman 2005-04-15 11:17:47 UTC
The ideal case for text widgets is that text is contained in multiple, sibling
objects, many of which have the FLOWS_FROM/FLOWS_TO relation.  In any such
widget or application which supports multiple selection, your patch will fail to
work correctly.

It isn't terrible important whether such "ideal cases" are common or not, as
they are the implementations which we are striving for.  If our algorithms break
if and when applications decide to do things "right", then our algorithms are wrong.
Comment 16 remus draica 2005-04-15 12:47:07 UTC
Created attachment 45293 [details] [review]
reworked patch
Comment 17 Oana Serb 2005-04-18 09:59:00 UTC
The patch doesn't work well because of bug #301040.
Comment 18 Oana Serb 2005-04-18 10:01:16 UTC
This bug depends on bug #301040.
Comment 19 Oana Serb 2006-02-08 11:06:41 UTC
I tested the patch with StarOffice (which has FLOWS_TO/FLOWS_FROM relations) and it works fine.
Comment 20 korn 2006-02-08 22:58:20 UTC
Patch looks good to me.  Since it works with FLOWs stuff in OOo 2.0.1 build m155, please apply and close this bug.  Please also note in the appropriate OOo bug (I don't have the number to hand) the version of Gnopernicus that this patch is contained in so they can "close the loop" with their bug on their end.  Thanks!
Comment 21 Oana Serb 2006-02-09 11:14:06 UTC
Patch committed to CVS head.