I am having a hard time with Curses::UI, for various reasons.

The module's "maintainer" has been showing no activity for about 10 years, shortly since he took over maintainership. He has apparently been ignoring *all* bug reports and proposed fixes that piled up in these years. See the long list of about 50 issues, some of them unfixed since 13 years, spread over two different bug report pages:

https://rt.cpan.org/Public/Dist/Display.html?Status=Active;Name=Curses +-UI https://code.google.com/archive/p/curses-ui/issues

I think I have no choice than to fork the last version, already many years old, on Github and work through all these bug reports, and implement the proposed fixes as well as those I had to add myself (which are not yet reported because it doesn't seem make sense to report, as the "maintainer" will ignore it anyway).

I urgently need a Curses::UI working fine. I cannot release my project basing on a Curses::UI in its current bugfested state. This would fall back onto me.

Is there any way to feed back the fixes to CPAN, as the "maintainers" apparently just ignore?

And, finally my biggest problem where I do not understand what is wrong. I need to set the active entry in a Curses::UI::Popupmenu.

The latter package does not have such a method, but the class Curses::UI::Listbox, which the Popupmenu class is inherited from, has a set_selection() method. However, if I try to call this method with

$objectOfClassPopupmenu->set_selection( $value);

I get the error "Can't locate object method "set_selection" via package "Curses::UI::Popupmenu".

If the error is not the way how I called the method, I could imagine it is yet another bug. I'd expect the function to be public, but it behaves like a private one?!? If I must make the function public, what is the recommended way to do this?


In reply to How can I call a class method of the object's parent class? by dissident

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.