Re: [gentoo-user] Regex question

2008-06-04 Thread tecnic5
Hi, I just wanted to comment something about Iain's suggestion: '^\?.*(http|https|ftp)://' If you add that '^' you're assuming that's the beginning of the string (as you may already know); the thing is I cannot see the cases where your URL starts with '?', the characters, and finally protocol

Re: [gentoo-user] Which Java Runtime is best?

2008-06-04 Thread ionut cucu
On Sun, 1 Jun 2008 18:37:28 +0200 Florian Philipp [EMAIL PROTECTED] wrote: On Sun, 1 Jun 2008 10:24:57 -0400 Walter Dnes [EMAIL PROTECTED] wrote: I haven't seen an interesting site using Java for a long while. I recently stumbled across http://discover.itsc.uah.edu/amsutemps/ and

[gentoo-user] emerge pam issue

2008-06-04 Thread Carter, Dwayne
I am having a issue emerge pam. Here is the data: These are the packages that would be merged, in order: Calculating dependencies... done! [ebuild N] sys-libs/pam-0.99.9.0 USE=cracklib nls -audit (-selinux) -test -vim-syntax 0 kB Total: 1 package (1 new), Size of downloads: 0

[gentoo-user] DBD-ODBC installation problem

2008-06-04 Thread Michael Higgins
Folks — I'm having a problem getting a working *-perl/DBD-ODBC. I had one that was working just fine, but un-merged unixODBC in a fit of pique, or something. I re-emerged it, but then DBD-ODBC segfaults. So, getting to debug I: export LD_LIBRARY_PATH=/usr LANG= ODBCHOME=/usr ; FEATURES=nostrip

Re: [gentoo-user] Which Java Runtime is best?

2008-06-04 Thread Florian Philipp
On Wed, 4 Jun 2008 15:12:51 +0300 ionut cucu [EMAIL PROTECTED] wrote: On Sun, 1 Jun 2008 18:37:28 +0200 Florian Philipp [EMAIL PROTECTED] wrote: On Sun, 1 Jun 2008 10:24:57 -0400 Walter Dnes [EMAIL PROTECTED] wrote: Take Sun JRE. In terms of headaches per month, the quasi standard

Re: [gentoo-user] emerge pam issue

2008-06-04 Thread Mick
On Wednesday 04 June 2008, Carter, Dwayne wrote: I am having a issue emerge pam. Here is the data: Until someone who knows better answers on the specifics, have you tried to resync and also to run 'revdep-rebuild -X -p -v' ? -- Regards, Mick signature.asc Description: This is a digitally

Re: [gentoo-user] Which Java Runtime is best?

2008-06-04 Thread Florian Philipp
On Wed, 4 Jun 2008 19:24:10 +0200 Florian Philipp [EMAIL PROTECTED] wrote: On Wed, 4 Jun 2008 15:12:51 +0300 ionut cucu [EMAIL PROTECTED] wrote: On Sun, 1 Jun 2008 18:37:28 +0200 Florian Philipp [EMAIL PROTECTED] wrote: On Sun, 1 Jun 2008 10:24:57 -0400 Walter Dnes [EMAIL

Re: [gentoo-user] Regex question

2008-06-04 Thread Iain Buchanan
On Wed, 2008-06-04 at 08:57 +0200, [EMAIL PROTECTED] wrote: Hi, I just wanted to comment something about Iain's suggestion: '^\?.*(http|https|ftp)://' If you add that '^' you're assuming that's the beginning of the string (as you may already know); the thing is I cannot see the cases

RE: [gentoo-user] Regex question

2008-06-04 Thread Adam Carter
I just wanted to comment something about Iain's suggestion: '^\?.*(http|https|ftp)://' If you add that '^' you're assuming that's the beginning of the string (as you may already know); the thing is I cannot see the cases where your URL starts with '?', the characters, and finally

Re: [gentoo-user] What version of netscape-flash to use with konqueror?

2008-06-04 Thread Alex Schuster
Robin Atwood wrote: I have just brought my laptop (x86 arch) up to date and so I have KDE 3.5.9 and netscape-flash-9.0.124.0. Now whenever I go to a web page with embedded flash I get a segfault. I seem to remember that something got broken wrt konqueror and my amd64 system is using

Re: [gentoo-user] Regex question

2008-06-04 Thread Bruce Munro
Adam Carter wrote: Thanks guys. I know ^ and will omit it as the ? Is not at the beginning of the string. I'll try '\?.*(http|https|ftp)://' You can squeeze that up a bit more... \?.*(https?|ftp):// 'https?' means 'http' followed by an optional (0 or 1) 's'. Cheers, -Bruce --