SOT: anyone notice that js implemetation of CFDUMP not working in FF4?

2011-06-22 Thread j t
Use this often for ajax debugging in CF, abruptly stopped working (for me) with FF4, http://www.netgrow.com.au/files/javascript_dump.cfm TIA, -m ~| Order the Adobe Coldfusion Anthology now!

CFDUMP not allowed in CFTHREAD in 9 - allowed in 8

2010-09-07 Thread Stephen Cassady
This was new, just migrated some applications from an 8 to a 9 server. Part of our code started to fail. We have a process that uses CFDUMP and mails us the result as we run a process. The process sits inside of a CFTHREAD. This works in 8, it fails in 9. Remove the CFTHREAD, the code works

Re: CFDUMP not allowed in CFTHREAD in 9 - allowed in 8

2010-09-07 Thread Raymond Camden
I'm not seeing any issue with it: cfthread name=doit cfset sleep(2000) cfdump var=#url# /cfthread cfset threadJoin(doit) cfdump var=#cfthread# This works fine for me, On Tue, Sep 7, 2010 at 4:27 AM, Stephen Cassady stephen.cass...@lopedia.com wrote: This was new, just

Re: CFDUMP not allowed in CFTHREAD in 9 - allowed in 8

2010-09-07 Thread Hemant Khandelwal
Can this be becuase of change in cfdump output structure from CF8 to CF9? And the application depending on the same? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael

CFDUMP and Oracle patch

2009-03-20 Thread Jerome Huff
I have just applied the Jan 2009 patch (7703210)to Oracle 9.2.0.8 Once the patching was completed, and the server rebooted, everything works fine, execpt for cfdump and cftrace, both tags now take two to three minutes just to dump a simple 90 record query. The query itself take only 350ms

RE: How to cfdump a single row in a query?

2009-01-06 Thread Andy Matthews
Here's code on CFLib which converts a query row into a struct. You could then dump the struct: http://cflib.org/udf/QueryRowToStruct andy -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Monday, January 05, 2009 10:11 PM To: cf-talk Subject: Re: How to cfdump

Re: How to cfdump a single row in a query?

2009-01-06 Thread Raymond Camden
I know this isn't exactly what you want, but don't forget you can dump one row, the top row, if you use top=1 in your cfdump tag. It will limit the dump of the query to 1 row. Useful for seeing a part of the query in your dump. On Tue, Jan 6, 2009 at 8:25 AM, Andy Matthews li

How to cfdump a single row in a query?

2009-01-05 Thread Pete Ruckelshaus
I'm using cfloop to go through a query result set. Some of the data is giving me trouble...is there a way to use cfdump to dump out the contents of the current row in the recordset? Thanks Pete ~| Adobe® ColdFusion® 8 software

Re: How to cfdump a single row in a query?

2009-01-05 Thread AJ Mercer
try myQuery[myQuery.CurrentRow] 2009/1/6 Pete Ruckelshaus pruckelsh...@gmail.com I'm using cfloop to go through a query result set. Some of the data is giving me trouble...is there a way to use cfdump to dump out the contents of the current row in the recordset? Thanks Pete

Re: How to cfdump a single row in a query?

2009-01-05 Thread Dave Watts
I'm using cfloop to go through a query result set. Some of the data is giving me trouble...is there a way to use cfdump to dump out the contents of the current row in the recordset? No, I don't think so. There's no object that corresponds to a row, within a query object. That said, you

cfdump xml doc hanging server

2008-07-31 Thread Tim Do
I'm trying to dump a xml file but it's killing the server... ideas? cfhttp url=http://www.wng.com/test/test.xml; method=GET cfset xmlfile = xmlparse(cfhttp.filecontent) cfset xmlContent = XMLParse(xmlfile) cfdump var=#xmlContent# If I put

Re: cfdump xml doc hanging server

2008-07-31 Thread Dominic Watson
cfset xmlfile = xmlparse(cfhttp.filecontent) cfset xmlContent = XMLParse(xmlfile) Firstly, that second xmlParse appears to be redundant. You are just parsing an already parsed xml doc. Try: cfset xmlContent = XmlParse(cfhttp.filecontent) cfdump var=#xmlContent# Secondly, that's 321 KB

RE: cfdump xml doc hanging server

2008-07-31 Thread Tim Do
Thanks Dominic! -Original Message- From: Dominic Watson [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2008 1:06 PM To: CF-Talk Subject: Re: cfdump xml doc hanging server cfset xmlfile = xmlparse(cfhttp.filecontent) cfset xmlContent = XMLParse(xmlfile) Firstly, that second

CF8 CFDump of query

2008-05-14 Thread Chad Gray
I recently upgraded to CF8 and I noticed when I dump a Query there is something called SQLPARAMETERS and it display an Array. What is this? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to

RE: CF8 CFDump of query

2008-05-14 Thread Dave Watts
I recently upgraded to CF8 and I noticed when I dump a Query there is something called SQLPARAMETERS and it display an Array. What is this? If I recall correctly, it's your bound parameters, which are created when you use the CFQUERYPARAM tag. Dave Watts, CTO, Fig Leaf Software

Re: CF8 CFDump of query

2008-05-14 Thread Brian Kotek
This is all covered in the documentation by the way. http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html On Wed, May 14, 2008 at 2:55 PM, Chad Gray [EMAIL PROTECTED] wrote: I recently upgraded to CF8 and I noticed when I dump a Query there is something called SQLPARAMETERS and it display

CFDump

2008-05-01 Thread Phillip Vector
I'm running ColdFusion 8 along with Live designer from Adobe (the one that turns PDFs into forms). On every computer tried on the network, I get a result I would expect. 20 fields with the selection choices made on the test shown. When run from MY computer, I get the following.. FIELDNAMES

RE: CFDump

2008-05-01 Thread Dave Watts
I'm running ColdFusion 8 along with Live designer from Adobe (the one that turns PDFs into forms). On every computer tried on the network, I get a result I would expect. 20 fields with the selection choices made on the test shown. When run from MY computer, I get the following..

Re: CFDump

2008-05-01 Thread Phillip Vector
Yeah.. It's really wierd. I think that since I'm using reader 8.0 and everyone else is using the latest (8.1.2?) to load up the form, that may be it. I'm putting on a newer version and hopefully, that will clear it up. BTW, do you know how to check the header information to find out what version

RE: CFDump

2008-05-01 Thread Dave Watts
BTW, do you know how to check the header information to find out what version reader the user is running? The variable in question is Acrobat-Version, if I recall correctly. So, in CF, you can access it via GetHttpRequestData().headers. I would've expected it to be in the CGI scope as well,

Re: CFDump

2008-05-01 Thread Phillip Vector
Thanks. :) On Thu, May 1, 2008 at 3:19 PM, Dave Watts [EMAIL PROTECTED] wrote: BTW, do you know how to check the header information to find out what version reader the user is running? The variable in question is Acrobat-Version, if I recall correctly. So, in CF, you can access it via

Re: CF8 and CFDUMP was: (Re: Coldspring error)

2007-10-25 Thread Mike Kear
Well it beats me. I can run a page with cfdump var=#session# / and that displays just fine. But change that line to cfdump var=#beanfactory# / and the getClass() error we've been talking about pops up. Which things can you CFDUMP and which things can't? What a learning exercise I

Re: CF8 and CFDUMP was: (Re: Coldspring error)

2007-10-25 Thread Tom Chiverton
On Thursday 25 Oct 2007, [EMAIL PROTECTED] wrote: cfdump var=#beanfactory# / I cfdump'ed our application.beanfactory just yesterday, on CF7 on our own servers. It's 'normally' fine. -- Tom Chiverton Helping to heterogeneously maximize bricks-and-clicks data on: http

Re: CF8 and CFDUMP was: (Re: Coldspring error)

2007-10-25 Thread Brian Kotek
You can dump the bean factory itself just fine (or at least I can). It's when you try to call getClass() on it that it won't work. Something inside CFDUMP is trying to call getClass() on the bean factory. Why, I have no idea, but it is, and that's why it's blowing up. If Mike can dump it fine

Re: CF8 and CFDUMP was: (Re: Coldspring error)

2007-10-25 Thread James Holmes
Mikes' local machine is CF7 and the host is CF8. On 10/25/07, Brian Kotek [EMAIL PROTECTED] wrote: You can dump the bean factory itself just fine (or at least I can). It's when you try to call getClass() on it that it won't work. Something inside CFDUMP is trying to call getClass() on the bean

CF8 and CFDUMP was: (Re: Coldspring error)

2007-10-24 Thread Mike Kear
This issue has now morphed into another issue. I was getting an error which I thought was coldspring-caused but which actually turned out to be caused by the CFDUMP tag i was using to check the result. So i set about wanting to get hostmysite to change and allow access to internal java

Re: CF8 and CFDUMP was: (Re: Coldspring error)

2007-10-24 Thread James Holmes
which I thought was coldspring-caused but which actually turned out to be caused by the CFDUMP tag i was using to check the result. So i set about wanting to get hostmysite to change and allow access to internal java components in the CF8 only to find that setting is currently UNCHECKED

Re: CF8 and CFDUMP was: (Re: Coldspring error)

2007-10-24 Thread Brian Kotek
but which actually turned out to be caused by the CFDUMP tag i was using to check the result. So i set about wanting to get hostmysite to change and allow access to internal java components in the CF8 only to find that setting is currently UNCHECKED. Correct me if i'm wrong, but that means all

Re: CF8 and CFDUMP was: (Re: Coldspring error)

2007-10-24 Thread Brian Kotek
which I thought was coldspring-caused but which actually turned out to be caused by the CFDUMP tag i was using to check the result. So i set about wanting to get hostmysite to change and allow access to internal java components in the CF8 only to find that setting is currently UNCHECKED

Re: CF8 and CFDUMP was: (Re: Coldspring error)

2007-10-24 Thread James Holmes
When I hosted with HMS my server had no sandboxing at all and JSP was enabled. However I agree that in this case they are probably looking at the wrong setting (since cfdump is failing). On 10/25/07, Brian Kotek [EMAIL PROTECTED] wrote: Mike, this sounds highly suspect. There is simply no way

Re: CF8 and CFDUMP was: (Re: Coldspring error)

2007-10-24 Thread James Holmes
what you're asking them, or they're lying to you. On 10/24/07, Mike Kear [EMAIL PROTECTED] wrote: This issue has now morphed into another issue. I was getting an error which I thought was coldspring-caused but which actually turned out to be caused by the CFDUMP tag i was using

Re: CFDump bug?

2007-08-20 Thread Giles Roadnight
So what do I do when deleting everything in there doesn't work? Thanks for the suggestions so far. On 8/17/07, Tom Chiverton [EMAIL PROTECTED] wrote: I'm on unix, an environment that I'm not very used to. If I delete all the files in WEB­INF/cfclasses will that do the trick or do I have to

Re: CFDump bug?

2007-08-20 Thread James Holmes
Have you tried taking the CF server down, deleting those files while it is down, than starting it up again? This can make a difference. On 8/20/07, Giles Roadnight [EMAIL PROTECTED] wrote: So what do I do when deleting everything in there doesn't work? Thanks for the suggestions so far. On

Re: CFDump bug?

2007-08-20 Thread Giles Roadnight
I was goign to try this. I stopped the server and went to delete the file in cfclasses but there are still no more files generated in there. I must be looking in the wornmg place? On 8/20/07, James Holmes [EMAIL PROTECTED] wrote: Have you tried taking the CF server down, deleting those files

CFDump bug?

2007-08-17 Thread Giles Roadnight
Transitional//EN http://www.w3.org/TR/html4/loose.dtd; html head meta http-equiv=Content-Type content=text/html; charset=iso-8859-1 titleDump Test/title /head body cfdump var=#cgi# /body /html to which I get the error at the end of this message. How do I go about fixing this? It's causing me real headaches

Re: CFDump bug?

2007-08-17 Thread Tom Chiverton
On Friday 17 Aug 2007, [EMAIL PROTECTED] wrote: How do I go about fixing this? It's causing me real headaches! Reboot CF. Clear out the cache'd CF files. -- Tom Chiverton Helping to elementarily create internet users on: http://thefalken.livejournal.com

Re: CFDump bug?

2007-08-17 Thread Giles Roadnight
Thanks for the reply. I'm on unix, an environment that I'm not very used to. If I delete all the files in WEB-INF/cfclasses will that do the trick or do I have to delete other files too? Thanks again. Giles On 8/17/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Friday 17 Aug 2007, [EMAIL

RE: CFDump bug?

2007-08-17 Thread Tom Chiverton
I'm on unix, an environment that I'm not very used to. If I delete all the files in WEB­INF/cfclasses will that do the trick or do I have to delete other files too? Nope, that's it. One of the nice things about CF is that it's a J2EE app, so all the bits are in the same place on all

Simple CFDump

2006-10-11 Thread Ian Skinner
Has anybody created a simplified CFDump extension? I love using cfdump..., but there are many times I would like a simplified, DHTML-less version for use in emails, databases records, or simple file output where I could live without the extensive JS portion of the cfdump output. Does anything

RE: Simple CFDump

2006-10-11 Thread Snake
CFDUMP is just a CFML tag, so you could just rip the code out and modify it. Snake -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: 11 October 2006 17:15 To: CF-Talk Subject: Simple CFDump Has anybody created a simplified CFDump extension? I love using cfdump

Re: Simple CFDump

2006-10-11 Thread Mike Tangorre
From: Snake [EMAIL PROTECTED] CFDUMP is just a CFML tag, so you could just rip the code out and modify it. The dump.cfm ct on my box is encrypted... last I checked. ~| Introducing the Fusion Authority Quarterly Update. 80

Re: Simple CFDump

2006-10-11 Thread Robertson-Ravo, Neil (RX)
To: CF-Talk Sent: Wed Oct 11 17:55:52 2006 Subject: Re: Simple CFDump From: Snake [EMAIL PROTECTED] CFDUMP is just a CFML tag, so you could just rip the code out and modify it. The dump.cfm ct on my box is encrypted... last I checked

Re: Simple CFDump

2006-10-11 Thread Dan Plesse
Well for Java objects you can create simple text out output. I posted an example already just look around for it. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information

Re: Simple CFDump

2006-10-11 Thread Mark Mandel
http://www.cflib.org/udf.cfm?ID=548 That what you want? Mark On 10/12/06, Dan Plesse [EMAIL PROTECTED] wrote: Well for Java objects you can create simple text out output. I posted an example already just look around for it.

CF 7 and CFDUMP

2006-01-23 Thread Bryan Stevenson
Hey All, Is there an issue with CFDUMP on MX 7? We're running some data intensive scripts with cfdumps along the way to ensure all is going smoothly. It seems that using cfdump instead of cfoutput to dump vars, the page will display partially (almost like CFFLUSH allows

Re: CF 7 and CFDUMP

2006-01-23 Thread Bryan Stevenson
I should add that there is NOTHING in the code that would force a page refresh!! I've just confrimed this by removing the CFDUMPs and replaced with good old CFOUTPUT and all works as intended!! Anybody? Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group

Re: cfcatch/cfdump weirdness

2005-10-13 Thread Rob Richardson
All--- This is a bug confirmed by Macromedia, but not resolved, as follows. I have to hack around this until (IF) they fix it. I'll update CFBugHunt too. Thanks.--- Rob Bill Sahlas [EMAIL PROTECTED] 9/9/2005 11:05:18 AM I was able to reproduce the problem using the tests that you

cfcatch/cfdump weirdness

2005-09-08 Thread Timothy Heald
Afternoon folks! We have run into some really strange problems with cfdump-ing a cfcatch structure. It is almost as though at the end of cfdump var=#cfcatch# is cfsetiing enablecfoutputonly=yes. We are running this and getting the same results on 2 different servers. Both are on CFMX 6.1

Re: cfcatch/cfdump weirdness

2005-09-08 Thread Barney Boisvert
I see the bottom content for all three cases. CFMX 6.1 on JRun on RedHat 8.0. You got an Application.cfm somewhere that's screwing things up? cheers, barneyb On 9/8/05, Timothy Heald [EMAIL PROTECTED] wrote: Afternoon folks! We have run into some really strange problems with cfdump-ing

RE: cfcatch/cfdump weirdness

2005-09-08 Thread Loathe
Nope. Commented out the logic in the app.cfm for just that reason and just left in cfset temp = so it wouldn't blow up. -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Thursday, September 08, 2005 4:49 PM To: CF-Talk Subject: Re: cfcatch/cfdump weirdness I see

Re: CFDUMP for PHP

2005-08-22 Thread Ken Ferguson
-Talk Subject: Re: CFDUMP for PHP I've been working on something similar for JavaScript. Just a bit OT in this OT subject, one thing I've always been dreaming of would be some way to find the EXACT line in which Javascript file where an error occurs. MSIE is really idiot in that matter, just

RE: CFDUMP for PHP

2005-08-22 Thread Russ Michaels
Nope. If you go through the source and remove all the whitespace then sometimes it does. -Original Message- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Sent: 22 August 2005 15:16 To: CF-Talk Subject: Re: CFDUMP for PHP view source and paste it into an IDE and the line #s should match

Re: CFDUMP for PHP

2005-08-22 Thread Ken Ferguson
wrote: Nope. If you go through the source and remove all the whitespace then sometimes it does. -Original Message- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Sent: 22 August 2005 15:16 To: CF-Talk Subject: Re: CFDUMP for PHP view source and paste it into an IDE and the line #s should

OT ANN: CFDUMP for JavaScript

2005-08-22 Thread Jim Davis
I've completed my JavaScript dump extension and posted it here (long URL): http://www.depressedpress.com/depressedpress/Content/Development/JavaScript/ Extensions/DP_DeBug/Index.cfm The library adds two methods to the Object prototype (making them available to all objects): dpDump() which

Re: CFDUMP for PHP

2005-08-19 Thread Claude Schneegans
I've been working on something similar for JavaScript. Just a bit OT in this OT subject, one thing I've always been dreaming of would be some way to find the EXACT line in which Javascript file where an error occurs. MSIE is really idiot in that matter, just giving the line number. In a CF

RE: CFDUMP for PHP

2005-08-19 Thread Russ Michaels
Doesn't the Ms javascript debugger tell you the actual line in the src ? -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: 19 August 2005 13:26 To: CF-Talk Subject: Re: CFDUMP for PHP I've been working on something similar for JavaScript. Just a bit OT

RE: CFDUMP for PHP

2005-08-19 Thread Micha Schopman
- -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: vrijdag 19 augustus 2005 13:26 To: CF-Talk Subject: Re: CFDUMP for PHP I've been working on something similar for JavaScript. Just a bit

Re: CFDUMP for PHP

2005-08-19 Thread Claude Schneegans
Doesn't the Ms javascript debugger tell you the actual line in the src ? Might be, but I've never been able to get it working :-( -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this

Re: CFDUMP for PHP

2005-08-19 Thread Claude Schneegans
Might be, but I've never been able to get it working Actually, this was with W98, I never could manage to install it. I just gave it another try now that I have XP. It installed correctly, I created a bug somewhere, ran the page, got the message Do you want to start the debugger?, said YES,

CFDUMP for PHP

2005-08-18 Thread Andrew Hewitt
This may be a little OT but for those of you who also code in php and always wanted a cfdump there is something now available. Check out: http://dbug.ospinto.com/. - Andrew Hewitt ~| Find out how CFTicket can increase your

Re: CFDUMP for PHP

2005-08-18 Thread Kevin Aebig
Well done... thats extremely handy! Cheers, Kevin - Original Message - From: Andrew Hewitt [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, August 18, 2005 4:25 PM Subject: CFDUMP for PHP This may be a little OT but for those of you who also code in php

RE: CFDUMP for PHP

2005-08-18 Thread Jim Davis
-Original Message- From: Kevin Aebig [mailto:[EMAIL PROTECTED] Sent: Thursday, August 18, 2005 11:56 PM To: CF-Talk Subject: Re: CFDUMP for PHP Well done... thats extremely handy! Very cool. I've been working on something similar for JavaScript. It doesn't share the color

another cfdump bug?

2005-06-29 Thread Russ
I'm running into an issue with cfdump. Here is the sample code that reproduces the issue I'm having. cftry cfset testStruct=StructNew() cfoutput#testStruct[testKey]#/cfoutput cfcatch type=any cfdump var=#cfcatch# label=cfcatch

RE: another cfdump bug?

2005-06-29 Thread Kerry
is this on 7? works fine for me on 6.1+updater+hotfix hf56580_611.zip -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: 29 June 2005 17:18 To: CF-Talk Subject: another cfdump bug? I'm running into an issue with cfdump. Here is the sample code that reproduces the issue I'm

RE: another cfdump bug?

2005-06-29 Thread Russ
, June 29, 2005 12:28 PM To: CF-Talk Subject: RE: another cfdump bug? is this on 7? works fine for me on 6.1+updater+hotfix hf56580_611.zip -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: 29 June 2005 17:18 To: CF-Talk Subject: another cfdump bug? I'm running into an issue

RE: [QUARRANTINE]CFDUMP and value formatting

2005-06-14 Thread Dawson, Michael
11/14/1979 is a string. Now() and createdate() and parsedatetime() etc. create datetime objects. When you say that these create datetime objects, do they only create correct-formatted date/time strings or is there an actual object underneath? If there is an object can't you do something like:

RE: [QUARRANTINE]CFDUMP and value formatting

2005-06-14 Thread James Holmes
In fact these datetime objects are just a different type of string: {ts '2005-06-14 23:30:11'} -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Tuesday, 14 June 2005 11:32 To: CF-Talk Subject: RE: [QUARRANTINE]CFDUMP and value formatting 11/14/1979 is a string

RE: [QUARRANTINE]CFDUMP and value formatting

2005-06-14 Thread James Holmes
Sorry, I take that back. That's the sting representation of a CF datetime object. A CF DateTime is an object of the class coldfusion.runtime.OleDateTime, as shown by this: cfset MyDate = Now() cfdump var=#MyDate.getClass().getName()# -Original Message- From: James Holmes [mailto:[EMAIL

Re: [QUARRANTINE]CFDUMP and value formatting

2005-06-14 Thread Ben Doom
My understanding was that they were Java datetime objects in CF6 and above, but I could be totally wrong. James Holmes states that they are simply specially formatted strings, but I thought that was just the default output. Either way, CF should not be reformatting any of your form strings

RE: [QUARRANTINE]CFDUMP and value formatting

2005-06-14 Thread James Holmes
See my correction of myself :-) -Original Message- From: Ben Doom [mailto:[EMAIL PROTECTED] Sent: Tuesday, 14 June 2005 11:50 To: CF-Talk Subject: Re: [QUARRANTINE]CFDUMP and value formatting My understanding was that they were Java datetime objects in CF6 and above, but I could

RE: [QUARRANTINE]CFDUMP and value formatting

2005-06-14 Thread Dawson, Michael
I agree. Either way, CF should not be reformatting any of your form strings without you explicitly calling a function. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and

Re: [QUARRANTINE]CFDUMP and value formatting

2005-06-14 Thread Ben Doom
, 14 June 2005 11:50 To: CF-Talk Subject: Re: [QUARRANTINE]CFDUMP and value formatting My understanding was that they were Java datetime objects in CF6 and above, but I could be totally wrong. James Holmes states that they are simply specially formatted strings, but I thought that was just

RE: [QUARRANTINE]CFDUMP and value formatting

2005-06-14 Thread James Holmes
Yeah, I though to test it about 25ms after I hit the send button. Doh! -Original Message- From: Ben Doom [mailto:[EMAIL PROTECTED] Sent: Wednesday, 15 June 2005 1:02 To: CF-Talk Subject: Re: [QUARRANTINE]CFDUMP and value formatting Heh. Apparently, I'm smarter than I gave myself

CFDUMP and value formatting

2005-06-13 Thread Bryan Stevenson
Hey All, I'm just wondering if CF formats the data dumped via CFDUMP?? For exampleif I dump the FORM scope which contains a field with a date as a value...will CF attempt to format it as a date when it dumps it? or leave the raw value unchanged? I would assume it stays raw and unchanged

Re: [QUARRANTINE]CFDUMP and value formatting

2005-06-13 Thread Ben Doom
IIRC, it will format something that is a datetime object, but a string will come through unformatted. --Ben Bryan Stevenson wrote: Hey All, I'm just wondering if CF formats the data dumped via CFDUMP?? For exampleif I dump the FORM scope which contains a field with a date as a value

Re: [QUARRANTINE]CFDUMP and value formatting

2005-06-13 Thread Bryan Stevenson
IIRC, it will format something that is a datetime object, but a string will come through unformatted. --Ben Really!!?? That is truly stupid IMHO if that really is the case How the heck can you figure out what may be wrong if your value gets formatted??? you wouldn't know what the real

Re: [QUARRANTINE]CFDUMP and value formatting

2005-06-13 Thread Bryan Stevenson
IIRC, it will format something that is a datetime object, but a string will come through unformatted. --Ben Just re-read your reply Ben and wanted to clarify Are you saying a field in the FORM scope that contains a string that appears to be a date would get formatted? or does CF have to

Re: [QUARRANTINE]CFDUMP and value formatting

2005-06-13 Thread Ben Doom
11/14/1979 is a string. Now() and createdate() and parsedatetime() etc. create datetime objects. Everything from FORM and GET come in as a string. So, what you see if you dump the FORM scope should be the literal text that is actually submitted. --Ben Bryan Stevenson wrote: Are you saying

Re: [QUARRANTINE]CFDUMP and value formatting

2005-06-13 Thread Bryan Stevenson
Everything from FORM and GET come in as a string. So, what you see if you dump the FORM scope should be the literal text that is actually submitted. --Ben Greatso I did misunderstand your initial reply ;-) Thanks for the claritythought it being formatted from the FORM would be

Re: cfdump and functions bug (CF 7)

2005-02-23 Thread Sean Corfield
On Tue, 22 Feb 2005 15:17:09 -0300, Terracini [EMAIL PROTECTED] wrote: And the doubled outputed data was driving me crazy, since I was trying to find a non-existant bug in the UDF. Anyway, I think this is a CF7 bug, since it double the data outputed by a function when called by cfdump tag

Re: cfdump and functions bug (CF 7)

2005-02-22 Thread Sean Corfield
On Mon, 21 Feb 2005 11:28:53 -0300, Terracini [EMAIL PROTECTED] wrote: cffunction name=test output=Yes a cfreturn foo /cffunction Outputting something and also returning a value is not really a good idea. Either a method should return a result or it should output something (and return

Re: cfdump and functions bug (CF 7)

2005-02-22 Thread Terracini
by a function when called by cfdump tag. -- Fabio Terracini Sean Corfield wrote: On Mon, 21 Feb 2005 11:28:53 -0300, Terracini [EMAIL PROTECTED] wrote: cffunction name=test output=Yes a cfreturn foo /cffunction Outputting something and also returning a value is not really a good idea

cfdump and functions bug (CF 7)

2005-02-21 Thread Terracini
Hello, I wrote a small UDF to help confirm this: cffunction name=test output=Yes a cfreturn foo /cffunction cfoutput#test()#/cfoutput br cfdump var=#test()# The expected result is: a foo a foo But the result I'm getting (tested in two CF 7 deploys, Windows based) is a foo a a foo

cfdump and functions bug (CF 7)

2005-02-21 Thread Terracini
Hello, I wrote a small UDF to help confirm this: cffunction name=test output=Yes a cfreturn foo /cffunction cfoutput#test()#/cfoutput br cfdump var=#test()# The expected result is: a foo a foo But the result I'm getting (tested in two CF 7 deploys, Windows based) is a foo a a foo

Re: New CFDUMP for CFMX

2005-02-09 Thread Tony Weeg
oh it changed names :) www.nerdfootball.com and yes, it was an AWESOME season, the site CHANGED sooo much, the code you helped with is WAYYY in use, and was one of the coolest features. thanks for asking. tw On Tue, 8 Feb 2005 21:39:32 -0800, Dick Applebaum [EMAIL PROTECTED] wrote:

New CFDUMP for CFMX

2005-02-08 Thread Barney Boisvert
installed, continue to use CFDUMP exactly as before, and watch it magically work again. It works by simply running a pair of REreplace calls on the output of CFDUMP to insert hashes before hex colors and adding 'px' as a unit behind numbers without a unit. cfif thistag.executionMode EQ startcfsilent

Re: New CFDUMP for CFMX

2005-02-08 Thread Tony Weeg
with CFMX's dump tag not generating standards compliant CSS, I wrote a custom wrapper for the tag. In the /WEB-INF/cftags directory, move 'dump.cfm' to 'mmdump.cfm', create a new file named 'dump.cfm', and paste this code in (watch the line wrap). Once installed, continue to use CFDUMP exactly

Re: New CFDUMP for CFMX

2005-02-08 Thread Dick Applebaum
Hey Tony... you win FN FB? I picked the Steelers, so I would have been long gone! Dick On Feb 8, 2005, at 7:21 PM, Tony Weeg wrote: i realize it has no warranties, etc... but my dump file is all crazy code crap. and when i run this, thats all i get... that back? any ideas take

Re: New CFDUMP for CFMX

2005-02-08 Thread Tony Weeg
FN FB? tw On Tue, 8 Feb 2005 19:47:36 -0800, Dick Applebaum [EMAIL PROTECTED] wrote: Hey Tony... you win FN FB? I picked the Steelers, so I would have been long gone! Dick On Feb 8, 2005, at 7:21 PM, Tony Weeg wrote: i realize it has no warranties, etc... but my dump file is

Re: New CFDUMP for CFMX

2005-02-08 Thread Dick Applebaum
C;mon.. I'm in enough trouble. F___Nerd Football! Dick On Feb 8, 2005, at 8:33 PM, Tony Weeg wrote: FN FB? tw ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and

CFDUMP var=variables shows custom functions?

2004-12-13 Thread Damien McKenna
I have an error tracker on my code that emails me a dump of just about everything. Today, on one site, I started including all of the CFLib.org files for all page requests rather than as needed. Nice idea, except that now my email error dumps are twenty times larger than before, all because the

RE: CFDUMP var=variables shows custom functions?

2004-12-13 Thread Dawson, Michael
of your page variables in a struct. Then, you can dump only that struct and ignore all other variables-scoped variables. M!ke -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Monday, December 13, 2004 1:10 PM To: CF-Talk Subject: CFDUMP var=variables shows custom

RE: cfdump not formatting correctly

2004-12-13 Thread Adrian Lynch
Subject: Re: cfdump not formatting correctly On 09 Dec 2004 09:55:36 -0500, Calvin Ward [EMAIL PROTECTED] wrote: I believe the problem is that none of the color settings have a # before the color hexadecimal representation. If you really wanted to retain your doctype, you can create a custom tag

Re: CFDUMP var=variables shows custom functions?

2004-12-13 Thread Greg Hamm
-Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Monday, December 13, 2004 1:10 PM To: CF-Talk Subject: CFDUMP var=variables shows custom functions? I have an error tracker on my code that emails me a dump of just about everything. Today, on one site, I started including

Re: cfdump not formatting correctly

2004-12-13 Thread Scott Stroz
Check out this blog entry from Ray Camden on a way to maybe remedy this situation: http://www.camdenfamily.com/morpheus/blog/index.cfm?mode=search On Thu, 09 Dec 2004 09:02:11 -0400, Brant Winter [EMAIL PROTECTED] wrote: Does anyone else have any issues with the cfdump tag not formating right

cfdump not formatting correctly

2004-12-09 Thread Brant Winter
Does anyone else have any issues with the cfdump tag not formating right? I have found that sometimes my cfdump will lose all its formattin, colour etc. It seems to be using the div id's of other areas on my pages, but I am sure I am not calling the cfdump from within a div I was just

Re: cfdump not formatting correctly

2004-12-09 Thread Charlie Griefer
IIRC, removing the doctype from the document will resolve the issue with the formatting of the dump. On Thu, 09 Dec 2004 09:02:11 -0400, Brant Winter [EMAIL PROTECTED] wrote: Does anyone else have any issues with the cfdump tag not formating right? I have found that sometimes my cfdump

Re: cfdump not formatting correctly

2004-12-09 Thread Calvin Ward
I believe the problem is that none of the color settings have a # before the color hexadecimal representation. If you really wanted to retain your doctype, you can create a custom tag wrapper for cfdump and parse in the # sounds where appropriate - Calvin -Original Message- From

Re: cfdump not formatting correctly

2004-12-09 Thread Raymond Camden
CFDUMP uses a large style sheet to format it's output. It is smart in that it uses a request variable so it only outputs the style once. However, if you use cfdump in a request and the output is swollowed, like sent to an email, then the second cfdump in your request will be missing the style

Re: cfdump not formatting correctly

2004-12-09 Thread Charlie Griefer
On 09 Dec 2004 09:55:36 -0500, Calvin Ward [EMAIL PROTECTED] wrote: I believe the problem is that none of the color settings have a # before the color hexadecimal representation. If you really wanted to retain your doctype, you can create a custom tag wrapper for cfdump and parse

  1   2   3   >