RE: cfcatch scope just says [unknown type]

2004-12-03 Thread Martin Parry
Not a problem.. Martin -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: 02 December 2004 21:00 To: CF-Talk Subject: Re: cfcatch scope just says [unknown type] Hi Martin, I *think* that previous post was in error and it is working on (my own) live server. I'm sta

RE: RegEx (again!)

2004-12-03 Thread Pascal Peters
This is something you can't do (easily) with regexp. The text means anything except the characters < / s p a n >. Remember that that [] matches a SINGLE character. If you want to remove empty span tags, do it in 4 steps: 1. find empty span tag (no regexp needed) 2. remove it 3. find matching end ta

Re: CFAdmin setting - "Timeout Requests after ...."

2004-12-03 Thread Andy Allan
Remember and adjust your threadWaitTimeout setting in jrun.xml to be GTE to what you set the Timeout Request. You'll find it under the ProxyService (2nd bottom service class) which deals with your CF to webserver connection otherwise you could end up with lots of java.lang.RuntimeException error me

Re: CF-Eclipse question - answered

2004-12-03 Thread Mark Drew
I was about to reply with something sarcastic.. but helpful but you found it.. its called the outline view :) On Fri, 3 Dec 2004 00:17:19 -, Paul Vernon <[EMAIL PROTECTED]> wrote: > Ok so at some point, my right hand panel was hidden off to the right... I > just found what I spent the best

Re: New cfml file manager - CFFM

2004-12-03 Thread Rick Root
Andrew Grosset wrote: > The image preview doesn't work in Mozilla Firebird 0.7 That's right, Mozilla doesnt like file paths so I'll need to write some javascript to convert the file path to a valid file:/// url - Rick ~~

RE: New cfml file manager - CFFM

2004-12-03 Thread COLLIE David
> The image preview doesn't work in Mozilla Firebird 0.7 I'm curious as to why you have a reason to test in Firebird 0.7... Am I not realising something? Off the top of my head, I would have thought 1.0PR at a minimum now for testing in Firefox/bird since it has been officially released. --

OpenSource Calendar

2004-12-03 Thread Mickael
Hello All, I am donating some time to a charitable organization. They need a web calendar like the monthly view in Outlook. Were the day is broken down in 1 hour increments and those one hour slots can be booked. Is there something like that in CF available in opensource or something that is

Re: OpenSource Calendar

2004-12-03 Thread Marco Antonio C. Santos
Hi Mickael maybe this is the best web calendar on the web: http://dynarch.com/mishoo/calendar.epl Open source... Cheers Marco On Fri, 3 Dec 2004 07:50:37 -0500, Mickael <[EMAIL PROTECTED]> wrote: > Hello All, > > I am donating some time to a charitable organization. They need a web > calen

RE: OpenSource Calendar

2004-12-03 Thread COLLIE David
> I am donating some time to a charitable organization. They > need a web calendar like the monthly view in Outlook. Were > the day is broken down in 1 hour increments and those one > hour slots can be booked. Sorry to be pedantic but that is the week/day view... The month view is like a nor

Creating a client variable timeout.

2004-12-03 Thread Stuart Kidd
Hi guys, I remember a long time ago i created a line of code which sat in my Application.cfm which checked to see whether a logged in user hadn't had any activity for 20 mins. Can anyone please remind me how to do this? Thanks, Saturday ~~

RE: Creating a client variable timeout.

2004-12-03 Thread Pascal Peters
It all depends. How does your login work?? What do you use to identify someone as logged in? > -Original Message- > From: Stuart Kidd [mailto:[EMAIL PROTECTED] > Sent: 03 December 2004 14:43 > To: CF-Talk > Subject: Creating a client variable timeout. > > Hi guys, > > I remember a long t

CFMX and Fedora Core 3

2004-12-03 Thread Ewok
I haven't had any problems installing before and I've installed on Fedora before as well but lately, I can;t get MX installed on FC test3 without this problem... I always make a user called cfmx to use as the runtime user ( itried installing with the default 'nobody') just to check but there w

RE: Creating a client variable timeout.

2004-12-03 Thread Stuart Kidd
When somebody logs in they are given a client.authorID which could be 25, 26 or any integer other than 0. By default in my Application.cfm i have a and that's a guest user who doesn't have any login rights. My UK time is also set in my Application.cfm and i call it UKTodayDate (which is the US

RE: OpenSource Calendar

2004-12-03 Thread Dawson, Michael
Yes. I love this calendar. -Original Message- From: Marco Antonio C. Santos [mailto:[EMAIL PROTECTED] Sent: Friday, December 03, 2004 7:02 AM To: CF-Talk Subject: Re: OpenSource Calendar Hi Mickael maybe this is the best web calendar on the web: http://dynarch.com/mishoo/calendar.epl

Re: OpenSource Calendar

2004-12-03 Thread Mickael
Hi David, Actually all three views would be great. Is there a demo of this working? - Original Message - From: "COLLIE David" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, December 03, 2004 8:04 AM Subject: RE: OpenSource Calendar > > I am donating some time to a c

Re: OpenSource Calendar

2004-12-03 Thread Mickael
Its nice but it is a date picker not really an events calendar. - Original Message - From: "Dawson, Michael" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, December 03, 2004 9:10 AM Subject: RE: OpenSource Calendar > Yes. I love this calendar. > > -Original Messag

RE: OpenSource Calendar

2004-12-03 Thread COLLIE David
> Actually all three views would be great. Is there a demo http://calendar.viviotech.net/ Think you need to register... A few details are in the thread I posted. I just remembered that there had been a thread about this a few days ago, not tried it out myself :-/ hth -- dc ~

RE: CFMX and Fedora Core 3

2004-12-03 Thread Steven Erat
> > I haven't had any problems installing before and I've installed on > Fedora before as well but lately, I can't get MX installed on FC > test3 without this problem... > any ideas as to what might be the problem here?? Although Fedora Core 3 is not an officially supported OS for CFMX, I cu

RE: Creating a client variable timeout.

2004-12-03 Thread Pascal Peters
I don't use much client vars, but this should work More than 20' inactivity Pascal > -Original Message- > From: Stuart Kidd [mailto:[EMAIL PROTECTED] > Sent: 03 December 2004 14:59 > To: CF-Talk > Subject: RE: Creating a client variable timeout. > > When somebody logs in they

RE: RegEx (again!)

2004-12-03 Thread Duane Boudreau
I start with Duane[EMAIL PROTECTED] I want to end with Duane[EMAIL PROTECTED] I want to remove the span tag without attributes and its ending tag, leaving behind what ever text was in between. Duane -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Thursday,

Re: New cfml file manager - CFFM

2004-12-03 Thread Rick Root
COLLIE David wrote: > I'm curious as to why you have a reason to test in Firebird 0.7... Am I > not realising something? I'm not that one that did it :) However, the same issue occurs in Firefox 1.0 production and probably all Mozilla/Netscape type browsers. nly internet explorer takes some

RE: New cfml file manager - CFFM

2004-12-03 Thread COLLIE David
> I'm not that one that did it :) Hey Rick, sorry didn't mean to imply it was you (or anyone in specific)... Was just interested in the comment and whether anyone else was continuing to test for the Pre release Firefox... CMIIAW, but it was mainly just us developers that were kicking about with i

to read JUST the top line of the txt file.

2004-12-03 Thread Jeremy Bunton
Hello, I want to use to read just the top line (header line with field names) of a very large .csv file, say 5 million records. Is there a way to just read the top record into the variable in the cffile tag, with out having to read the whole file. Jeremy ~~~

RE: to read JUST the top line of the txt file.

2004-12-03 Thread Pascal Peters
No, but I think you can do it with java. > -Original Message- > From: Jeremy Bunton [mailto:[EMAIL PROTECTED] > Sent: 03 December 2004 15:52 > To: CF-Talk > Subject: to read JUST the top line of the txt file. > > Hello, > > I want to use to read just the top line (header line with fiel

RE: to read JUST the top line of the txt file.

2004-12-03 Thread Martin Parry
If it's the same filename every time you could create an ODBC data source using the Text driver - Then create a CF Odbc Socket datasource (I'm assuming you're using MX and can't create DSN-Less datasources). You can probably then just do something like Select top 1 * from [filename g

Re: New cfml file manager - CFFM

2004-12-03 Thread Rick Root
> Andrew Grosset wrote: > >>The image preview doesn't work in Mozilla Firebird 0.7 Okay, I'm stumped. Can someone help me? In IE, I can do this: document.foo.location.href = ...; However, "document.foo" is undefined in Firefox. What's the proper way to target iframes with javascript i

Re: New cfml file manager - CFFM

2004-12-03 Thread Rick Root
> Andrew Grosset wrote: > >>The image preview doesn't work in Mozilla Firebird 0.7 Okay, I'm stumped. Can someone help me? In IE, I can do this: document.foo.location.href = ...; However, "document.foo" is undefined in Firefox. What's the proper way to target iframes with javascript i

path variables, like expandpath ..

2004-12-03 Thread Mike
Is there a variable (maybe a cgi variable) that stores the root web path for the current template. For example.. http://www.domain.com/foo/blah.cfm I'm looking for a variable with this stored in it: http://www.domain.com/foo #CGI.SERVER_NAME##CGI.PATH_INFO# Gets me pretty close with the templ

Re: Tab delimited file upload Barf

2004-12-03 Thread DRE
Anybody know of any good php lists like this one? DRE On Thu, 2 Dec 2004 19:00:23 -0800, DRE <[EMAIL PROTECTED]> wrote: > Hmm, That is an interesting solution. Actually, I'm experiementing in > php with this item. I just figured the solution would translate > easily. Can you think of any other

RE: New cfml file manager - CFFM

2004-12-03 Thread Pascal Peters
window.foo (or parent.foo) (frames are not part of the document object) > -Original Message- > From: Rick Root [mailto:[EMAIL PROTECTED] > Sent: 03 December 2004 16:08 > To: CF-Talk > Subject: Re: New cfml file manager - CFFM > > > Andrew Grosset wrote: > > > >>The image preview doesn't w

RE: Creating a client variable timeout.

2004-12-03 Thread Stuart Kidd
Thanks Pascal, that worked a treat. :) Stu -- Original Message -- From: "Pascal Peters" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date: Fri, 3 Dec 2004 15:34:58 +0100 >I don't use much client vars, but this should work > > > More than 20' ina

Re: CF-Eclipse question - answered

2004-12-03 Thread Dwayne Cole
>I was about to reply with something sarcastic.. but helpful but you >found it.. its called the outline view :) > AND IT IS WONDERFUL INDEED. Yes there's room for improvement but compared to DW and HOMESITE and COLDFUSION STUDIO 5.0, CFE is a much better tool to use on complex projects. ~

Re: to read JUST the top line of the txt file.

2004-12-03 Thread Joe Rinehart
Yep - this should get you started: filename = "/path/to/file.csv"; fileReader = createObject("java", "java.io.FileReader"); fileReader = fileReader.init(filename); lineReader = createObject("java","java.io.LineNumberReader"); lineReader = lineReader.init(fileReader); line = lin

RE: to read JUST the top line of the txt file.

2004-12-03 Thread Jeremy Bunton
Ahh I see that looks fairly straight forward. I thought about writing a vb.net app but it seems overkill to cfexecute a .exe to read just the top line of a file. Jeremy -Original Message- From: Joe Rinehart [mailto:[EMAIL PROTECTED] Sent: Friday, December 03, 2004 10:38 AM To: CF-Talk Su

Re: to read JUST the top line of the txt file.

2004-12-03 Thread Dave Carabetta
On Fri, 3 Dec 2004 10:37:54 -0500, Joe Rinehart <[EMAIL PROTECTED]> wrote: > Yep - this should get you started: > > >filename = "/path/to/file.csv"; >fileReader = createObject("java", "java.io.FileReader"); >fileReader = fileReader.init(filename); >lineReader = createObject("java"

RE: path variables, like expandpath ..

2004-12-03 Thread Pascal Peters
GetDirectoryFromPath(GetCurrentTemplatePath()) > -Original Message- > From: Mike [mailto:[EMAIL PROTECTED] > Sent: 03 December 2004 16:17 > To: CF-Talk > Subject: path variables, like expandpath .. > > Is there a variable (maybe a cgi variable) that stores the root web > path for the curr

Re: to read JUST the top line of the txt file.

2004-12-03 Thread Greg Morphis
Yeah I would definitely start with a smaller file while testing.. maybe 5-10 rows and make sure things are working before trying it on a 5 million row file. Also the query idea... I would use Select * from table where rownum < 2 I believe using the max rows happens after the query.. So CF loads a

CFMX reading javascript comments (!?)

2004-12-03 Thread Chris Norloff
We've got a weird thing happening - CFMX is reading javascript code that we've commented out, and throwing an error because of it. (CFMX for J2EE, v6.1 (no updater), on WebSphere 5.1.0.3) The javascript code is inside tags. Part of the javascript is commented out with the standard // at the b

CFGrid croaks after Updater 1?

2004-12-03 Thread Matt Robertson
I have a client on an ancient web site that uses CFGrid. For no apparent reason her grids have suddenly died with this: java.lang.ClassNotFoundException: coldfusion.applets.CFGridApplet.class The only thing I have changed on my system is adding Updater 1. Anyone have any ideas on this? the cla

RE: path variables, like expandpath ..

2004-12-03 Thread Pascal Peters
Sorry, misread your post. GetDirectoryFromPath("http://"; & CGI.HTTP_HOST & CGI.SCRIPT_NAME) If you can have https, then use CGI.HTTPS to determine that. Pascal > -Original Message- > From: Pascal Peters [mailto:[EMAIL PROTECTED] > Sent: 03 December 2004 17:26 > To: CF-Talk > Subject:

Re: path variables, like expandpath ..

2004-12-03 Thread Mike
That gives me the actual server path though. I need the http path.. :( -Mike On Fri, 3 Dec 2004 17:26:01 +0100, Pascal Peters <[EMAIL PROTECTED]> wrote: > GetDirectoryFromPath(GetCurrentTemplatePath()) > > > > > -Original Message- > > From: Mike [mailto:[EMAIL PROTECTED] > > Sent: 0

RE: path variables, like expandpath ..

2004-12-03 Thread Dave Watts
> That gives me the actual server path though. I need the http > path.. :( Why don't you just strip the file name from CGI.PATH_INFO? Or am I missing something? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ phone: 202-797-5496 fax: 202-797-5444 ~~

Re: path variables, like expandpath ..

2004-12-03 Thread Mike
> Why don't you just strip the file name from CGI.PATH_INFO? Or am I missing > something? Actually I tried that but couldn't figure it out.. :) -Mike ~| Special thanks to the CF Community Suite Silver Sponsor - RUWebby http://w

WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Stuart Kidd
Hi guys, I know there is Elektron's EWebEditPro which on last look was pretty good, but i'm wondering if anyone has used any of the free ones. I saw the HTMLarea one, has anyone had good experiences with it? I just need it really to do tables, bullet points, bolding, italics etc. Thanks, Satu

Re: WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Scott Stroz
fckEditor is pretty good, and it works in IE and FireFox (though, if you have the 'Tab Browser Extensions' extension loaded, none of the 'pop-up' dialog boxes will work.) http://www.fckeditor.net/ On Fri, 3 Dec 2004 11:55:13 -0500, Stuart Kidd <[EMAIL PROTECTED]> wrote: > Hi guys, > > I know th

RE: WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Figy, Kam
http://tinymce.moxiecode.com/ Open source, free, customizable, and works with mozilla. Easy to set up as well. Hth Kam -Original Message- From: Stuart Kidd [mailto:[EMAIL PROTECTED] Sent: Friday, December 03, 2004 8:55 AM To: CF-Talk Subject: WYSIWIG web editor for CF (FREE) Hi guys,

RE: CFMX reading JavaScript comments (!?)

2004-12-03 Thread Ian Skinner
You are exactly correct. ColdFusion gets first crack at all the code, and it tries to parse all it has been told to. So, if you have put the JS code inside of an output tag, CF is going to consider it as code to process. Then once it is done, all the resulting output is sent to the web server

Re: path variables, like expandpath ..

2004-12-03 Thread Aaron Rouse
Treat is like a list, use the / as the delimiter, delete the last list item. -- Aaron Rouse http://www.happyhacker.com/ On Fri, 3 Dec 2004 11:52:02 -0500, Mike <[EMAIL PROTECTED]> wrote: > > Why don't you just strip the file name from CGI.PATH_INFO? Or am I missing > > something? > > Actually I

OT: sql server: SQLTransaction

2004-12-03 Thread Bert Dawson
I've got a SQL server box that ticks along quite happily at about 15% CPU, but occasionally goes up to around 40% and stays there for anything up to a minute. During these peaks the jrpp.delayMs can start to climb, up to from a few seconds up to hundreds of seconds. I also start getting a few timeo

RE: path variables, like expandpath ..

2004-12-03 Thread Figy, Kam
As a note on using the CGI.PATH_INFO variable, you can spoof its contents with a URL: http://my-server/cf.cfm/foo.html CGI.PATH_INFO will be /cf.cfm/foo.html, and cf.cfm will get loaded. I use CGI.SCRIPT_NAME because that always seems to be correct. Kam -Original Message- From: Dave W

Re: WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Joe Rinehart
fckEditor works very well, and has both CF custom tag and CFC implementations. -joe On Fri, 3 Dec 2004 11:55:13 -0500, Stuart Kidd <[EMAIL PROTECTED]> wrote: > Hi guys, > > I know there is Elektron's EWebEditPro which on last look was pretty good, > but i'm wondering if anyone has used any of

Re: OpenSource Calendar

2004-12-03 Thread Steve Bryant
You might take a look at this one: http://cfopen.org/projects/coldcalendar/ (one of several nifty things on cfopen) > I am donating some time to a charitable organization. They need a web > calendar like the monthly view in Outlook. Were the day is broken > down in 1 hour increments and tho

Re: RegEx (again!)

2004-12-03 Thread Scott Stroz
Actually, this is something you can easily do with RegEx. reReplaceNoCase(textString, "(.*?)", "\1","ALL") Should remove all and tags where no attributes are set, but leave whatever is in between.. On Fri, 3 Dec 2004 09:39:01 -0500, Duane Boudreau <[EMAIL PROTECTED]> wrote: > I start with > D

Re: OT: sql server: SQLTransaction

2004-12-03 Thread Jerry Johnson
Just as a guess, maybe a scheduled FTS catalog population? Jerry Jerry Johnson Web Developer Dolan Media Company >>> [EMAIL PROTECTED] 12/03/04 12:01PM >>> If anyone has any ideas what sort of thing could cause just a leap then i'd appreciate any input, or ideas of where to look next. ~~~

Re: WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Stuart Kidd
Thanks guys for those URLs, that'll keep me busy for a while. I like that there's a CFTAG with fck but that TinyMCE looks really cute from a designer view! I noticed it had an undo button too. Stu -- Original Message -- From: Joe Rinehart <[EMAIL PROTE

Re: RegEx (again!)

2004-12-03 Thread Jerry Johnson
This works well for CFMX, but not so much in CF5 and earlier. Jerry Jerry Johnson Web Developer Dolan Media Company >>> [EMAIL PROTECTED] 12/03/04 12:11PM >>> Actually, this is something you can easily do with RegEx. reReplaceNoCase(textString, "(.*?)", "\1","ALL") Should remove all and tags

Re: OpenSource Calendar

2004-12-03 Thread Lawrence Ng
got an error trying to enter a test event Error Executing Database Query. [Macromedia][SQLServer JDBC Driver][SQLServer]Cannot insert the value NULL into column 'EndDate', table 'coldgen000130.dbo.Demo_ColdCalendar'; column does not allow nulls. INSERT fails. The error occurre

Re: RegEx (again!)

2004-12-03 Thread Joe Rinehart
Could probably do: reReplaceNoCase(textString, "", "","ALL") -joe On Fri, 03 Dec 2004 12:09:44 -0500, Jerry Johnson <[EMAIL PROTECTED]> wrote: > This works well for CFMX, but not so much in CF5 and earlier. > > Jerry > > Jerry Johnson > Web Developer > Dolan Media Company > > >>> [EMAIL PROT

Re: WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Russell Patterson
I am using fckEditor at several client sites. I am extremely please with it and so are my clients. I have customized it to fit their needs. I highly recommend it. The latest version appears to be even better, but I have not converted to that version yet. www.fckeditor.com Russell ~

Re: WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Matt Robertson
Actually FCKEditor 2.0, which is in RC1 status, needs a new ColdFusion guy. I've talked with the author and am working with another couple of developers on the support forum to build a CF connector for the file manager, which there presently isn't one of (well, we have something cobbled together a

Re: RegEx (again!)

2004-12-03 Thread Scott Stroz
A CF version wasn't specified, so I went with what I use. The problem with this particular RegEx is that the CF 5 Regular Expression engine doesn't seem to support 'lazy' matching. On Fri, 03 Dec 2004 12:09:44 -0500, Jerry Johnson <[EMAIL PROTECTED]> wrote: > This works well for CFMX, but not

Re: Installing CFMX on Mac OS X (root user?)

2004-12-03 Thread Sean Corfield
Looks like you deployed your WAR to the wrong directory. The directory tree should be: /Applications /JRun4 /servers /default /SERVER-INF /cfusion <-- expand cfusion.war into here /META-INF /WEB-INF

copy directory

2004-12-03 Thread Rick Root
Is it possible to copy a directory and all its contents without using cfexecute? I searched cflib.org but didn't find one that would copy a directory I've thought about using java.util.zip to zip into a tempfile, then unzip into the destination directory but that seems like it might be overkil

Re: OpenSource Calendar

2004-12-03 Thread Mickael
This is cool. Thanks Steve. - Original Message - From: "Steve Bryant" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, December 03, 2004 11:10 AM Subject: Re: OpenSource Calendar > You might take a look at this one: > > http://cfopen.org/projects/coldcalendar/ > > (one

Re: WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Adam Churvis
> I saw the HTMLarea one, has anyone had good experiences with it? We use HTMLarea as the free WYSIWYG editor in Plum, and it works well. Respectfully, Adam Phillip Churvis Member of Team Macromedia http://www.ProductivityEnhancement.com Download Plum and other cool development tools, and get

RE: OpenSource Calendar

2004-12-03 Thread Tim Laureska
I have it working here: http://www.londonderryeaston.com/calendar/calendar_public.cfm?fuseaction =ViewGoToMonth&GoToYear=2004&GoToMonth=11 -Original Message- From: Lawrence Ng [mailto:[EMAIL PROTECTED] Sent: Friday, December 03, 2004 12:19 PM To: CF-Talk Subject: Re: OpenSource Calendar

Re: WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Joe Rinehart
Matt, I'm implementing FCKEditor into a CFApp right now, and will be needing to use the file manager. If you can send me what you've got, I'll take a look at at and try to either flesh it out some or hack my own method together. -joe On Fri, 3 Dec 2004 09:25:23 -0800, Matt Robertson <[EMAIL P

RE: RegEx (again!)

2004-12-03 Thread Pascal Peters
This won't work if you have nested span tags > -Original Message- > From: Scott Stroz [mailto:[EMAIL PROTECTED] > Sent: 03 December 2004 18:12 > To: CF-Talk > Subject: Re: RegEx (again!) > > Actually, this is something you can easily do with RegEx. > > reReplaceNoCase(textString, "(.*?)"

RE: OpenSource Calendar

2004-12-03 Thread Lawrence Ng
thanks... do you have a site where we could acutally manage the events? the link you provided only displays the events. >>> [EMAIL PROTECTED] 12/3/2004 9:46:00 AM >>> I have it working here: http://www.londonderryeaston.com/calendar/calendar_public.cfm?fuseaction =ViewGoToMonth&GoToYear=2004&Go

Re: OT: sql server: SQLTransaction

2004-12-03 Thread Bert Dawson
I do'n't know anything about the FTS service, and i don't knowingly use it, so i've stopped it. But I doubt that was the cause as there seemed to be no pattern to the "2 minutes @ 30%" periods. Also, i suspect its something to do with CF since the loginname reported in profiler is only used in the

RE: OpenSource Calendar

2004-12-03 Thread Tim Laureska
Yes... I set up an administration area for the client to manage the events -Original Message- From: Lawrence Ng [mailto:[EMAIL PROTECTED] Sent: Friday, December 03, 2004 12:49 PM To: CF-Talk Subject: RE: OpenSource Calendar thanks... do you have a site where we could acutally manage the

Re: CFMX reading javascript comments (!?)

2004-12-03 Thread Barney Boisvert
CFMX will read anything in the .CFM files. It has no idea that what it's generating is JavaScript (or HTML, or XML, or SVG, or whatever), so it can't abide by it's commenting rules. If you don't want CF to process something, you have to use CFML comments () around it. cheers, barneyb On Fri, 3

Re: CFMX reading javascript comments (!?)

2004-12-03 Thread Chris Norloff
Ah! Of course. I was getting server-side processing and client-side processing confused. many thanks, Chris -- Original Message -- From: Barney Boisvert <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date: Fri, 3 Dec 2004 09:58:31 -0800 >CFMX will r

RE: path variables, like expandpath ..

2004-12-03 Thread Ben Rogers
> Is there a variable (maybe a cgi variable) that stores the root web > path for the current template. For example.. Unfortunately, ColdFusion doesn't seem to have anything similar to the ASP APPL_MD_PATH variable. If all of you're files are in the same directory, then you can use a combination o

Re: WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Marco Antonio C. Santos
Russel www.fckeditor.NET rocks Cheers Marco On Fri, 3 Dec 2004 11:25:20 -0600, Russell Patterson <[EMAIL PROTECTED]> wrote: > I am using fckEditor at several client sites. I am extremely please with it > and so are my clients. I have customized it to fit their needs. I highly > recommen

Re: path variables, like expandpath ..

2004-12-03 Thread S . Isaac Dealey
> Is there a variable (maybe a cgi variable) that stores the > root web > path for the current template. For example.. > http://www.domain.com/foo/blah.cfm > I'm looking for a variable with this stored in it: > http://www.domain.com/foo > #CGI.SERVER_NAME##CGI.PATH_INFO# Gets me pretty close >

Re: Creating a client variable timeout.

2004-12-03 Thread Chris Norloff
Many ways to do that. Personally, I'd use a session variable as a flag for a logged-in user, then timeout session variables in 20 min. (if that meets your objective). You can put a javascript timer in the browser to alert the user when he's getting near his 20 min. timeout. Chris Norloff ---

RE: WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Paul
I am currently using HTMLarea and have been less than impressed, as have my clients, with the way it handles tables and a few other things. I find myself having to go into code view frequently to get the proper behaviors out of it. It looks like the FCK tool is widely used; I may give that a shot

CFChart Problem

2004-12-03 Thread Nick Baker
I moved a program that uses CFCHART to another server, and the chart no longer displays. Both server are CF MX 6.1. It doesn't throw an error, just a blank page. A peek at the source code reveals the following. Any ideas what I am missing? I have flash on my computer, but not the server. Could

Re: path variables, like expandpath ..

2004-12-03 Thread Mike
#getdirectoryfrompath(cgi.server_name & cgi.path_info)# Did exactally what I needed! Thank you everyone! -Mike ~| Special thanks to the CF Community Suite Silver Sponsor - New Atlanta http://www.newatlanta.com Message: http:

Re: WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Russell Patterson
Sorry for the bad URL... I agree! I wish I had more time to develop the CF side of fckEditor. Russell - Original Message - From: "Marco Antonio C. Santos" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, December 03, 2004 12:04 PM Subject: Re: WYSIWIG web editor for

Re: copy directory

2004-12-03 Thread Alex Sherwood
Rick Root wrote: I would imagine you query the directory and do a simple loop to iterate the files and copy them. The zip solution you mentioned might actually be less code and faster, in terms of copying. -- A >Is it possible to copy a directory and all its contents without using >cfexecute?

RE: path variables, like expandpath ..

2004-12-03 Thread S . Isaac Dealey
>> Is there a variable (maybe a cgi variable) that stores >> the root web >> path for the current template. For example.. > Unfortunately, ColdFusion doesn't seem to have anything > similar to the ASP > APPL_MD_PATH variable. If all of you're files are in the > same directory, > then you can use

Case Sensitive Structures

2004-12-03 Thread Steve Bryant
Does anyone know of a way to get the key from a structure with the case used to create that key? For example, if a key was set as myStruct["myKey"], does anyone know how to determine that the key was "myKey" (as opposed to "MYKEY")? Any help would be appreciated. Thanks! Steve Bryant Bryant W

Re: Case Sensitive Structures

2004-12-03 Thread Barney Boisvert
There isn't a way. However, if you assign the keys using the struct["keyName"] format (rather than struct.keyName) then case will be preserved. Alternately, you can use a java.util.HashMap instead of a structure. You can't treat it as a structure, you have to use the java methods, but it is case

Re: WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Douglas Knudsen
I sue fckEditor for my personal site, but not at work. Have not found a spell check which my users require for use with it. Yeah, I know, look at the OS Java one, but I just have not had the time to implement it. Doug On Fri, 3 Dec 2004 12:26:24 -0600, Russell Patterson <[EMAIL PROTECTED]> wro

Re: WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Rick Mason
Stuart, SiteObjects has a free version of their SO_Editor which I believe the readers of CFDJ voted best overall last year. Only works in IE though at present. www.siteobjects.com Rick Mason On Fri, 3 Dec 2004 11:55:13 -0500, Stuart Kidd <[EMAIL PROTECTED]> wrote: > Hi guys, > > I know the

Re: CFChart Problem

2004-12-03 Thread Douglas Knudsen
maybe something to do with the /cfide mapp/virtualdir. What webserver? Make sure the settings are the same for /cfide Doug On Fri, 03 Dec 2004 12:20:35 -0600, Nick Baker <[EMAIL PROTECTED]> wrote: > I moved a program that uses CFCHART to another server, and the chart no > longer displays. Bo

Re: WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Rob
I can't see how it could be the best if it only works with IE - thing about the XXDJ votes I've noticed is you can only vote for ones they let you, you cant write in anything you want, so its really a bogus award - only open to thier sponsors I think. On Fri, 3 Dec 2004 13:55:02 -0500, Rick Mason

Re: WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Adrocknaphobia
Matt, I just finished up a file/image manager piece that hooks into Fck for CF. Drop me a line off-list if your are interested. -Adam On Fri, 3 Dec 2004 09:25:23 -0800, Matt Robertson <[EMAIL PROTECTED]> wrote: > Actually FCKEditor 2.0, which is in RC1 status, needs a new ColdFusion > guy. I'v

Re: WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Rob
They put out good magazines in my opnion btw (thought I'd clalrify), I just dont put weight on the awards. -- ~The cfml plug-in for eclipse~ http://cfeclipse.tigris.org ~open source xslt IDE~ http://treebeard.sourceforge.net ~open source XML database~ http://ashpool.sourceforge.net

Re: Range regex

2004-12-03 Thread Ben Doom
Just out of curiosity, why are you trying to match them as strings? Why not do a numeric comparison? Is there a piece to this I'm missing? --Ben Taco Fleur wrote: > I want to use regular expressions to check numeric ranges, I have come up > with the following, and it works, but I was wondering

JRUN Login

2004-12-03 Thread Venable, John
Hello, I'm new to the world of CFMX on J2EE. I just installed CFMX on JRun on my computer, and I want to login to the JRun Admin. It asks for a username and password. CFMX however only asks you to set a password. I used "Administrator" and the password I entered for the CFMX install. No dice. Tried

Re: OpenSource Calendar

2004-12-03 Thread dave
the sparksevent calendar works nicely (flash) heres one im working on http://www.denveralumnaegpb.com/calendar/index.cfm reads from a simple xml file made by cfm on the backend ~| Special thanks to the CF Community Suite Gold S

Re: Validating CSV data

2004-12-03 Thread Jon Gunnip
If using a Jar file on your CF server is an options, you might also want to take a look at the open-source Java libraries for CV Parsing and Writing at http://ostermiller.org/utils/CSV.html. The parse() function in CSVParser throws an IOException if there is an error parsing. I use the ExcelCSVPr

Re: WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Lawrence Ng
I agree. I used to look at siteobjects but its only good for 1 browser and unless your company standardizes using only IE, then it's fine. I agree with the voting too. Here locally, we have a home builders awards but that too is bogus. all builders have to do is to apply and pay a fee and they are

Re: JRUN Login

2004-12-03 Thread Adrocknaphobia
You can find out the password in the following XML file. \servers\admin\SERVER-INF\jrun-users.xml -Adam On Fri, 3 Dec 2004 14:25:10 -0500, Venable, John <[EMAIL PROTECTED]> wrote: > Hello, I'm new to the world of CFMX on J2EE. I just installed CFMX on > JRun on my computer, and I want to login

RE: JRUN Login

2004-12-03 Thread Venable, John
Thanks, that did it. Twas a case-sensitivity issue. John > -Original Message- > From: Adrocknaphobia [mailto:[EMAIL PROTECTED] > Sent: Friday, December 03, 2004 2:38 PM > To: CF-Talk > Subject: Re: JRUN Login > > You can find out the password in the following XML file. > > \servers\adm

Re: WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Matt Robertson
Joe, Check out this SourceForge forum thread. The link to the connector someone else posted and I hammered at a bit are there. https://sourceforge.net/forum/forum.php?thread_id=1187525&forum_id=379487 Any help from anyone is appreciated. Adam I'll be emailing you shortly. Doing 10 things at o

Re: WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Stuart Kidd
I asked my host company if they could use fck but they responded with the below. Is what they say correct? Ref: 020.com Hello Stu, Unfortunately there is very little documentation for this application and the installtion script is built on a .exe file which we cannot install on a shared web

  1   2   >