Displaying 5 results from an estimated 5 matches for "texton".
Did you mean:
texto
2004 Jul 01
1
Two possible vulnerabilities?
Dear all,
Browsing through the securityfocus vulnerability database I found
two items, that might interesting for the FreeBSD community:
1. GNU GNATS Syslog() Format String Vulnerability
http://www.securityfocus.com/bid/10609
GNATS is vital part of the PR handling of FreeBSD. I think security
officers should contact developers of GNU GNATS about this issue to resolve
the potential problem.
2003 Feb 01
1
[Summary] Problems for 13 year old
This e-mail
- summarizes some of the responses/suggestions to using R for 13 year olds
from my query on this list
- discusses some additional investigation I did
- the approach I am currently using (which will likely incorporate your suggestions
for R)
SUGGESTIONS
- find relationship between monthly heating bills and temperature. For data
see
2010 Sep 13
24
[Bug 30158] New: nouveau fails to display on external monitor
https://bugs.freedesktop.org/show_bug.cgi?id=30158
Summary: nouveau fails to display on external monitor
Product: xorg
Version: unspecified
Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
AssignedTo: nouveau at
2000 Jan 13
1
Printing woes
Hi,
I've been using Samba for a while, and I'm now running all network
printing here from Samba. However, while printing itself works fine, my
users can neither view the print queue, nor delete jobs from it, and
this is beginning to get annoying. I'm using LPRng to do all the
printing. All the clients are NT4 workstations. Here's some selected
bits of /etc/smb.conf and
2008 Mar 29
1
A patch for extending pdf device to embed popup text and web links
...6711,6716 ****
--- 6768,6774 ----
double a, b, rot1;
const char *str1 = str;
char *buff;
+ double ascent, descent, width;
if(!R_VIS(gc->col)) return;
***************
*** 6732,6737 ****
--- 6790,6805 ----
if(fabs(b) < 0.01) b = 0.0;
if(!pd->inText) texton(pd);
+ pd->text_size = size;
+ pd->text_a = a;
+ pd->text_b = b;
+ pd->text_x = x;
+ pd->text_y = y;
+ PDF_StrSize(str1, gc, dd, &ascent, &descent, &width);
+ pd->text_ascent = ascent;
+ pd->text_descent = descent;
+ pd->text_...