Y'all see the man hanging out of the spaceship with the really big gun? Now I'm not saying you weren't easy to find. It was kinda out of our way, and he didn't want to come in the first place. Man's lookin' to kill some folk. So really it's his will y'all should worry about thwarting.

Mal ,'Safe'


Buffistas Building a Better Board  

Do you have problems, concerns or recommendations about the technical side of the Phoenix? Air them here. Compliments also welcome.

To-do list


brenda m - Feb 26, 2003 4:19:04 pm PST #3250 of 10000
If you're going through hell/keep on going/don't slow down/keep your fear from showing/you might be gone/'fore the devil even knows you're there

ita did the changes manually, so you might've just been missed.


John H - Feb 26, 2003 4:22:03 pm PST #3251 of 10000

John H - Feb 26, 2003 4:22:25 pm PST #3252 of 10000

Fair enough if it was manual manual. But if there was some kind of programmatic "update users set update_time = 5 where update_time < 5" then something went wrong with it, I'd say.


Jon B. - Feb 26, 2003 5:28:00 pm PST #3253 of 10000
A turkey in every toilet -- only in America!

what happens if one of the vars contains a dot itself? I'm sure I'm barking up the wrong tree but it could explain it.

No idea, but as Elena pointed out, it's not just dots so I don't think that's it.


§ ita § - Feb 26, 2003 5:35:28 pm PST #3254 of 10000
Well not canonically, no, but this is transformative fiction.

John, I think it's the regexp:

"/^([a-z ]*^<)?([a-z0-9._-])+@([a-z0-9.-])+(\\.)([a-z]{2,4})(>)?$/i"

for checking a valid e-mail address that's choking on name punctuation.


John H - Feb 26, 2003 5:45:54 pm PST #3255 of 10000

Oh, OK, that makes sense, but why is that checking people's names -- because we're doing them in the form:

John H <johnh@blah.com>

or something?

So just chuck out the nice bit and just reduce it to the bare address is the quick solution.


§ ita § - Feb 26, 2003 5:47:54 pm PST #3256 of 10000
Well not canonically, no, but this is transformative fiction.

Yes, that's what we're checking.

I can't read the regexp well enough to know what to toss, though. Just the other modules that'll need to be changed.


John H - Feb 26, 2003 6:01:51 pm PST #3257 of 10000

I can't read the regexp well enough to know what to toss, though.

Oh I didn't even look at it properly, I see the problem. It's designed to include optional non-email text.

Easy peasy:

[a-z ]

at the start is "a sequence of letters or spaces" so it should be enough just to put in

[a-z.' -]

which I just tested, and matches

P-M.M' Marcontell

which contains all the possible punctuation in people's names, I think.


Rebecca Lizard - Feb 26, 2003 7:34:17 pm PST #3258 of 10000
You sip / say it's your crazy / straw say it's you're crazy / as you bicycle your soul / with beauty in your basket

(There's the underscore....)


John H - Feb 26, 2003 7:48:50 pm PST #3259 of 10000

Who has an underscore in their name?

But yeah, if that's an issue, put that in between the brackets as well. Does anyone have a number in their name?

If they do, then maybe we want

[\\w .'-]

which will match that well-known Buffista

p.m-m'm_ m4rc0nt3ll

because the \\w includes all letters, numbers and the underscore.