28 Dec, 2018

1 commit

  • All files in lxdialog/ are licensed under GPL-2.0+, and the rest are
    under GPL-2.0. I added GPL-2.0 tags to test scripts in tests/.

    Documentation/process/license-rules.rst does not suggest anything
    about the flex/bison files. Because flex does not accept the C++
    comment style at the very top of a file, I used the C style for
    zconf.l, and so for zconf.y for consistency.

    Signed-off-by: Masahiro Yamada

    Masahiro Yamada
     

28 May, 2018

1 commit

  • The localization support is broken and appears unused.
    There is no google hits on the update-po-config target.
    And there is no recent (5 years) activity related to the localization.

    So lets just drop this as it is no longer used.

    Suggested-by: Ulf Magnusson
    Suggested-by: Masahiro Yamada
    Signed-off-by: Sam Ravnborg
    Signed-off-by: Masahiro Yamada

    Sam Ravnborg
     

26 Mar, 2018

1 commit

  • nconf.h includes and "ncurses.h", but it does not need to
    include both. Generally, it should fall back to curses.h only when
    ncurses.h is not found. But, looks like it has never happened;
    these includes have been here for many years since commit 692d97c380c6
    ("kconfig: new configuration interface (nconfig)"), and nobody has
    complained about hard-coding of ncurses.h . Let's simply drop the
    curses.h inclusion.

    I replaced "ncurses.h" with since it is not a local file.

    Signed-off-by: Masahiro Yamada

    Masahiro Yamada
     

09 Sep, 2011

1 commit


17 Aug, 2010

1 commit

  • Remove the old hotkeys feature, and replace it by an interactive string
    search.
    From nconfig help:

    Searching: pressing '/' triggers interactive search mode.
    nconfig performs a case insensitive search for the string
    in the menu prompts (no regex support).
    Pressing the up/down keys highlights the previous/next
    matching item. Backspace removes one character from the
    match string. Pressing either '/' again or ESC exits
    search mode. All other keys behave normally.

    Miscellaneous other changes (including Rundy's and Justin's input).

    Signed-off-by: Nir Tzachar
    Acked-by: Sam Ravnborg
    Signed-off-by: Michal Marek

    Nir Tzachar
     

02 Feb, 2010

1 commit

  • This patch was inspired by the kernel projects page, where an ncurses
    replacement for menuconfig was mentioned (by Sam Ravnborg).

    Building on menuconfig, this patch implements a more modern look
    interface using ncurses and ncurses' satellite libraries (menu, panel,
    form). The implementation does not depend on lxdialog, which is
    currently distributed with the kernel.

    Signed-off-by: Nir Tzachar
    Signed-off-by: Michal Marek

    nir.tzachar@gmail.com