search for: textname

Displaying 7 results from an estimated 7 matches for "textname".

Did you mean: testname
2015 Sep 10
3
[PATCH 0/1] efi: DNS resolver
From: Sylvain Gault <sylvain.gault at gmail.com> Despite having native network capabilities, UEFI 2.4 (the most widely deployed at the moment) has no native DNS resolver. I propose here an implementation more or less inspired by the one found in core/legacynet/dnsresolv.c. Since it's non-trivial, I'd like to ask for a deep review of this code. I tried to make it as strong as
2006 Oct 01
9
How to create a very simple form
Hi all, I would like to create a very simple form with RoR similar to this one in ASP.Net: http://quickstarts.asp.net/QuickStartv20/aspnet/samples/ctrlref/standard/TextBox/TextBox1_vb.aspx I my RoR project I want to add a Greeter class like this one: class Greeter def initialize(name = "World") @name = name end def say_hi puts "Hi #{@name}!" end def
2009 Jan 13
1
odfWeave: Error in matrixPaste(...)
...este.odt* <teste, results=xml>>= x <- matrix(rnorm(6), nc=2) xst <- tableStyles(x, useRowNames = TRUE, header = NULL) odfTable(x, styles=xst, colnames = NULL, useRowNames = TRUE) @ and I get this error: *OUTPUT error:* Error: chunk 1 (label=teste) Error in matrixPaste(textStart, textName, textEnd, x, tagEnd, sep = rep("", : all matrices must have the same dim Any hint is welcome. Thanks in advance Cleber More details > odfWeave( 'teste.odt', 'out.odt') Copying teste.odt Setting wd to C:\DOCUME~1\cborges\CONFIG~1\Temp\Rtmp1R0wvb/odfWea...
2011 Mar 09
1
Javascript call from view.
...#",:class => "replyMessage noBackgroundImage" ,:title =>"Click here to reply",:onclick=>"popup(''popUpDiv_reply'')"%> I have two javascript functions as follows defined seperately in an application.js file. function showName(inputName,textName){ var fieldName = document.getElementById(inputName); document.getElementById(textName).value += ''@'' + fieldName.value + '':''; } function decreaseName(inputname){ var fieldName = document.getElementById(inputname); var totalLength = fieldName.length + 2; var...
2011 Apr 01
0
[GIT PULL] elflink cmdline
...eak; + case KEY_F8: + fkey = 7; + break; + case KEY_F9: + fkey = 8; + break; + case KEY_F10: + fkey = 9; + break; + case KEY_F11: + fkey = 10; + break; + case KEY_F12: + fkey = 11; + break; + default: + fkey = -1; + break; + } + + if (fkey == -1) + return; + + if (cm->fkeyhelp[fkey].textname) { + printf("\n"); + cat_file(cm->fkeyhelp[fkey].textname); + } +} + static char *is_fkey(char *cmdstr, int *fkeyno) { char *q; diff --git a/com32/elflink/modules/menu.h b/com32/elflink/modules/menu.h index 90b54a5..8041fc9 100644 --- a/com32/elflink/modules/menu.h +++ b/com32...
2011 Mar 09
14
[PATCH 00/12] elflink shrinkage
From: Matt Fleming <matt.fleming at linux.intel.com> This is a series of patches that, * shrink the core by moving things into an ldlinux ELF module * begin wiring up some of the C versions of various functions The core now only contains essential code and loads the ldlinux module to do everything else, like providing a command line interface and loading kernels. The config file parsing
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