RE: [ cf-dev ] FW: caching

2003-08-28 Thread Christopher Dawes
This might give some insight... http://www.mnot.net/cache_docs/#META -Original Message- From: Snake Hollywood [mailto:[EMAIL PROTECTED] Sent: Thursday, 28 August 2003 2:28 AM To: [EMAIL PROTECTED] Subject: [ cf-dev ] FW: caching Am having some caching problems, have to hit referesh

[ cf-dev ] Re:caching

2003-08-28 Thread Allan Cliff
I use in the head HEAD META HTTP-EQUIV=3DPragma CONTENT=3Dno-cache META HTTP-EQUIV=3DExpires CONTENT=3D0 /HEAD And then CFHEADER NAME=3DPragma VALUE=3Dno-cache CFHEADER NAME=3Dcache-control VALUE=3Dcache-control, no-store, = must-revalidate it works fine for me. (CF5) - Original Message

[ cf-dev ] annoying regex issue

2003-08-28 Thread Kola Oyedeji
Okay I'm trying to create a regex to do the simple task of replacing everything after a - annoyingly none of the following works:- -(.)* -[ a-zA-Z_0-9]* Am I missing something obvious here? Thanks Kola -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To

Re: [ cf-dev ] annoying regex issue

2003-08-28 Thread duncan . cumming
REReplace(yourstring, -[[:Print:]]{0,}, -, ALL) ? Duncan Cumming IT Manager http://www.alienationdesign.co.uk mailto:[EMAIL PROTECTED] Tel: 0141 575 9700 Fax: 0141 575 9600 Creative solutions in a technical world -- Get

RE: [ cf-dev ] annoying regex issue

2003-08-28 Thread Kola Oyedeji
Doesn't work, I'm running in this CFstudio 5 - what does the [[:print:]] do? Does it work on CF5? Kola -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 28 August 2003 11:56 To: [EMAIL PROTECTED] Subject: Re: [ cf-dev ] annoying regex issue

RE: [ cf-dev ] annoying regex issue

2003-08-28 Thread duncan . cumming
[[:Print:]] is any printable character, including punctuation. I assume you meant this rather than just letters and numbers, when you said everything? A-Za-z0-9 won't get spaces, commas etc. If you're doing this in Studio it won't make any difference what version of CF server we're talking

RE: [ cf-dev ] annoying regex issue

2003-08-28 Thread Kola Oyedeji
Hi -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 28 August 2003 12:10 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] annoying regex issue [[:Print:]] is any printable character, including punctuation. I assume you meant this rather than just

[ cf-dev ] weird one...

2003-08-28 Thread Ian Westbrook
got a weird one here. this is the query: cfquery datasource=#dsn# name=getreviews SELECT DISTINCT reviews.reviewid AS reviewid, diary.reviewid, reviews.companyid AS companyid, reviews.*, diary.title, directory.id, directory.fullname FROM reviews, diary, directory cfif

Re: [ cf-dev ] weird one...

2003-08-28 Thread duncan . cumming
what's your database? Duncan Cumming IT Manager http://www.alienationdesign.co.uk mailto:[EMAIL PROTECTED] Tel: 0141 575 9700 Fax: 0141 575 9600 Creative solutions in a technical world -- Get your domain names online from:

Re: [ cf-dev ] weird one...

2003-08-28 Thread Ian Westbrook
what's your database? Access db, CF4.5 Ian - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 28, 2003 12:40 PM Subject: Re: [ cf-dev ] weird one... what's your database? Duncan Cumming IT Manager http://www.alienationdesign.co.uk

Re: [ cf-dev ] weird one...

2003-08-28 Thread Ian Westbrook
hmm, tried that, didn't make any diference... http://test.artsoutheast.co.uk/reviews.cfm?CFID=1395609CFTOKEN=3136743action=viewreviewid=1010thisaction=allthe_start=1records_to_display=20 very odd... Ian W - Original Message - From: Dave Phipps [EMAIL PROTECTED] To: [EMAIL PROTECTED]

Re: [ cf-dev ] weird one...

2003-08-28 Thread duncan . cumming
Correct me if I'm wrong, but I thought you couldn't do a SELECT DISTINCT with memo fields? I'm assuming review is a memo field, not a text field. Not sure though why that would just truncate it rather than throw an error. Duncan Cumming IT Manager http://www.alienationdesign.co.uk

Re: [ cf-dev ] weird one...

2003-08-28 Thread Ian Westbrook
the query is now: cfquery datasource=#dsn# name=getreviews SELECT DISTINCT reviews.reviewid AS reviewid, reviews.userid, reviews.id, reviews.companyid AS companyid, reviews.review, reviews.publish, reviews.dateadded, diary.reviewid, diary.title, directory.id, directory.fullname FROM

RE: [ cf-dev ] weird one...

2003-08-28 Thread Kevin Faulkner
Have you confirmed with debug that the truncation is definately from your sql and not the output? -Original Message- From: Ian Westbrook [mailto:[EMAIL PROTECTED] Sent: 28 August 2003 14:07 To: [EMAIL PROTECTED] Subject: Re: [ cf-dev ] weird one... the query is now: cfquery

Re: [ cf-dev ] weird one...

2003-08-28 Thread duncan . cumming
could i suggest removing the column diary.reviewid from the query. it's not needed as you've already got reviews.reviewid (incidentally the use of the alias on this column is also unnecessary). what you could do is add reviewid to your ORDER BY clause. then just group on the reviewid in your

[ cf-dev ] OT: JRun debugging

2003-08-28 Thread Steve Martin
Anyone know of a taglib or otherwise which provides debug output in JRun 3.1 in a similar manner to that which CF provides (query info, variables, etc.)? Cheers, Steve --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.512 / Virus

Re: [ cf-dev ] weird one...

2003-08-28 Thread Ian Westbrook
well, I've confirmed it by removing the DISTINCT, in which case teh review isn't truncated but I get it 3 times... Ian - Original Message - From: Kevin Faulkner [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 28, 2003 2:17 PM Subject: RE: [ cf-dev ] weird one... Have

Re: [ cf-dev ] OT: CSS and Mac ie5

2003-08-28 Thread duncan . cumming
Rich, I don't know if this is connected, but we recently had a problem with Div's on macs. We were dynamically changing the text content of the div in javascript, but it was messing it all up on the mac. the content of the div was getting stacked on top of itself, i.e instead of having a div

Re: [ cf-dev ] OT: CSS and Mac ie5

2003-08-28 Thread Damian Watson
I've had trouble with MAC IE5 and divs before --- this may be a dumb question but is your div inside table data? If so that may well be causing a problem but I don't imagine you've done that... d Chairman of Vice Mac IE5 fan club - Original Message - From: Rich Wild [EMAIL PROTECTED]

RE: [ cf-dev ] OT: CSS and Mac ie5 :

2003-08-28 Thread Snake Hollywood
I wish they would discontinue the MAC -Original Message- From: Christopher Dawes [mailto:[EMAIL PROTECTED] Sent: 28 August 2003 19:04 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] OT: CSS and Mac ie5 : FYI : Microsoft will are longer making IE for Mac