Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the ArachneDevelopment group. File :...
ArachneDevelopment@ya...
Feb 2, 2007 8:01 am
2949
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the ArachneDevelopment group. File :...
ArachneDevelopment@ya...
Feb 2, 2007 8:05 am
2950
Hi all, Well, I finally found some time to look into the 'ctype.h' issue with BC 4.52, and this seems to have the same problems as TC/BC 3.X ... I've...
Hi Glenn, et al. Good sleuthing. I've had a quick look at this now and it seems that the 'strtol' and 'strtoul' functions have more capability than the 'atoi'...
Thanks for the suggestion Joe, This does work better than my 1st attempt at conversion. (but it's still imperfect) unsigned char HTMLentity(char *name) { ...
... Aren't you making this far harder than it need be? I've got: if(*name == '#') { int j = (int)strtol(name + 1, NULL, 0); // int j = atoi(&name[1]); etc. ...
... I'll answer my own question...... Yes, it works !!!! unsigned char HTMLentity(char *name) { //!!glennmcc: Feb 05, 2007 -- attempt to interpret HEX format...
Hi Glenn, Ray, et al. Well, I must agree with Ray on this one ... why complicate things? The intention is to simply substitute 'atoi' with 'strtol' or...
strtoul(string, endPtr, base) char *string; /* String of ASCII digits, possibly * preceded by white space. For bases * greater than 10, either lower- or *...
Hi Glenn, et al. Ahhh ... so that's the glitch! :-/ The BC IDE-Help implied the leading zero was optional for hexadecimal values, but if that's not the case,...
Hi Glenn, et al. Well, I'm not sure that page really implies that octal values can be used in numeric entities, but if we want to handle that, it's no big deal...
... It says here: The characters in s must match this generic format: þ strtod: [ws] [sn] [ddd] [.] [ddd] [fmt[sn]ddd] þ strtol: [ws] [sn] [0] [x] [ddd] ...
I think we have it nailed this time. Thank you Joe.... Thank you Ray...... unsigned char HTMLentity(char *name) { //!!glennmcc: Feb 06, 2007 -- attempt to...
Ah ha.... '\' (backslash) is the character to 'key on' for OCTAL..... http://randsco.com/_miscPgs/iso-8859-1_entities.html unsigned char HTMLentity(char *name)...
Hi Glenn , et al. Hmmmm ... again I must be sceptical about "numeric character references" in octal format. While this page is about character entities, I...
Well, I guess it's a matter of the two of us interpreting it differently. <ggg> ... ASCII OCTAL and Hexidecimal entity values for the iso-8859-1 character set....
In doing some further research, I find that you are correct. Octal is not used in HTML itself but rather simply in some program tools. Therfore, I'll go ahead...
... unsigned char HTMLentity(char *name) { //!!glennmcc: Feb 05, 2007 -- interpret HEX, OCT and DEC format entities // HEX ' == OCT &#\37; == DEC ' ...
Right now, all that's being done with the 'Alt text' is to display it in the empty image box befpore loading the images. CAV would like that 'Alt text' to be...
... Might be interesting to display the text since there is often additional info hidden in it. And where would the URL be displayed in this case? Regards, Udo...
Udo Kuhnt
048321887-0001@...
Feb 10, 2007 6:58 am
2974
... I was thinking of ...... If there is a URL under the image.... display the URL as usual. If there is not a URL.... display the 'alt text'. If there is a...
Hi Glenn, et al. So, how is the old codger? Still fending off the alligators? <GGGG> Anyway, this sounds like a useful little enhancement. As Udo has pointed...
Hi all, I came across this little gem the other day : http://compilers.iecc.com/crenshaw/ Although it's not entirely complete (it sort of goes "off the rails"...
... What about displaying a box with the tip text when the mouse pointer hovers over the image, like what Firefox does with URLs in the FTP client? Then it...