RE: regex help for grabbing values of html tag attributes

2005-03-23 Thread Pascal Peters
Google doesn't put quotes around most attributes. The following works (takes single or double quotes or even no quotes into consideration). Watch out for wrapping in the regular expressions. It allows you to find the value of 1 attribute in one or more tags (see examples). function GetAttributeVa

RE: regex help for grabbing values of html tag attributes

2005-03-23 Thread Pascal Peters
Google doesn't put quotes around most attributes. The following works (takes single or double quotes or even no quotes into consideration). Watch out for wrapping in the regular expressions. It allows you to find the value of 1 attribute in one or more tags (see examples). function GetAttributeVa

RE: Extracting/Replacing URL's from text

2005-03-23 Thread Pascal Peters
Regexp can do it for you: newurl = "new url to prepend/"; regexp = "(]*href="")(.*?)(""[^>]*>)"; newtext = REReplaceNoCase(text,regexp,"\1#newurl#\2\3","all"); This only takes links into consideration and the url has to be surrounded by double quotes. If the href attribute can have double, sing

RE: Extracting/Replacing URL's from text

2005-03-23 Thread Micha Schopman
Do you have the ability to retrieve them with Javascript? A while ago I did some testing of a linkchecker with Javascript to take away some of the load from the server (but it failed due to cross domain security settings in IE). http://www.mschopman.demon.nl/linkchecker.html The link extracting

nesting variables...

2005-03-23 Thread Protoculture
I have defined a variable earlier in my template titled region. and it equals a string of my location... ie. CAN or US. I also have a query titled countryName. select #region# from location where id = #form.location# So how could I use that region varible in order to

RE: nesting variables...

2005-03-23 Thread Kerry
#countryName[region][countryName.currentrow]# -Original Message- From: Protoculture [mailto:[EMAIL PROTECTED] Sent: 23 March 2005 11:15 To: CF-Talk Subject: nesting variables... I have defined a variable earlier in my template titled region. and it equals a string of my location... ie.

RE: nesting variables...

2005-03-23 Thread Pascal Peters
OR avoid the problem altogether select #region# AS myregion from location where id = #form.location# #countryName.myregion# Pascal > -Original Message- > From: Kerry [mailto:[EMAIL PROTECTED] > Sent: 23 March 2005 13:28 > To: CF-Talk > Subject: RE: nesting variables... > > #countryNa

Re: Default Value for MS Access ALTER TABLE ADD COLUMN

2005-03-23 Thread Thomas Chiverton
On Tuesday 22 Mar 2005 01:10 am, Stan Winchester wrote: > It seems if it can be done in the Access "Design View" there should be a > SQL equivalent. Why ? One thing knows all about the grubby internals of your specific database, and the other is an open language standard. -- Tom Chiverton Adva

Re: Free Coldfusion Devs Tool

2005-03-23 Thread Thomas Chiverton
On Tuesday 22 Feb 2005 19:25 pm, Bryan F. Hogan wrote: > He should be able to make a mac projector and all will be ok for your Mac. Does anyone know if http://www.keslabs.com/crd/ is being updated still ? -- Tom Chiverton Advanced ColdFusion Programmer ~

RE: nesting variables...

2005-03-23 Thread S . Isaac Dealey
or #countryName[region][1]# if the query is only supposed to return a single row - the problem of course will occur if the query returns no rows, then [1] (or any number) will produce an error whereas #countryName.myregion# would return an empty string. So if there's any doubt that the query might

RE: nesting variables...

2005-03-23 Thread Adrian Lynch
Since CF6 referencing a row greater than the record count, even one of 0, doesn't cause an error. In fact, all of these "work"... #qArticles["ArticleID"][-10]# #qArticles["ArticleID"][0]# #qArticles["ArticleID"][1000]# regardless of the record count of qArticles. Whi

Flash Forms: Lesson Learned

2005-03-23 Thread C. Hatton Humphrey
Just thought I'd share this bit of "duh" with folks - I've been working on a flash form in CFMX7 and it wasn't quite working the way that I was used to it from other forms. On HTML forms you have to be careful to make sure that checkbox and radio fields exist in the action set. Now with flash

RE: 32K span If possible, please refactor this component

2005-03-23 Thread Mike Nimer
There is a hard limit of the generated actionscript. (remember it's cfml -> mxml -> actionscript). The actionscript compiler can't handle .as files larger then this limit. Unfortunately there isn't a way to tell you hard limit on the amount of cfml you can write, or to refactor the code around th

Re: Free Coldfusion Devs Tool

2005-03-23 Thread Mark Drew
I am not sure if its being updated (no info here) but I have tried to use it with CFMX 7 but havent got it running (but the right server and path) Is there problems with the Java objects it creates? MD On Wed, 23 Mar 2005 14:12:02 +, Thomas Chiverton <[EMAIL PROTECTED]> wrote: > On Tuesday

Coldfusion report builder - charts in excel not working?

2005-03-23 Thread Cynthia Reece
Hi All, I've been trying to get comfortable with the new Report Builder in MX7. I have created a new report that has a pie chart. When I set the report type to either Flashpaper or PDF the pie chart displays fine, however when I set the report type to excel, no dice. I get the report header but n

Re: Coldfusion report builder - charts in excel not working?

2005-03-23 Thread Douglas Knudsen
I haven't played with this since beta days What version of M$ Office? Have you tested on different versions of Office? My company is still stuck on Office 97, which usually can't do any of this stuff. D On Wed, 23 Mar 2005 10:32:59 -0500, Cynthia Reece <[EMAIL PROTECTED]> wrote: > Hi All,

Re: Coldfusion report builder - charts in excel not working?

2005-03-23 Thread Phillip Duba
I believe I remember reading in the CFREPORT tag documentation that the export to Excel does not support Charts or some numeric data formatting (I think it goes into text only, not formatted numbers). Thanks, Phil >Hi All, >I've been trying to get comfortable with the new Report Builder in MX7.

RDS and ColdFusion Report Builder

2005-03-23 Thread Phillip Duba
I've asked this on another forum, but thought I'd post hear since the responses seem to be quicker on CF-Talk, :). I've been playing around with the report builder for the last few weeks. I have one question about RDS and its use within a report once its been posted to a server (accessed through

Standard Method of receiving XML

2005-03-23 Thread John Stanley
All, I'm writing an XML interface that receives data from outside users. In my code, I am using GetHttpRequestData to get to the Content header. Now in my testing, I am using CFHTTP to post the requested page and everything is perfect. I can parse and utilize the content header just peach

RE: Free Coldfusion Devs Tool

2005-03-23 Thread Calvin Ward
I couldn't get it to work with 7 either, just hangs. -Original Message- From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 23, 2005 9:54 AM To: CF-Talk Subject: Re: Free Coldfusion Devs Tool I am not sure if its being updated (no info here) but I have tried to use it with C

RE: RDS and ColdFusion Report Builder

2005-03-23 Thread Calvin Ward
My understanding is that RDS is only used for the creation of the reports, the .cfr files shouldn't need RDS. - Calvin -Original Message- From: Phillip Duba [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 23, 2005 10:03 AM To: CF-Talk Subject: RDS and ColdFusion Report Builder I've ask

RE: Free Coldfusion Devs Tool

2005-03-23 Thread Kevin Aebig
I'm the creator of it and Yes, its still being updated. I'm working on getting all the fixes I received by email completed as well as a CF7 version. I'm a one man show with a full time job, so please be patient. =] Cheers, Kevin -- http://www.keslabs.com Coldfusion Remote Dashboard ::

RE: RDS and ColdFusion Report Builder

2005-03-23 Thread Connie DeCinko
You should be passing in the query via a CFC. The query builder really should only be used when first creating the report and the layout. -Original Message- From: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 23, 2005 9:10 AM To: CF-Talk Subject: RE: RDS and ColdFusion R

Re: RDS and ColdFusion Report Builder

2005-03-23 Thread Phillip Duba
I've seen CFCs used for formatting data but not for passing in whole queries, how would you do this, within the Advanced tab of the query builder like one CFHTTP example I saw? Thanks, Phil >You should be passing in the query via a CFC. The query builder really >should only be used when first

RE: Free Coldfusion Devs Tool

2005-03-23 Thread Kevin Aebig
Just so everyone knows, heres a list of the current updates: - Tabbing between fields - Y-axis Graphing scale - Timeout fix - CFC updates and fixes - documentation New features: - Multiple hard disk monitoring - More flexible session querying selection If I've missed anything, please don't hesi

RE: RDS and ColdFusion Report Builder

2005-03-23 Thread Connie DeCinko
In the report builder there is a button that shows you the query/CFC code for you to copy and paste into your own CFC. -Original Message- From: Phillip Duba [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 23, 2005 8:32 AM To: CF-Talk Subject: Re: RDS and ColdFusion Report Builder I've

RE: RDS and ColdFusion Report Builder

2005-03-23 Thread Connie DeCinko
In the report builder there is a button that shows you the query/CFC code for you to copy and paste into your own CFC. -Original Message- From: Phillip Duba [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 23, 2005 8:32 AM To: CF-Talk Subject: Re: RDS and ColdFusion Report Builder I've

Re: Standard Method of receiving XML

2005-03-23 Thread Barney Boisvert
You can't capture the CFHTTP requests unless your sniffer is running on your server, because they never actually leave the server. As for getting your XML out of the header, Just do a search for the first < and first =, take the lower non-zero one, and start reading from there. cheers, barneyb

Re: RDS and ColdFusion Report Builder

2005-03-23 Thread Phillip Duba
I understand that, but is your suggestion below assuming I'm passing in the query using the "query" attribute of the CFREPORT tag and a CFINVOKE prior to this tag to get the query? Maybe I should explaing that the basis of my question is sub-reports. If I create a sub-report, it appears I can on

RE: RDS and ColdFusion Report Builder

2005-03-23 Thread Connie DeCinko
Ahh, sub-reports. Did not see that detail. I do recall this being an issue and don't recall the solution if any. I'll keep an eye out for it. -Original Message- From: Phillip Duba [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 23, 2005 8:45 AM To: CF-Talk Subject: Re: RDS and ColdF

Re: RDS and ColdFusion Report Builder

2005-03-23 Thread Phillip Duba
Thanks Connie and I was afraid that's what the answer would be, Phil >Ahh, sub-reports. Did not see that detail. I do recall this being an issue >and don't recall the solution if any. I'll keep an eye out for it. > > >-Original Message- >From: Phillip Duba [mailto:[EMAIL PROTECTED] >

Reserved word list for verity

2005-03-23 Thread Mark W. Breneman
Dose anyone have a link to a full list (heck, I'll even settle for part of a list) of verity reserved words? I can't believe Google did not return anything of value. Thanks Mark W. Breneman -Cold Fusion Developer -Network Administrator Vivid Media [EMAIL PROTECTED] www.vividmedia.com

Re: Free Coldfusion Devs Tool

2005-03-23 Thread Thomas Chiverton
On Wednesday 23 Mar 2005 16:31 pm, Kevin Aebig wrote: > If I've missed anything, please don't hesistate to let me know. When the > next version is ready, the application will alert you. There was talk of making the client work on non-Windows boxes using projector, or just a bare flash file. As we

RE: Free Coldfusion Devs Tool

2005-03-23 Thread Kevin Aebig
I almost forgot about that. I'll be releasing a browser version as well that maintains the config with CF. Cheers, Kevin -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 23, 2005 11:08 AM To: CF-Talk Subject: Re: Free Coldfusion Devs Tool On We

Re: Free Coldfusion Devs Tool

2005-03-23 Thread Greg Luce
Kevin, It looks great! I installed it locally at 127.0.0.1 with my component path as /Dashboard (which is a directory under the webroot I put the components). The Dashboard seems to connect, but threw an error: Service Connection Error SERVER.PROCESSING Service threw an exception during method invo

RE: Free Coldfusion Devs Tool

2005-03-23 Thread Kevin Aebig
It sounds like either you're running CF7... which hasn't been tested because I don't have CF7. =] - OR - You didn't type in the password properly. As for the username, that can be whatever you want. Its only in place for a future version with more multi-user functionality. Cheers, Kevin -O

RE: cftransaction behavior

2005-03-23 Thread Dave Watts
> CFTRANSACTION action=BEGIN > > CFTRY > > many CFQUERY tags > > CFTRANSACTION action=COMMIT / > > CFCATCH > > CFTRANSACTION action=ROLLBACK / > > /CFCATCH > > /CFTRY > > /CFTRANS

RE: cftransaction behavior

2005-03-23 Thread Dave Watts
> If I comment out the "CFTRANSACTION action=COMMIT" tag and the query > completes without errors, the data is still written to the database. > Shouldn't I have to explicitly use COMMIT in order for the data to be > saved? At first glance it seems that the only time I'd want > to ROLLBACK is i

RE: Search and Replace DWMX 2004

2005-03-23 Thread Dave Watts
> I want to replace a datasource that's listed through many DWMX sites. > I can do the search and get a list without any probelms. In > fact, I can do the replace all and it will replace all the > references for me. My question, the issue is how do I get > the multiple files that have been cha

RE: Ajax

2005-03-23 Thread Dave Watts
> One last comment .. made by Erik Arvidsson.. seems he agrees. > > "Very, very, very hard indeed. > > Writing a mail application is hard using any toolkit. (Just > look at Mozilla Thunderbird.) The same applies to Google > maps. Sure some things might have been easier with WinForms, > Avalo

RE: Standard Method of receiving XML

2005-03-23 Thread John Stanley
Barney, Thanks for your help. John -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 23, 2005 11:40 AM To: CF-Talk Subject: Re: Standard Method of receiving XML You can't capture the CFHTTP requests unless your sniffer is running on your s

Re: 32K span If possible, please refactor this component

2005-03-23 Thread David Brown
Nimer, I just wanted to say thank you for both this answer the suggestion of where to place my form focus on another question. - Original Message - From: "Mike Nimer" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wednesday, March 23, 2005 9:43 AM Subject: RE: 32K span If possible, please ref

RE: Free Coldfusion Devs Tool

2005-03-23 Thread Calvin Ward
I think it's a great looking application, let us know when you've got a CF7 version, as we can't run it to let it alert us :) - Calvin -Original Message- From: Kevin Aebig [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 23, 2005 11:32 AM To: CF-Talk Subject: RE: Free Coldfusion Devs Too

Merging Flex 1.5 and CFMX7 on JRun

2005-03-23 Thread Matt
I'm trying to figure out how to merge Flex 1.5 and CFMX7 on JRun and I'm just not having any luck. I tried the Macromedia tech note for merging Flex 1 and CFMX 6.1, and it wouldn't work (CFMX wouldn't even start until I restored the original web.xml file). Basically what I'm trying to do is insta

Need help parsing CSV file

2005-03-23 Thread Pete Ruckelshaus
I'm a bit stuck. I'm using cffile to read in a CSV file that is comma-delimited, quoted-value; only those values with commas in them are quoted, i.e.: 123,this is a string,456,789 124,"comma, baby",456,789 I need to parse through this file and grab specific values. I'm using a loop to get each

CFgrid

2005-03-23 Thread David Brown
I see if I have my cfgrid set to applet you can use the values attribute and valuesdisplay of the cfgridcolumn. If I set cfgrid to applet and place it in a cfform format= flash. Is the cfgrid still an applet or now considered flash and thush I can't use values and valuesdiplay. David ~~~

Re: Ajax

2005-03-23 Thread Barney Boisvert
> I'm not sure whether he's agreeing with you or with me. He says it's hard to > write a mail application using any toolkit, not that it's especially hard to > do it with DHTML. Yeah, that was more the point I was trying to make. CF-generated HTML is an amazingly simple way to create feature-rich

Re: Need help parsing CSV file

2005-03-23 Thread Graham Pearson
Here is what I do: After cffile: Pete Ruckelshaus wrote: >I'm a bit stuck. I'm using cffile to read in a CSV file that is >comma-delimited, quoted-value; only those values with commas in them >are quoted, i.e.: > >123,this is a string,456,789 >124,"comma, baby",456,

Reading Session Variables

2005-03-23 Thread Chad McCue
Does anyone know if it is possible to read session variables withing Javascript? Example, Have a session variable called "CompareList" JS: function ReadList() { var CurrCompareValues = document.myform.Session.CompareList.value; // This doesn't work because of the Se

RE: Need help parsing CSV file

2005-03-23 Thread Adrian Lynch
>From that sample data below you could do the following: your crlf loop /your crlf loop This assumes there's not much variation from the data below. Ade -Original Message- From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED] S

RE: Reading Session Variables

2005-03-23 Thread Adrian Lynch
Of the top of my head, try a different syntax. var CurrCompareValues = document.myform["Session.CompareList"].value; Does that work? Ade -Original Message- From: Chad McCue [mailto:[EMAIL PROTECTED] Sent: 23 March 2005 19:52 To: CF-Talk Subject: Reading Session Variables Does anyone k

RE: Reading Session Variables

2005-03-23 Thread Dave Watts
> Does anyone know if it is possible to read session variables > withing Javascript? > > Example, > Have a session variable called "CompareList" > > > value="#Session.CompareList#" /> > > > JS: > function ReadList() { > var CurrCompareValues = > document.myform.Session.Com

Re: Reading Session Variables

2005-03-23 Thread Howie Hamlin
It's not possible since session vars are server side only. Regards, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Server PrismAV - Virus scanning for ColdFusion applications >>> Find o

divide by zero error

2005-03-23 Thread Eric J. Hoffman
Overview: run a cold fusion query against a datasource. Get a divide by zero error. Take that query in SQL Query analyzer and type in the query substituting values and it works fine. All values being input by cold fusion appear correct as well. Can anyone identify where to look in this ins

RE: Reading Session Variables

2005-03-23 Thread Adrian Lynch
I think the question he asked was not what he was really after. If my previous post didn't work you can just create the var directly where you are trying to access the form value var CurrCompareValues = #Session.CompareList# instead of var CurrCompareValues = document.

RE: divide by zero error

2005-03-23 Thread Adrian Lynch
Is it a problem in the ColdFusion code rather than the SQL? I can't see where you're doing any division in the code below. Have you got the CF code for us to see? Ade -Original Message- From: Eric J. Hoffman [mailto:[EMAIL PROTECTED] Sent: 23 March 2005 20:05 To: CF-Talk Subject: divide

Re: divide by zero error

2005-03-23 Thread Charlie Griefer
would be better to show your SQL with the CF variables rather than the end SQL result. On Wed, 23 Mar 2005 14:05:22 -0600, Eric J. Hoffman <[EMAIL PROTECTED]> wrote: > Overview: run a cold fusion query against a datasource. Get a divide by > zero error. Take that query in SQL Query analyzer

Re: divide by zero error

2005-03-23 Thread Jochem van Dieten
Eric J. Hoffman wrote: > > Can anyone identify where to look in this instance? > Select > DISTINCT customer.id as cid, > customer.business, > customer_orders.id, > SUM (customer_orders_prod.qty) as totunits > FROM customer_orders > JOIN customer on customer.id = customer_orders.customer_i

RE: divide by zero error

2005-03-23 Thread Eric J. Hoffman
its ugly because I couldn't get the loops to work inside the sql...suggestions also welcomed. :) Select DISTINCT customer.id as cid, customer.business, customer_orders.id, SUM (customer_orders_prod.qty) as totunits FROM customer_orders JOIN customer on custom

RE: Reading Session Variables

2005-03-23 Thread Ken Ferguson
You can output cf variables in your javascript like this: Alert("#session.mysessionvariable#mailto:[EMAIL PROTECTED] Sent: Wednesday, March 23, 2005 2:04 PM To: CF-Talk Subject: Re: Reading Session Variables It's not possible since session vars are server side only. Regards, -- Howie Hamlin -

WOT: networking question and list suggestion

2005-03-23 Thread George Abraham
Hi all, This is quite off topic, but I am sure a lot of people on the list sometimes have to deal with networking questions between two servers. I need to find (if it is possible) the connectivity or the speed of data transfer (via TCP/IP) between two servers in a wide area network. Is there a tool

RE: divide by zero error

2005-03-23 Thread Adrian Lynch
:Oo agghh my eyes!! Only kidding :OD I can't see any division in your code. Am I just being blind? Do you have the error to show us? Is it a CF or SQL one? Ade -Original Message- From: Eric J. Hoffman [mailto:[EMAIL PROTECTED] Sent: 23 March 2005 20:17 To: CF-Talk Subje

RE: divide by zero error

2005-03-23 Thread Adrian Lynch
Also, what are you doing with the resultset? Are you doing ANY calculations? Ade -- No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.308 / Virus Database: 266.8.0 - Release Date: 21/03/2005 ~| Fi

Re: WOT: networking question and list suggestion

2005-03-23 Thread Jochem van Dieten
George Abraham wrote: > > This is quite off topic, but I am sure a lot of people on the list > sometimes have to deal with networking questions between two servers. > I need to find (if it is possible) the connectivity or the speed of > data transfer (via TCP/IP) between two servers in a wide area

RE: divide by zero error

2005-03-23 Thread Eric J. Hoffman
yeah, no division and a big ugly query. CF Error, and if I take out my ugly workaround for zipcode or areacode it works fine. DIAGNOSTIC: Error Executing Database Query. [Macromedia][SQLServer JDBC Driver][SQLServer]Divide by zero error encountered. The error occurred on line 127. -

RE: divide by zero error

2005-03-23 Thread Eric J. Hoffman
no, no result setsjust outputtingit dies exactly in the query where I reference sql2 or sql1 as a variable. pull it out, its okay. But doing the loops in the query I couldn't get to work either, because its very hard to program through the pain meds. I don't recommend. --

Re: divide by zero error

2005-03-23 Thread David Fafard
I do not see any division in sql but this may help... ( [num] / ( case [divider] when 0 then NULL else [divider] end)) Dave - Original Message - From: "Adrian Lynch" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wednesday, March 23, 2005 3:26 PM Subject: RE: divide by zero error Also, wha

RE: divide by zero error

2005-03-23 Thread Adrian Lynch
Output #sql1# and #sql2# and see what it looks like. Ade -Original Message- From: Eric J. Hoffman [mailto:[EMAIL PROTECTED] Sent: 23 March 2005 20:30 To: CF-Talk Subject: RE: divide by zero error no, no result setsjust outputtingit dies exactly in the query where I reference sql

Re: Free Coldfusion Devs Tool

2005-03-23 Thread Will Tomlinson
Opening paragraph, shouldn't it be "initially". Not "initial"? Initial created for personal use, the Coldfusion MX Remote Dashboard is a portable server monitor and administration tool. Will ~| Find out how CFTicket can increa

OT: OSI Hosting Company?

2005-03-23 Thread Donna French
Just wondering if anyone uses OSI Hosting? Their web site claims they are building a facility here in Texarkana where I live and I'm trying to verify they are legit somehow. Any feedback greatly appreciated. TIA, Donna -- Donna French [EMAIL PROTECTED] http://dgfrench.blogspot.com

RE: WOT: networking question and list suggestion

2005-03-23 Thread Eric J. Hoffman
Yeah. Have a baseline file that you use that is always the same size. You must also be cognizant that because unless you own and only control this direct line between the two servers, it will vary in time for file transfers. Eric J

Re: divide by zero error

2005-03-23 Thread Jochem van Dieten
Eric J. Hoffman wrote: SELECT DISTINCT customer.id as cid, customer.business, customer_orders.id, SUM (customer_orders_prod.qty) as totunits FROM customer_orders JOIN customer on customer.id = customer_orders.customer_id JOIN customer_contact on customer.id = customer_contact.cu

RE: divide by zero error

2005-03-23 Thread Eric J. Hoffman
looks perfect SQL, thats what freaks me. example: customer_contact.phone LIKE '%952%' OR customer_contact.phone LIKE '%651%' so that makes that line: AND (customer_contact.phone LIKE '%952%' OR customer_contact.phone LIKE '%651%' ) yeah, no division anywhere and a big ugly query. CF Err

Re: WOT: networking question and list suggestion

2005-03-23 Thread George Abraham
Ha, I was too ignorant to know whether that was a joke or a well-intentioned suggestion. :-) However I am concerned that there is a bottleneck (in terms of old wiring and a bad connection to the Internet backbone) at one of the servers. And no, we don't own the line between the two servers. A dire

Re: divide by zero error

2005-03-23 Thread Jochem van Dieten
Eric J. Hoffman wrote: > looks perfect SQL, thats what freaks me. > example: customer_contact.phone LIKE '%952%' OR customer_contact.phone LIKE > '%651%' > so that makes that line: AND (customer_contact.phone LIKE '%952%' OR > customer_contact.phone LIKE '%651%' ) It is correct SQL until yo

Re: OT: OSI Hosting Company?

2005-03-23 Thread Will Tomlinson
>Just wondering if anyone uses OSI Hosting? Their web site claims they >are building a facility here in Texarkana where I live and I'm trying >to verify they are legit somehow. pst.pt be careful Donna. When I've posted about hosting companies, they've been deemed as cf-community

Re: WOT: networking question and list suggestion

2005-03-23 Thread Charles Polisher
> This is quite off topic, but I am sure a lot of people on the list > sometimes have to deal with networking questions between two servers. > I need to find (if it is possible) the connectivity or the speed of > data transfer (via TCP/IP) between two servers in a wide area network. > Is there a to

RE: divide by zero error

2005-03-23 Thread Eric J. Hoffman
Ahhh, got it. THANK YOU!...and thanks for clearing/cleaning that up...I see how you did the loop and got it to work inside the SQLI added cfsqltype="CF_SQL_DATE" to the two date fields and it magically worked. THANK YOU AGAIN. Er

RE: WOT: networking question and list suggestion

2005-03-23 Thread Eric J. Hoffman
No, well intentioned. :) There are some utilities you can download that will do a little hunt-up for you... Sometimes, too, a good old fashioned tracert will let you watch each hop, tell you how long it is taking to get around...that way you can pinpoint maybe which segment is jacked up sinc

Process CF Page Then Cancel Response

2005-03-23 Thread Dawson, Michael
I want to click on a link, have CF process some stuff (send an email) then that's it. I don't want the page to change in the browser. How do I do that? Thanks M!ke ~| Logware (www.logware.us): a new and convenient web-based tim

Re: Process CF Page Then Cancel Response

2005-03-23 Thread Charlie Griefer
it hasn't been talked about much here lately...but you could try the XMLHTTPRequest :) On Wed, 23 Mar 2005 15:53:04 -0600, Dawson, Michael <[EMAIL PROTECTED]> wrote: > I want to click on a link, have CF process some stuff (send an email) > then that's it. > > I don't want the page to change in

Re: Process CF Page Then Cancel Response

2005-03-23 Thread Nathan Strutz
Your best bet is to do some javascript. Change a hidden iframe, change an image src, call an XMLHttpRequest, or whatever. Have it hit a CFM page, then the current page will stay but your page will have been called -nathan strutz http://www.dopefly.com/ Dawson, Michael wrote: > I want to click

RE: Process CF Page Then Cancel Response

2005-03-23 Thread Dawson, Michael
Is there a way to do it w/o Javascript? I was thinking that there may be some sort of header I could return to the browser that would make it ignore the request altogether. Thanks! -Original Message- From: Nathan Strutz [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 23, 2005 3:59 PM

Re: Process CF Page Then Cancel Response

2005-03-23 Thread Jochem van Dieten
Dawson, Michael wrote: > I want to click on a link, have CF process some stuff (send an email) > then that's it. > > I don't want the page to change in the browser. > > How do I do that? Send a HTTP 204 status code in response without an actual response body: Jochem

RE: Free Coldfusion Devs Tool

2005-03-23 Thread Kevin Aebig
Haha... I'm just a flash geek, not an english major. Good catch though... Thanks Kevin -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 23, 2005 1:39 PM To: CF-Talk Subject: Re: Free Coldfusion Devs Tool Opening paragraph, shouldn't it be "initia

Re: Process CF Page Then Cancel Response

2005-03-23 Thread Jochem van Dieten
Nathan Strutz wrote: > Your best bet is to do some javascript. Javascript is not the right tool for this job. HTTP statuscode 204 "No Content" has been assigned specifically for this purpose: 10.2.5 204 No Content The server has fulfilled the request but does not need to return an ent

Re: Process CF Page Then Cancel Response

2005-03-23 Thread Spike
Use a hidden iframe. I'd have to wonder why you would want that though. Surely if you click a link you want to at least know if the operation completed successfully? Spike Dawson, Michael wrote: > Is there a way to do it w/o Javascript? I was thinking that there may > be some sort of header I

Re: Process CF Page Then Cancel Response

2005-03-23 Thread Nathan Strutz
Jochem van Dieten wrote: > Nathan Strutz wrote: > >>Your best bet is to do some javascript. > > > Javascript is not the right tool for this job. HTTP statuscode > 204 "No Content" has been assigned specifically for this purpose: Yeah, I just read your other post. Neat trick, I didn't know that

DWMC2004 Can save files?

2005-03-23 Thread coldfusion . developer
Does anyone know what's causing this? I get an error message when I try to save edited files in DWMX2004. "While executing receiveArguments in File_Save.htm, the following JavaScript error(s) occurred: at line 75 of the c:\Program Files|Macromedia\DreamWeaver MX 2004\configuration\Menus\mm\File

RE: Process CF Page Then Cancel Response

2005-03-23 Thread Dawson, Michael
Jochem, this worked perfectly. Thanks M!ke -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 23, 2005 4:02 PM To: CF-Talk Subject: Re: Process CF Page Then Cancel Response Dawson, Michael wrote: > I want to click on a link, have CF process some

RE: Process CF Page Then Cancel Response

2005-03-23 Thread Dawson, Michael
I built a "Click to add this event to your calendar" link on our intranet site. The page emails a vCalendar message to the person who is logged in. This really isn't a mission-critical feature. Even if I put a confirmation page, that doesn't really mean the email actually got all the way to the

Re: Process CF Page Then Cancel Response

2005-03-23 Thread Spike
Ah yes, That makes sense. Thanks Spike Dawson, Michael wrote: > I built a "Click to add this event to your calendar" link on our > intranet site. > > The page emails a vCalendar message to the person who is logged in. > > This really isn't a mission-critical feature. Even if I put a > confi

RequestTimeout=900 equivalent for custom tags?

2005-03-23 Thread Nathan C. Smith
Is there a way I can specify a timeout value when I call a custom tag? I have a Custom Tag that relies on a web site that needs a little more time to complete. Sorry if this is a FAQ, I've been away. Thanks. -Nate ~| Logware

RE: RequestTimeout=900 equivalent for custom tags?

2005-03-23 Thread Dave Watts
> Is there a way I can specify a timeout value when I call a > custom tag? I have a Custom Tag that relies on a web site > that needs a little more time to complete. You can set the request timeout for the calling page itself. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Lea

Re: RequestTimeout=900 equivalent for custom tags?

2005-03-23 Thread Barney Boisvert
cheers, barneyb On Wed, 23 Mar 2005 16:41:50 -0600, Nathan C. Smith <[EMAIL PROTECTED]> wrote: > Is there a way I can specify a timeout value when I call a custom tag? I > have a Custom Tag that relies on a web site that needs a little more time to > complete. > > Sorry if this is a FAQ, I've

RE: RequestTimeout=900 equivalent for custom tags?

2005-03-23 Thread Nathan C. Smith
Thanks gentlemen! -Nate -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 23, 2005 4:48 PM To: CF-Talk Subject: Re: RequestTimeout=900 equivalent for custom tags? cheers, barneyb On Wed, 23 Mar 2005 16:41:50 -0600, Nathan C. Smith <[EMAIL PRO

Question about ColdFusionTraining.com

2005-03-23 Thread John Stanley
I'm looking into attending the Cold Fusion MX Master Course at ColdFusionTraining.com. Someone on this list (or cf-community) recently recommended this school, run by Adam and David Churvis. My question to the list is, has anyone here attended any of their classes? If so, do you recommend them?

Re: Question about ColdFusionTraining.com

2005-03-23 Thread Adam Churvis
John, We'd love to have you attend our April class. Remember that class size is limited to only three students, and it's taught by both David and me, so it's more like private mentoring than traditional training. It's also an exhausting class because it lasts from 8AM to 7PM for five days straig

HTML Editor

2005-03-23 Thread Mickael
Hello All, I am sorry for being OT but I was wondering if anyone could point me in the right direction in regards to an HTML Editor that can be used for my users to edit their own pages. I have been using FCK editor and SoEditor but find that their support for stylesheets is terrible. Can an

RE: HTML Editor

2005-03-23 Thread Dustin M Snell [Network Automation]
Why not Dreamweaver MX 2004? That's my favorite one. -Dustin -Original Message- From: Mickael [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 23, 2005 3:02 PM To: CF-Talk Subject: HTML Editor Hello All, I am sorry for being OT but I was wondering if anyone could point me in the right

  1   2   >