Re: CF not committing transactions?

2003-06-05 Thread Jochem van Dieten
Dave Jones wrote: All of our inserts and updates to this database are wrapped in cftransaction/cftransaction tags (due to multiple tables involved in the transactions). We are not explicitly issuing any commits or rollbacks. My questions are: 1) Given our use of cftransaction, is it

Re: xml parsing

2003-06-05 Thread Jochem van Dieten
Critz wrote: using cfmx, I am trying to parse this feed: http://www.bmezine.com/newsfeed/bmenews.rss but i keep getting errors. Anyone mind having a quick gander? Download Mozilla (http://www.mozilla.org/), install the Checky toolbar (http://checky.mozdev.org/) and you have a few

Re: java.io error - infozip

2003-06-05 Thread Jochem van Dieten
Scott Mulholland wrote: I am using the infozip command line utilities (zip.exe, unzip.exe) to do some zipping and unzipping of files. The zip.exe does not seem to run when trying to zip files in certain directories and throws the following error: java.io.IOException: CreateProcess:

Re: xml parsing

2003-06-05 Thread Jochem van Dieten
Sean A Corfield wrote: Shannon's put an RSS feed on his site? That's awesome - I must subscribe to it! (Once he's fixed those darn links!!! :) It's interesting to see how RSS is cropping up on non-IT / non-news sites. Anyone got other interesting examples? University library here has

RE: URL length

2003-06-05 Thread David Collie (itndac)
Cheers all! As we're using IE6 I may just carry out a wee bit of testing as keeping it in the URL keeps the app consistent and it is only a few URL's clicked in the app that would have a length like that As suggested, will carry out a wee test later on to see if the URL length would matter.

Re: force a download [was: SQL concat]

2003-06-05 Thread Jochem van Dieten
Fetter, Brad wrote: I have video, and image library on our intranet and we want to have a hyperlink that will allow the user to download the file to their hard drive without having right click and select file save as. Is there an easy way to do this? Use cfcontent with the mime type

CFCONTENT Problem

2003-06-05 Thread Michael Traher
You might be interested to take a look at a presentation made at the recent CFEurope conference on this very subject. Give lots of examples and some tricks with CFCONTENT. See link below. http://www.cf-europe.org/preso/amanning/169406/index.html

Re: SQL concat

2003-06-05 Thread Thomas Chiverton
On Wednesday 04 Jun 2003 18:13 pm, Cantrell, Adam wrote: What's the operator for string concatenation in SQL server - I'm trying: || isn't it ? -- Tom C Land of the free, home of the brave... you have to be brave to live there and enjoy the freedoms

ASP CFMX Web Services

2003-06-05 Thread DDE
I hate this ;-) , but I have to test consuming my CFMX Web Services from ASP ... gri Got code snippets but doesn't work ... % Dim oSOAP set oSOAP = CreateObject(MSSOAP.SoapClient) oSOAP.ClientProperty(ServerHTTPRequest) = True oSOAP.mssoapinit(http://myserver/blabla//iwsusers.cfc?wsdl;) I

RE: cf administrator access problem

2003-06-05 Thread Tim Laureska
Thanks Debbie... didn't know this technote existed Tim -Original Message- From: Debbie Dickerson [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 6:07 PM To: CF-Talk Subject: RE: cf administrator access problem The workaround is in this TechNote:

FW: ColdFusion TechNote Notification: Installing ColdFusion on W indows 2003 with IIS 6

2003-06-05 Thread Debbie Dickerson
FYI - Testing has been completed for CF MX/5 support on Win2003/IIS 6. Details are in the new TechNote at: http://www.macromedia.com/support/coldfusion/ts/documents/install_cf_win2003.htm http://www.macromedia.com/support/coldfusion/ts/documents/install_cf_win2003.htm

RE: Boolean performance question...

2003-06-05 Thread Philip Arnold
I'm not sure how it was slightly invalid in that sense I was testing the performance of usable expressions to get same or similar results. For the purposes of this test (which statement is faster) it doesn't matter if cfif i does an IsDefined check. Nor does it matter when comparing

cfsavecontent.... throw/catch question

2003-06-05 Thread David Collie (itndac)
Hey all doing something like this (simplified) main.cfm cftry cfsavecontent variable=sReport cfinclude template=report.cfm /cfsavecontent cfcatch type=MISSINGINCLUDE !--- do relocation with error

Regex Help

2003-06-05 Thread Michael Tangorre
Good Morning. A day or so ao I got some help with a regular expression and when I wrote a sample input string to match against it worked fine, howvever I failed to realize I have to HTMLCodeFormat the results from the http post in order to get a string to use. The Regex does not seem to work

re: Definfing system environment variables

2003-06-05 Thread Bushy
Hi, I've developed a web interface that executes a .EXE file on the server. This program being executed requires the system environment LPDSERVER to be defined. I can get my application to work if I go and define LPDSERVER as a system environment variable and reboot the box. There are quite a

RE: Trusted cache?

2003-06-05 Thread Philip Arnold
The docs are pretty thin on the Trusted cache option in CF5 Admin but I found a Tech Note in MM saying it should be anabled on Production Servers. Is this standard practice out there and, other than remembering to refresh when updating templates, are there any gotchas to be aware of? You

RE: Regex Help

2003-06-05 Thread Adrian Lynch
I'm not sure if this will help, but try nesting your functions the other way so the RegEx gets applied before the HTMLCodeFormat, or if that doesn't work, do it the other way :OP Ade -Original Message- From: Michael Tangorre [mailto:[EMAIL PROTECTED] Sent: 05 June 2003 13:03 To: CF-Talk

Re: Regex Help

2003-06-05 Thread Matthew Walker
^ is start of string, $ is end of string, so it looks like you've got these aroung the wrong way. Secondly, you want everything between but not including the %--- ---% right? So put the parentheses *inside* How about this: result = REreplace(cfhttp.fileContent,^.*%---(.*)---%.*$,\1) Regards,

Re: cfsavecontent.... throw/catch question

2003-06-05 Thread Michael Tangorre
Are you wrapping everything correctly in cftry? Mike - Original Message - From: David Collie (itndac) [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, June 05, 2003 8:03 AM Subject: cfsavecontent throw/catch question Hey all doing something like this (simplified)

OT: disable flash temporarily

2003-06-05 Thread I-Lin Kuo
OK, I have to have flash installed because of certain conferencing software, but I really hate the popups. Is there some way i can disable it until I need it, short of deinstalling it? I'm using IE, but I'm willing to switch to some other browser if that's the cost to avoid flash pop-ups. =

RE: Definfing system environment variables

2003-06-05 Thread Heald, Tim
Use the command line path=%path%+c:\myNewPath\; Or whatever Tim -Original Message- From: Bushy [SMTP:[EMAIL PROTECTED] Sent: Thursday, June 05, 2003 8:07 AM To: CF-Talk Subject: re: Definfing system environment variables Hi, I've developed a web interface that

Re: Regex Help

2003-06-05 Thread Michael Tangorre
sorry that the code got all scrunched together.. let me try posting the code again... htmlheadtitleTransGatewayAPI/title/headbody%---StartParseRC=0|S topParse---%/body/html This is the regex I was trying to use: result =REreplace(cfhttp.fileContent,$.*(%---.*---%).*^,\1) nothing is found

RE: Definfing system environment variables

2003-06-05 Thread Bushy
Umm... Not sure thats what I need. We are running CYGWIN which I have certain directories pre-defined. Like: $test = c:\documents\test So when a user opens a telnet session they can do: cd $test I need to define 200+ environment variables for my web-interface to work. Is there a way to

RE: Regex Help

2003-06-05 Thread Adrian Lynch
Assuming the RegEx works, at what point have you been using HTMLCodeFormat()? -Original Message- From: Michael Tangorre [mailto:[EMAIL PROTECTED] Sent: 05 June 2003 13:13 To: CF-Talk Subject: Re: Regex Help sorry that the code got all scrunched together.. let me try posting the code

CFQUERY - cachedwithin

2003-06-05 Thread Jim Banks
When you have used cachedwithin in CFQUERY, is it possible to override that before the cachedtime is up? For example, cfif not isdefined(application.recache) cfquery name=query datasource=dsn cachedwithin=#createtimespan(0,1,0,0)# ...BLAH... /cfquery cfelse cfquery name=query

Re: Regex Help - SOLVED

2003-06-05 Thread Michael Tangorre
Perfect. Works great now. Matthew, thanks for clarifying my erroroneous format and thanks to Ade for the tip as well. Both were needed! TA, Mike - Original Message - From: Matthew Walker [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, June 05, 2003 8:09 AM Subject: Re:

RE: cfsavecontent.... throw/catch question

2003-06-05 Thread David Collie (itndac)
!- Code in my calling template -- disp_cm_reports_controller3.cfm cfsavecontent variable=sCM_Reports_HTMLContent cftry cfinclude template=disp_cm_reports_summary3.cfm

Re: Contract Question

2003-06-05 Thread jon hall
Let me add this Netg Courseware thing as a great overall look at contracts. For me it was very informative, and managed not to be mind-numbing. http://learning.trifus.com/e/catalog/detail.html?P=2238 -- jon mailto:[EMAIL PROTECTED] Thursday, June 5, 2003, 4:33:38 PM, you wrote: HM

Re: java pop up ?

2003-06-05 Thread Dave Lyons
that's for setting me straight on that Charlie;) all the same to me haha but thanks for the code, I cant really get it to work though dave - Original Message - From: Charlie Griefer [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, June 05, 2003 12:50 AM Subject: RE: java pop

RE: java pop up ?

2003-06-05 Thread Charlie Griefer
wanna post what you have? -Original Message- From: Dave Lyons [mailto:[EMAIL PROTECTED] Sent: Thursday, June 05, 2003 8:42 PM To: CF-Talk Subject: Re: java pop up ? that's for setting me straight on that Charlie;) all the same to me haha but thanks for the code, I cant really get it to

active edit alternaitves

2003-06-05 Thread mtangorre
anyone have any recommendations for alternatives to active edit from cfdev.com? Thanks. Mike ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: java pop up ?

2003-06-05 Thread Dave Lyons
you can see what it does by going to http://www.horsenrider.com/horsenrider/index.cfm and login with the username: dave password: 123 and under horses for sale you will see two links. [edit] [delete] the one i am concerned with is the delete one. Part of the problem I am having is that the are

file conversion

2003-06-05 Thread Dana Tierney
Is there a relatively low tech way of converting flat files delimited with | into a mysql database? I am on a different host now and have cold fusion asp perl and maybe php available. Dana But I don't make films But if I did they'd have a samurai - Bare Naked Ladies

Re: active edit alternaitves

2003-06-05 Thread Dave Lyons
i have been using htmlarea from http://www.interactivetools.com/ its a free one and so far it has been working great:) i have it up if you want to see it @ http://www.rmflyfisher.com/board/new.topic.cfm I have taken a lot of its functions away for the public version Dave - Original Message

RE: active edit alternaitves

2003-06-05 Thread Tilbrook, Peter
A limited Flash component is in one of the DevNet Resource Kits, also ewebedit pro (http://www.ektron.com) and SiteObjects soEditor (http://www.siteobjects.com). == Peter Tilbrook Internet Applications Developer Australian Building Codes Board GPO Box 9839 CANBERRA ACT 2601 AUSTRALIA WWW:

RE: active edit alternaitves

2003-06-05 Thread Matthew Walker
There's... soeditor from siteobjects.com, realobjects.de, ektron ewebedit pro or I think the flash editor in one of MACR's DRKs There's also one that produces XHTML. Somebody'll know what it's called. among others... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

Re: OT: disable flash temporarily

2003-06-05 Thread Sean A Corfield
On Thursday, Jun 5, 2003, at 15:06 US/Pacific, I-Lin Kuo wrote: I'm pretty sure these are flash. It's not a new window that pops up, it's an animated ad overlaying the content. Ah, OK. Then it's not a pop-up. The Flash ad is already embedded in the page and uses transparent mode to appear

Re: OT: disable flash temporarily

2003-06-05 Thread S . Isaac Dealey
On Thursday, Jun 5, 2003, at 15:06 US/Pacific, I-Lin Kuo wrote: I'm pretty sure these are flash. It's not a new window that pops up, it's an animated ad overlaying the content. Ah, OK. Then it's not a pop-up. The Flash ad is already embedded in the page and uses transparent mode to appear

Re: file conversion

2003-06-05 Thread S . Isaac Dealey
Is there a relatively low tech way of converting flat files delimited with | into a mysql database? I am on a different host now and have cold fusion asp perl and maybe php available. If you've got coldfusion and a dsn for a mysql database it should just be a matter of figuring out how to

RE: java pop up ?

2003-06-05 Thread Charlie Griefer
try: cfscript if (cgi.http_user_agent CONTAINS 5.5) { cursorType = hand; } else { cursorType = pointer; } /cfscript span onmouseover=this.style.cursor='#cursorType#';

cfc documentation

2003-06-05 Thread jonhall
Is there a cfc documentation tool out there like javadocs yet? -- mailto:[EMAIL PROTECTED] ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

SOT: Macromedia Breeze

2003-06-05 Thread Tilbrook, Peter
Any news on an evaluation/trial version? == Peter Tilbrook Internet Applications Developer Australian Building Codes Board GPO Box 9839 CANBERRA ACT 2601 AUSTRALIA WWW: http://www.abcb.gov.au/ E-Mail: [EMAIL PROTECTED] Telephone: +61 (02) 6213 6731 Mobile: 0439 401 823 Facsimile: +61

RE: Handling subdomains

2003-06-05 Thread Thane Sherrington
At 01:43 PM 06/04/03 +0100, Dave Wilson wrote: I've not tested this throughly but should work in most cases. It works! Thanks. T Tired of your bookmarks/favourites being limited to one computer? Move them to the Net! www.stuffbythane.com/webfavourites makes it easy to keep all your

RE: Selecting form

2003-06-05 Thread Bushy
Whats wrong with the below syntax? select name=selectSystem size=1 class=inputfield option value= defaultSelect System.../option option value=Windows 95cfif FORM.value EQ Windows 95

RE: Selecting form

2003-06-05 Thread John Stanley
you dont have a closing quote after the value for each option after the default -Original Message- From: Bushy [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 9:37 AM To: CF-Talk Subject: RE: Selecting form Whats wrong with the below syntax? select

Proprietary rights

2003-06-05 Thread Kris Pilles
Anyone on the list have experience with granting of proprietary rights to a client? How to determine its worth If I am using some open soruce/free snippets in my code is it possible to grant proprietary rights or do I have to develop everything form scratch etc... KP Kris Pilles Website

RE: Selecting form

2003-06-05 Thread Thane Sherrington
At 09:36 AM 06/04/03 -0400, Bushy wrote: Whats wrong with the below syntax? When I have data already selected in a drop down box, I do it like this: select name=selectSystem size=1 class=inputfield option value=#CurrentValue##CurrentDisplayedData#/option option value=Windows

RE: Selecting form

2003-06-05 Thread Eric Creese
for onee you are missing an ending for the value -Original Message- From: Bushy [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 8:37 AM To: CF-Talk Subject: RE: Selecting form Whats wrong with the below syntax? select name=selectSystem size=1

RE: Selecting form

2003-06-05 Thread Bushy
This is waht I have now but for some reason only Windows 98, Windows NT and Windows 2000 appear in my dropdown menu. The other are missing? I even tried sing;e quotes without any luck. For example: option value=Windows 95cfif FORM.selectSystem EQ 'Windows 95' selected/cfifWindows 95/option

RE: Selecting form

2003-06-05 Thread John Stanley
like this: select name=selectSystem size=1 class=inputfield option value= defaultSelect System.../option option value=Windows 95cfif FORM.selectSystem EQ Windows 95 selected/cfifWindows 95/option option value=Windows 98cfif FORM.selectSystem EQ Windows 98 selected/cfifWindows 98/option option

RE: Selecting form

2003-06-05 Thread Randell B Adkins
Try removing the CFIF from the VALUE First off your value on the option WOULD ALWAYS BE like: Windows 95cfif FORM.selectSystem EQ Should read: option value=Windows 98 cfif FORM.selectSystem EQ 'Windows 98' selected/cfifWindows 98/option Close the QUOTES after the desired value and then

RE: Selecting form

2003-06-05 Thread David Collie (itndac)
Could also code it all like this if you are anal like me.. cfset l_OS = Windows 95,Windows 98, Windows ME,Windows XP select name=selectSystem size=1 class=inputfield option value=Select System.../option cfloop list=#l_OS# index=sIndex cfset sIndex =

Auction software

2003-06-05 Thread John Lucas
Any one seen any good CF auction software? It's for a community site I'm working on. TIA John -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 8:36 AM To: CF-Talk Subject: RE: Handling subdomains At 01:43 PM 06/04/03 +0100, Dave

OT - mailing lists

2003-06-05 Thread Michael Tangorre
I have been scouring the net for a good C++ mailing list. Anyone know of a good one with decent traffic? Thanks, Michael Tangorre ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: Boolean performance question...

2003-06-05 Thread Calvin Ward
Interestingly... I ran a test, just for fun... CF5: Iterations: 100,000 LoopIS (i IS 1): 2.578 seconds LoopEQ (i EQ 1): 2.734 seconds LoopGTE (i GT 1): 4.797 seconds LoopBoolean (i): 4.172 seconds LoopIsTrue (i IS True): 2.563 seconds LoopBooleanFalse (tFalse): 2.265 seconds Total Time:

RegEx - Removing HTML Tags from String

2003-06-05 Thread Paul Giesenhagen
Is it possible to remove everything between a and in a string? Original String = This is font color=redDay/font and not yours! Output String = This is my Day and not yours! Is this possible in a regular expression or do I need to write the CF code to strip things out? Thanks in advance!

RE: RegEx - Removing HTML Tags from String

2003-06-05 Thread Adrian Lynch
Try REReplaceNoCase( string, /?[^]*, , all ) Ade -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED] Sent: 04 June 2003 15:29 To: CF-Talk Subject: RegEx - Removing HTML Tags from String Is it possible to remove everything between a and in a string? Original String =

Regex replacing whole words

2003-06-05 Thread Jim Banks
I can't get my head around regular expressions! Help me please before I go mad! I need to replace one word with another, matching cases (if possible), but in a smart way. eg. Ben lives in benland. But ben is actually not called ben. He's called ben-dabble Say I want to replace 'ben' (any

Re: Regex replacing whole words

2003-06-05 Thread Jerry Johnson
This gets you part of the way: cfset oldname=ben cfset str=Ben lives in benland. But ben is actually not called ben. He's called ben-dabble. cfset newname=mike cfset t=rereplaceNoCase(str,(^|[^[a-zA-Z]]?)#oldName#([^[a-zA-Z]]?|$),\1#newName#\2,ALL) cfoutput#t#/cfoutput Note that it does not

Re: Regex replacing whole words

2003-06-05 Thread Jim Banks
That's great Jerry! Thanks! That does most of what I need. I think the majority of the 'case' problems will just be where the first letter is capitalised. One thing I've noticed though is that if you have 'ben ben' it only replaces the first 'ben' with 'mike'. So it becomes 'mike ben'.

RE: CF Server Serial

2003-06-05 Thread John Wilker
man if it were a deadly spider monkey, I'd be a goner. I opened the version section and completely missed the top half. Wow it's gonna be one of those days. Thanks -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 03, 2003 6:31 PM To: CF-Talk Subject: Re:

SOLVED Re: RegEx - Removing HTML Tags from String

2003-06-05 Thread Paul Giesenhagen
Thanks, that did the trick! Paul Giesenhagen QuillDesign - Original Message - From: Adrian Lynch [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 9:36 AM Subject: RE: RegEx - Removing HTML Tags from String Try REReplaceNoCase( string, /?[^]*, , all )

cflock?

2003-06-05 Thread John Ho
I try to do the way you said but not working here what I do in application.cfm I check if this application in use or not. cfif application.inuse is true application in use please wait ... cfelse cfset application.inuse = true access

RE: Regex replacing whole words

2003-06-05 Thread Andre Mohamed
Standing on the shoulders of giants a very quick and dirty way of dealing with the case issue: cfset oldname=ben cfset newname=mike cfset t=rereplace(str,(^|[^[a-zA-Z]]?)#oldName#([^[a-zA-Z]]?|$),\1#newName# \2,ALL) cfset oldname=Ben cfset newname=Mike cfset

RE: Regex replacing whole words

2003-06-05 Thread Ben Doom
As far as the ben ben problem goes -- this is a problem I've run into before. Essentially, the space after the first ben is used up so it can't be used to match the next ben. So you have to run the replace multiple times. By the way, I approve of your example names. :-) Anyhow, here's what

RE: Regex replacing whole words

2003-06-05 Thread Ben Doom
This will work for the titlecase and whatnot. You'll still need to run the rereplaces twice each to handle the dreaded ben ben problem. But it's basically a good approach. -- Ben Doom Programmer General Lackey Moonbow Software, Inc : -Original Message- : From: Andre Mohamed

RE: SOLVED Re: RegEx - Removing HTML Tags from String

2003-06-05 Thread Ben Doom
2 things: 1) you don't need rereplacenocase, since you're not specifying any alphas. rereplace will give you slightly (very slightly) better performance. 2) This question /so/ needs to go in a regex faq. I'm not meaning to bash Paul, mind you, but this gets asked so very often I've written a

RE: Regex replacing whole words

2003-06-05 Thread Jerry Johnson
Nice touch. Handles the two most obvious cases. OK, I made a mistake, which explains the ben ben non-find. Get rid of the ? in both [^[a-zA-Z]] checks. cfset oldname=ben cfset newname=mike cfset newStr=rereplace(str,(^|[^[a-zA-Z]])#oldName#([^[a-zA-Z]]|$),\1#newName#\2,ALL) cfset oldname=Ben

RE: Boolean performance question...

2003-06-05 Thread Neil Middleton
This is a slightly invalid test as cfif i does an isDefined() check as well. Interesting performance from RedSky tho Neil -Original Message- From: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: 04 June 2003 15:18 To: CF-Talk Subject: Re: Boolean performance question...

RE: SOLVED Re: RegEx - Removing HTML Tags from String

2003-06-05 Thread Adrian Lynch
this gets asked so very often I've written a response and stored it in a .txt file so I can just copy paste! Really? I had to go to my UDFs folder :OD Ade -Original Message- From: Ben Doom [mailto:[EMAIL PROTECTED] Sent: 04 June 2003 16:12 To: CF-Talk Subject: RE: SOLVED Re: RegEx -

RE: Regex replacing whole words

2003-06-05 Thread Jerry Johnson
My recent suggestion didn't work. Leave the ? in there! cfset oldname=ben cfset newname=mike cfset newStr=rereplace(str,(^|[^[a-zA-Z]]?)#oldName#([^[a-zA-Z]]?|$),\1#newName#\2,ALL) !--- second one to handle ben ben as per ben ben doom --- cfset oldname=ben cfset newname=mike cfset

Re: SOLVED Re: RegEx - Removing HTML Tags from String

2003-06-05 Thread Paul Giesenhagen
I searched the archives first, but couldn't find anything .. .so I asked the group ... searched for remove html, remove html tags etc... but no luck.. I do know it gets asked alot ... I figured I would find it easily ... Thanks for your help! Paul Giesenhagen QuillDesign - Original Message

...But the pages are there!

2003-06-05 Thread Richard Crawford
Thanks to all who replied to my question about index 55, size 33. I deleted the .class files, and that seems to have solved the problem. Now, however, I have a different problem. How can it be possible that my server doesn't see files that are actually there? For example, I tell my browser

RE: Regex replacing whole words

2003-06-05 Thread Ben Doom
Now that I look more closely, the ? is wrong (good catch!) and you've got too many brackets. However, that still doesn't fix the benben problem, as I explained in another email. The re should be (^|[^a-zA-Z])#oldName#([^a-zA-Z]|$) Note that the a-zA-Z is not in a second set of brackets. --

RE: SOLVED Re: RegEx - Removing HTML Tags from String

2003-06-05 Thread Ben Doom
I didn't save out the RE -- I saved out the whole message with explanations and all. :-) -- Ben Doom Programmer General Lackey Moonbow Software, Inc : -Original Message- : From: Adrian Lynch [mailto:[EMAIL PROTECTED] : Sent: Wednesday, June 04, 2003 11:22 AM : To: CF-Talk :

RE: Regex replacing whole words

2003-06-05 Thread Ben Doom
No -- if you leave the ? in, then benbob will match because that's the same as ben(empty string)bob which matches. -- Ben Doom Programmer General Lackey Moonbow Software, Inc : -Original Message- : From: Jerry Johnson [mailto:[EMAIL PROTECTED] : Sent: Wednesday, June 04, 2003

Re: Selecting form

2003-06-05 Thread Ewok
option value= defaultSelect System.../option VS. option value=defaultSelect System.../option Bushy [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] This is waht I have now but for some reason only Windows 98, Windows NT and Windows 2000 appear in my dropdown menu. The other are missing?

RE: RegEx Expert challenge

2003-06-05 Thread Dennis Powers
I can use some help. I need a RegEx to determine if there are three or more invalid HTML tags on a page. First define what you mean by invalid HTML tags. Open tags without closing tags? Tags without a closing bracket? tags that are not part of the HTML syntax? I suppose I should have been

cflock?

2003-06-05 Thread John Ho
I try to do the way you said but not working here what I do in application.cfm I check if this application in use or not. cfif application.inuse is true application in use please wait ... cfelse cfset application.inuse = true access page ... /cfif in OnRequestEnd.cfm I set cfset

RE: Regex replacing whole words

2003-06-05 Thread Jerry Johnson
The extra brackets were a left over from changing from POSIX alpha class to a-z style. And the one you have there works. (I am going back to writing verity search97 indexing routines - you know, something simple.) Jerry Johnson [EMAIL PROTECTED] 06/04/03 11:26AM Now that I look more

Re: Back Buttons

2003-06-05 Thread Jason Miller
unless I am missing something... just change the -1 to -2 I had just done this on one of my client's pages.. If a search comes up empty I simply do a cfif GetDetails.RecordCount EQ 0 cfset ICameFrom = Javascript:history.go(-2) cflocation url=#ICameFrom# /cfif I happen to know the search process

Back Buttons

2003-06-05 Thread Stephenie Hamilton
testing. cannot receive any cf-talk mail. ~~ Stephenie ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4 FAQ:

Re: ...But the pages are there!

2003-06-05 Thread Randell B Adkins
if you are on Linux or some platform that is case-sensitive, it could be Page1.cfm and not page1.cfm [EMAIL PROTECTED] 06/04/03 11:20AM Thanks to all who replied to my question about index 55, size 33. I deleted the .class files, and that seems to have solved the problem. Now, however, I

RE: cflock?

2003-06-05 Thread Barney Boisvert
Is OnRequestEnd.cfm in the same directory as Application.cfm? --- Barney Boisvert, Senior Development Engineer AudienceCentral (formerly PIER System, Inc.) [EMAIL PROTECTED] voice : 360.756.8080 x12 fax : 360.647.5351 www.audiencecentral.com -Original Message- From: John Ho

CFMX Woes

2003-06-05 Thread Greg Luce
I installed MX on a Win2K advanced server machine (Upgrade from CF5). None of the SQL datasources came over. Apparently it's due to my SQL Server using windows authentication rather than SQL Server authentication. Then I ran Updater3 and restarted and tried a site with a SQL datasource and it

On Browser Close

2003-06-05 Thread Shahzad.Butt
I know its more or less javascript question. How can I update a row in DB when user closes browser? If user closes browser then message should be popped up saying you will be Unavailable YES (button1) NO (button2). and each Yes and No will have approriate actions. Thanks Shahzad Butt

Re: ...But the pages are there!

2003-06-05 Thread Richard Crawford
I'm on Solaris, which is, of course, case-sensitive. Believe you me, that was the first thing I checked (we're in the process of upgrading our web servers from Windows/IIS to Solaris/Apache, so we've got quite a few of those case-sensitivity issues coming up). At 11:38 AM 6/4/2003 -0400, you

Re: RegEx Expert challenge

2003-06-05 Thread Thomas Chiverton
On Wednesday 04 Jun 2003 16:28 pm, Dennis Powers wrote: I suppose I should have been more precise. What I am trying to do is extract email messages from a POP account for archiving and throw away those that are obviously spam. The main trick I see in the spam it gets is to scatter non-html

Re: ...But the pages are there!

2003-06-05 Thread Thomas Chiverton
On Wednesday 04 Jun 2003 16:46 pm, Richard Crawford wrote: I'm on Solaris, which is, of course, case-sensitive. Believe you me, that was the first thing I checked (we're in the process of upgrading our web servers from Windows/IIS to Solaris/Apache, so we've got quite a few of those

Re: On Browser Close

2003-06-05 Thread Thomas Chiverton
On Wednesday 04 Jun 2003 16:46 pm, Shahzad.Butt wrote: I know its more or less javascript question. How can I update a row in DB when user closes browser? If user closes browser then message should be popped up saying you will be Unavailable YES (button1) NO (button2). There is an

Re: ...But the pages are there!

2003-06-05 Thread Randell B Adkins
The only other thing was we noticed as odd behavior was on Linux and within a few of our applications that in the HELP directory pages were there but not seen via web browser nor CF Studio but when you copied a file into that directory that already exists, it would indicate such. Now this only

RE: On Browser Close

2003-06-05 Thread Robertson-Ravo, Neil (RX)
it can be done...but if I remember correctly its quite an ordeal...we use it in one of our admin areas and I seem to remember it not being that straighforward. -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: 04 June 2003 16:50 To: CF-Talk Subject: Re: On Browser

RE: ...But the pages are there!

2003-06-05 Thread Tony Walker
Try clearing your browser cache. ô¿ô Tony -Original Message- From: Richard Crawford [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 8:21 AM To: CF-Talk Subject: ...But the pages are there! Thanks to all who replied to my question about index 55, size 33. I deleted the .class

RE: On Browser Close

2003-06-05 Thread Shahzad.Butt
onLoad of which page cos user could be anywhere??? Don't tell me application.cfm :) -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: 04 June 2003 16:50 To: CF-Talk Subject: Re: On Browser Close On Wednesday 04 Jun 2003 16:46 pm, Shahzad.Butt wrote: I know its

Re: ...But the pages are there!

2003-06-05 Thread Richard Crawford
Seems to be a permissions issue. It worked when I CHMOD'ed the files to 755; they were set at 700. At 11:51 AM 6/4/2003 -0400, you wrote: another suggestion is checking the permissions on the directory itself. ~| Archives:

Re: ...But the pages are there!

2003-06-05 Thread Doug White
funny, when I click on that link I get a redirect to a well known spamvertised web site! == Stop spam on your domain, use our gateway! For CF hosting solutions http://www.clickdoug.com ISP rated: http://www.forta.com/cf/isp/isp.cfm?isp_id=772

Re: ...But the pages are there!

2003-06-05 Thread Randell B Adkins
I am sure he meant that as an example and not a true LINK [EMAIL PROTECTED] 06/04/03 12:08PM funny, when I click on that link I get a redirect to a well known spamvertised web site! == Stop spam on your domain, use our gateway! For CF hosting solutions

Re: ...But the pages are there!

2003-06-05 Thread Richard Crawford
Okay, TRUST ME when I say that I'm not associated with that site! Ugh. I had no idea mysite.com was an actual site. I'll be more discriminating in the future. (The site I'm at is http://unexdlc.ucdavis.edu -- though I'm working on the development server, which is not currently available to

Session Variables Dropping

2003-06-05 Thread Sam Komolafe
Hi, Why could session variables be dropping intermetently on my app. The variables are properly locked. On each page I localize the variables by moving them to a local scope. Once in a while, this local variables which should always be there are not found. I am using CF5 Pro on a Win2000

Re: On Browser Close

2003-06-05 Thread Thomas Chiverton
On Wednesday 04 Jun 2003 17:00 pm, Shahzad.Butt wrote: onLoad of which page cos user could be anywhere??? Don't tell me application.cfm :) shrug If youre app has site wide things like the contents of body defined in more than a few places, then you have bigger problems than 'are you sure you

  1   2   3   >