similar to: RESEND: Problems with menu.c32, and some feature request for menu.c32

Displaying 20 results from an estimated 700 matches similar to: "RESEND: Problems with menu.c32, and some feature request for menu.c32"

2005 Mar 24
1
Problems with menu.c32, and some feature request for menu.c32
I have found two bugs in the menu.c32 utility, part of the syslinux-3.08-pre5 build, and have a couple of requests. Problem 1: If you use the ^ symbol to define a number as a hotkey, ex. MENU LABEL ^1 Option #1 , the menu will not print the number highlighted. It will use it as a hot key, it just will not highlight it. It does highlight the hotkey if specify a letter, A-Z. Problem 2: When
2005 Mar 28
0
Problems with menu.c32,and some feature request for menu.c32
Well in those three days I did identify and correct the problem with using a number (0-9) as the hot key. The following is the section of code in menu.c32 responsible for displaying the menu entries: display_entry(const struct menu_entry *entry, const char *attrib, const char *hotattrib, int width) { const char *p = entry->displayname; while ( width ) { if ( *p ) { if (
2011 Apr 16
20
[PATCH 00/20] Switch to ELF modules
From: Matt Fleming <matt.fleming at linux.intel.com> This series fixes some bugs and switches the elflink branch to be entirely ELF modules. It applies on top of, http://syslinux.zytor.com/archives/2011-April/016369.html The deletions in the diff stat below are mainly from deleting com32/elflink/modules (finally!). Now there should be no duplicate code because we don't need COM32 and
2010 Apr 23
1
Path simple menu integrated progress indicator
This patch modifies the simple menu com32 program to include integrated load progress. It also adds new options to the simple menu configuration MENU LOADMSG -- allows the user to specify the text to display when loading MENU LOADMSGROW -- controls where the text is written Example configuration: MENU LOADMSG Booting MENU LOADMSGROW 25 It works with my setup, please let me know if you find
2014 Nov 22
3
Use z size specifier for printf-ing size_t variable
Hello. Use the z size specifier to printf-ing size_t variables to get rid of gcc warning format ?%08x? expects type ?unsigned int?, but argument 2 has type ?long unsigned int? -- MartinS diff --git a/com32/lib/syslinux/initramfs_file.c b/com32/lib/syslinux/initramfs_file.c index 7eb55b5..9f9fa75 100644 --- a/com32/lib/syslinux/initramfs_file.c +++ b/com32/lib/syslinux/initramfs_file.c @@
2019 Apr 17
1
Fix: hotkey uppercasing too wide
Hello, Stumble upon this issue. If one define digits as hotkeys, the action is also taken for the non-reserved CTRL-P to CTRL-Y (also affect ASCII prior to digits). Here's a quick patch, quickly tested for action on uppercase/lowercase and digit and inaction on "matching" CTRL key. Regards, Dany *Sample config section* LABEL extra2 MENU LABEL ^2. Two # pressing 2 activates
2008 Aug 04
1
About "MENU TITLE" and possible hotkey handling
3.71, using isolinux and simple menu system menu.c32 To avoid having many different menu config files (one for each submenu) I'm trying switching from the once required syntax ==== MENU LABEL > ^Firmware/BIOS KERNEL menu.c32 APPEND menufw.cfg ==== to ==== MENU BEGIN MENU TITLE ^Firmware/BIOS <stuff that was inside menufw.cfg> MENU END ==== However, it's not
2002 Jul 24
2
memdisk question
When I use memdisk to boot a Windows ME or Windows XP Boot Floppy Image the system locks up, see attached jpg of VMWARE system. This happens in both VMWARE and on a real PC. If I use memdisk to boot a FREEDOS Boot Disk Image everything works great. Any suggestions? ======================================================== Eugene E. Pressley II Network Administrator, MCSE Asheville - Buncombe
2003 Nov 03
1
Hotkeys for menu items
Hi! I know, that a menupoint can have a hotkey, you just have to separate the menu description and the hotkey with a tab. But can you have more hotkeys? thx Gergo -- +-[ Kontra, Gergely<kgergely@mcl.hu> PhD student Room IB113 ]---------+ | http://www.mcl.hu/~kgergely "Olyan langesz vagyok, hogy | | Mobil:(+36 20) 356 9656 ICQ: 175564914 poroltoval kellene jarnom" |
2008 Dec 08
2
'dialer' application to trigger call between hardphone and number
Does anyone know of a small lightweight windows 'dialer' application I can use to trigger a call (via call file or AMI) from any application? (The call would be placed between the target number, and the preconfigured DN of the hardphone at the user's desk) Ideally a phone number would be 'selected' from within any windows application and the call would be triggered via
2010 May 30
1
[RFC PATCH] menu: support single key booting
If MENU COMMIT is specified for a label, execute it automatically when its hotkey is pressed. Signed-off-by: Ferenc Wagner <wferi at niif.hu> --- com32/menu/menu.h | 1 + com32/menu/menumain.c | 10 ++++++++-- com32/menu/readconfig.c | 6 +++++- 3 files changed, 14 insertions(+), 3 deletions(-) As mentioned on IRC, people ask for this. So here's something to talk
2004 Dec 18
1
voicemailmain hotkey
Hi Folks Since updated to 1.0.1/2 I got a prob with the hotkey to access voicemailmain. According to the wiki "0" jumps to extension "o" and "*" to "a" "0" isn't working, I get vm-sorry followed by HangUp :( "*" is working and I get access. So I changed the dialplan to get my voicemail managed. Tested on zaphfc and capi Is
2020 Apr 07
1
ISOLINUX stuck at boot menu. How do I debug ?
I have just created an ISO containing Fedora and ISOLinux as the bootloader. This is the ISO creation command: genisoimage -U -r -v -T -J -joliet-long -V "Fedora-WS-Live-31-1-9" -volset "Fedora-WS-Live-31-1-9" -A "Fedora-WS-Live-31-1-9" -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -eltorito-alt-boot -e
2007 Mar 08
2
Hotkey between Xorg and Wine applications
Hello! I'm trying to install a Windows application called Macro Express, wich automatizes a lot of process with recorded macros. The macros are called by pressing Hotkeys combinations like Control+1 or Control+2 etc. Then, the macro sends keys to applications. I have installed the program on kubuntu and Wine 0.9.30. The problems are that it only regonizes Hotkeys when Macro Express window is
2012 Sep 05
4
Final line of menu selectable even if it is disabled
I have a menu conf as follows: LABEL enabled, use as item LABEL disabled, use as description SEPARATOR LABEL enabled, use as item LABEL disabled, use as description In this situation, I expect the cursors to be able to select from only the two enabled lines. However, the final disabled line is also selectable. Even if I put a final separator and/or disabled label the final line of the menu
2010 Nov 17
1
Tinn-R looses connection to R (Windows Vista)
Hi everyone, I wonder, if anyone can help me with this annoying issue, although it is related to Tinn-R and Windows Vista... I am running R 2.11.1 and Tinn-R 2.3.5.2 together. I saved 2 R-hotkeys: ALT+A for sending the whole content of one file and ALT+S for a selection from one file from Tinn-R to R. Everything works fine with other windows versions, also with Vista at the beginning of every
2007 Sep 17
3
how do I get the beautiful html rspec results in textmate?
I''m going through PeepCode RSpec Basics and he gets a beautiful rspec results page in html when he presses a hotkey in TextMate. I would guess it''s along the lines of Apple + R but I don''t get the same results and I''m using the same bundle. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2015 Jan 25
0
Use z size specifier for printf-ing size_t variable
On Sat, Nov 22, 2014 at 10:39 AM, Martin Str|mberg <ams at ludd.ltu.se> wrote: > Hello. > > Use the z size specifier to printf-ing size_t variables to get rid of gcc > warning > format ?%08x? expects type ?unsigned int?, but argument 2 has type ?long unsigned int? Please, add the signed-off line. > > > -- > MartinS > > diff --git
2010 Aug 19
3
Modules review
Hello, i have written some modules for Puppet and would be thankful, if someone could take a look for quality enhancements. http://194.94.79.17/hotkey/puppet.tar.gz The only nasty part is, that i have defined some global variables at the site.pp, which i am using at several templates. And i am looking for a solution to collect the hostnames and ipaddresses of all connected nodes, without
2005 Mar 19
3
Wine success: HABit Wordstar Converter (version 3)
I had need of a bit of computer archeology (oddly enough, for a couple of archaeologists, but that's another story). I used Henry Bartlett' HABit Wordstar Converter (version 3) (http://www.hotkey.net.au/~hambar/habit/wsconvrm.htm) to convert some Wordstar for Mess-DOS files to text and HTML. It worked just fine under wine (http://www.winehq.org). wine-20041201-1fc3winehq on Fedora Core 3