Re: deleting directories older than say 6 hours

2005-10-20 Thread Jon Austin
On 10/20/05, Seamus Campbell [EMAIL PROTECTED] wrote: Hi I want to delete some temporary directories but only older than a certain number of hours (say 6) The actual deleting is no worries - it just that I can't work out to only select/delete directories older than x hours. Going on memory

[Reply To] Re: deleting directories older than say 6 hours

2005-10-20 Thread Seamus Campbell
Thanks It's with DateAdd that I'm having problems - just can't seem to get a way to get only dirs older than 6 hrs Ta Seamus You wrote On 10/20/05, Seamus Campbell [EMAIL PROTECTED] wrote: Hi I want to delete some temporary directories but only older than

CF5 Error Handler

2005-10-20 Thread Mark Henderson
I'm running the fusebox 4 core files on a CF5 server (can't upgrade sorry - already tried that path) and I have a problem with error handling. Has anyone out there successfully implemented an errorhandler plugin under such an environment? TIA Mark

Re: How to batch a change of DSNs

2005-10-20 Thread Beru
Thanks mucho for your advices, I will try these... Anyone here heard of some alternative Admin GUI (for the maintenance of DSNs etc)? On 19/10/05, Snake [EMAIL PROTECTED] wrote: If you just cfdump the service factory, u can see it's methods and functions etc. You can then recurse over them

Re: Template cache problem

2005-10-20 Thread James Holmes
Not having worked with CF7 yet I'm taking a stab in the dark but perhaps part of the event gateway CFC mechaism is cached indepentently of all the other settings you described, similar to the way Webservice CFC invokation stubs are cached (so changes to a webservice CFC cause errors until the

Re: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Massimo Foti
I have not yet re-created my HS snippets in DW8. I know that I can't easily create the same sort of snippets as I could in HS. DW8 requires some extra steps that HS+'s snippet variables made easy-to-use. This DW's extension let you import HS's snippets in DW:

Re: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Massimo Foti
My dw doesnt code rewrite, like others have said, you can control that or turn it off. Even if you turn it off, there is no way you can be 100% sure that DW will never rewrite your code. DW is getting better at leaving your code alone after each release, still you can't blindly trust it.

Re: tmt_img java error, anyone have any ideas?

2005-10-20 Thread Massimo Foti
Massimo! You're beautiful! It works perfectly. Glad to hear this. Thanks for testing it out Just curious, what did you change? Well, first of all I have to give credit to Otoniel Rojas. He was using the CFC and facing the same problem with an headless server. He found the solution and send

Re: Template cache problem

2005-10-20 Thread Michael Dinowitz
From what tests I've run on the Directory Watcher and Asynchronous gateway, each 'call' to the CFC used for these gateways invokes a new instance of the code and each invocation checks the template to see if it has been altered. Bottom line is that there is no auto-caching on CF 7.0 (the

Re: Moving directories via CF code

2005-10-20 Thread Massimo Foti
Does anyone know whether it's possible to move a directory and its contents to a different place without actually physically moving it via a shell command or dragging and dropping (on Windows). Is there a CF command to do it in my script or would that be a security problem? I am not sure if

Re: tmt_img java error, anyone have any ideas?

2005-10-20 Thread James Holmes
We just went through similar hassles with Other Java imaging packages on headless systems. While this CFC works ok, it's likely that other packages involving text won't if you ever try them (not without breaking CFCHART anyway). We solved the problem by using a virtual xserver on the machine and

Tracking Text Only emails

2005-10-20 Thread Dave Ashworth
Hi I am developing a package used to send out emails and want to track mails opened, click throughs etc Within the HTML email I placed an image which calls a script on the server and when the mail is opened it is tracked However, this is the only technique I have found to track opened mail and

RE: [Reply To] Re: deleting directories older than say 6 hours

2005-10-20 Thread Coldfusion Developer
cfdirectory action=LIST directory=D:\ name=MyQ FILTER=*. CFOUTPUT QUERY=MyQ CFIF DateDiff('h',Now(),DateLastModified) LT -6 !--- Delete this directory --- /CFIF /CFOUTPUT -Original Message- From: Seamus Campbell [mailto:[EMAIL PROTECTED] Sent: Thursday,

Cfinvoke + webservices

2005-10-20 Thread ekcien
hi all.. Currenctly we have 2 Coldfusion Server (different location) and we would like to retrieve the data between this 2 server. According to the Forum the best way to achive that is using Web services. I am new to this component .. just wondering what error with the code below: CFC File

Scheduler in CFMX7

2005-10-20 Thread Chad McCue
I am having a problem with the scheduler in CFMX 7on Windows 2003. I have created a basic scheduled task that updates a database and sends out an email letting me know the status of the update. When I copy and paste the URL from the scheduler into a browser everything runs perfectly, I receive

[Reply To] RE: [Reply To] Re: deleting directories older than say 6 hours

2005-10-20 Thread Seamus Campbell
Many thanks - so simple! Seamus You wrote cfdirectory action=LIST directory=D:\ name=MyQ FILTER=*. CFOUTPUT QUERY=MyQ CFIF DateDiff('h',Now(),DateLastModified) LT -6 !--- Delete this directory --- /CFIF /CFOUTPUT -Original Message-

Re: Not StructKeyExists

2005-10-20 Thread daniel kessler
If you talk about Session.foo, CF will know you mean the Session scope. ok, good to know. Currently all my apps check for session.dn and I'd have to change them to session.user.dn in this case, right? Presumably, yes. You could probably do this with a find and replace. yeah sorry. My

Re: Tracking Text Only emails

2005-10-20 Thread JediHomer
What we do is add Opened code to our clickthru handler, as you cant track plain text opens, if they click on a clickthru in the plain text portion, the code checks to see if the email has been opened, if not sets it to open. Not accurate but better than nothing On 20/10/05, Dave Ashworth [EMAIL

RE: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Dawson, Michael
I have not run into any issues where DW rewrites my code. Of course, I only use the code view. I thought DW would rewrite your code only if you used the design view. M!ke -Original Message- From: Massimo Foti [mailto:[EMAIL PROTECTED] Sent: Thursday, October 20, 2005 2:22 AM To:

RE: OT Joins

2005-10-20 Thread Mike Klostermeyer
That is not true. In SQL Server: select * from a, b where a.col *= b.col is a left join Mike -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 19, 2005 7:56 PM To: CF-Talk Subject: Re: OT Joins The type of join is not related to where the

Re: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Massimo Foti
I have not run into any issues where DW rewrites my code. Of course, I only use the code view. I thought DW would rewrite your code only if you used the design view. Unfortunately that's a very common, false, assumption. Even if you stick with code view all the time, DW may rewrite the code

RE: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Andy Matthews
Mike... Great post man...I appreciate the time you spent in this one. It's helpful as I decide whether to move towards DW8 or not. I'd just like something a little more robust and I feel much the same way about eclipse as you. !//-- andy matthews web developer ICGLink, Inc.

Re: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Ken Ferguson
I tried and tried and tried not to get sucked into this thread, but it's useless! I use Homesite+. I love CFEclipse, but I just *CAN'T* get away from Homesite+. I've got it, from years of using it, set up so that it's so efficient for me to do my work. The code templates are the greatest

RE: WHAT'S WRONG WITH THIS QUERY?

2005-10-20 Thread Andy Matthews
I was always under the impression that you couldn't join tables in anything other than a SELECT query. !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Nomad [mailto:[EMAIL

RE: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Andy Matthews
Yep. I don't even like it when DW puts in extra tabs or spaces. And it's REALLY irritating when it does extra carriage returns after TD and TR tags. !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original

Re: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Mark Drew
Errr in CFEclipse you can do the same thing.. I add fusedocs to the top of every document, in fact I can use a snippet as a base for new documents that I create And sure, you can change the insert snippet in CFE from Ctrl+i to ctrl+j All we would need to do is do an importer for the snippets

RE: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Andy Matthews
Also a good post. Editplus makes it even easier than what you've got Ken. It comes with autocomplete files. I type: cfquery and I get a full cfquery block. I type SELECT and I get a full SELECT statement. I do the same thing with table , cfloop and more. It's a HGUE timesaver and I hope that

utc2local?

2005-10-20 Thread Johnny Le
Hi, When you use the function dateConvert to convert UTC time to local time, is it local to the user's browser or is it local to the web browser? I think it is local to the user's browser, but just want to make absolutely sure. While now() is displaying the server time, not the browser's

RE: WHAT'S WRONG WITH THIS QUERY?

2005-10-20 Thread Kerry
I think the syntax is along the lines of UPDATEtblA SET tblA.something = tblB.something FROM tblB WHERE (tblA.something = tblB.something) -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: 20 October 2005 14:17 To: CF-Talk Subject: RE: WHAT'S WRONG

RE: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Dawson, Michael
That's good to know. Although I have never seen this before, I'll keep an eye on it. I keep my code pretty clean and easy, so I may not run into any problems with this other than what I specifically asked DW to do in the first place. Thanks! -Original Message- From: Massimo Foti

Re: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Massimo Foti
Also a good post. Editplus makes it even easier than what you've got Ken. It comes with autocomplete files. I type: cfquery and I get a full cfquery block. I type SELECT and I get a full SELECT statement. I do the same thing with table , cfloop and more. It's a HGUE timesaver and I hope

RE: WHAT'S WRONG WITH THIS QUERY?

2005-10-20 Thread Andy McShane
You just need to rewrite the query, here is an example from SQL BOL CREATE TABLE s (ColA INT, ColB DECIMAL(10,3)) GO CREATE TABLE t (ColA INT PRIMARY KEY, ColB DECIMAL(10,3)) GO INSERT INTO s VALUES(1, 10.0) INSERT INTO s VALUES(1, 20.0) INSERT INTO t VALUES(1, 0.0) GO UPDATE t SET t.ColB =

RE: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Dawson, Michael
Ken, I have the same issue. I have quite a few of these code templates in HS. I have something like: cffun then Ctrl+J to create a function cfarg to create an argument return to add a closing return tag var to add variables. req to add request. Plus a few more for larger blocks of code. Since

RE: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Andy Matthews
True, but the autocomplete file and syntax files for Coldfusion are a free download from Editplus.com. !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Massimo Foti [mailto:[EMAIL

RE: utc2local?

2005-10-20 Thread Dawson, Michael
*All* CF date/time functions are local to the web *server*. The browser has nothing to do with it other than displaying the date/time. M!ke -Original Message- From: Johnny Le [mailto:[EMAIL PROTECTED] Sent: Thursday, October 20, 2005 8:26 AM To: CF-Talk Subject: utc2local? Hi, When

Re: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Massimo Foti
True, but the autocomplete file and syntax files for Coldfusion are a free download from Editplus.com. Sorry, my post wasn't about EditPlus, I was answering to your question about DW and tried to tell you that DW, out of the box, doesn't offer the same kind of funtionality.

Re: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Ken Ferguson
REALLY, I wasn't aware? I just opened up CFE again to check this out and was hit by one more thing I hate. I clicked new and it starts in with the damned questions: pick a wizard, new what - file, where would you like it... I DON'T want it anywhere except open in front of me. LEAVE ME

Open Source Shopping Cart (was: Shopping Cart)

2005-10-20 Thread Russell Patterson
I think this is a great idea, Does any type of open source shopping cart exists? Russell - Original Message - From: Mike | NZSolutions Ltd [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, October 19, 2005 8:09 PM Subject: RE: Shopping Cart Question... I saw

RE: WHAT'S WRONG WITH THIS QUERY?

2005-10-20 Thread Dawson, Michael
Well, I thought I had some code lying around, but I guess I updated it with a different process. In SQL Server's DTS, I had a query that pulled information from our Cicso Call Manager database. Once the data was in my local database, I needed to add a call cost for each call record. To do this,

RE: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Dawson, Michael
You can control this behavior in DW's settings. Under the Edit menu, select Tag Libraries Look for td. In the Tag format: section, you will see the option, by default, is Before And After Tag. I think this is where you can change all tags to Not Formatted. It would take some work, but my

RE: utc2local?

2005-10-20 Thread Bobby Hartsfield
CF date/time functions are based on the date/time of the server they are running on...including now() ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Johnny Le [mailto:[EMAIL PROTECTED] Sent: Thursday, October 20, 2005 9:26 AM To: CF-Talk

Re: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Mark Drew
I know.. I hated it as well, and tried to make it (even thought it doesnt look it) fast by the fact that when you do new cf file all you physically have to do is enter the file name and bash on the return key... I am sorry.. its a bug that is on my list of to-do's to get this working consistently

RE: OT Joins

2005-10-20 Thread Raster, Tim
Most decent query engines will know how to optimally run the query either way, whether you put it in the from or where clause. That said, there is no excuse for writing sloppy code, or using the wrong type of joins. (even the smartest query engine can't get around bad query designs... sometimes

Putting files with Dreamweaver MX 8

2005-10-20 Thread Smith, Daron [PA]
Has anyone experienced a problem with Dreamweaver MX 8 not putting the files, even when it says that it has? I save and put the files using a mapped network drive and look at the files on my server and the file size/created times have not changed. If I make large text changes the new file will

Re: OT Joins

2005-10-20 Thread Claude Schneegans
That is not true. It is not standard either. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks.

Re: OT Joins

2005-10-20 Thread Aaron Rouse
From what I have noticed, very few things are standard between databases. On 10/20/05, Claude Schneegans [EMAIL PROTECTED] wrote: That is not true. It is not standard either. -- ~| Logware (www.logware.us): a new and

RE: OT Joins

2005-10-20 Thread Mike Klostermeyer
I never said that it was. You stated that it was impossible, which is incorrect. Notice the ...In SQL Server... proceeding the code. -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Thursday, October 20, 2005 9:38 AM To: CF-Talk Subject: Re: OT Joins That is

Re: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Ken Ferguson
Don't get me wrong, once I'm in CFE, I really like it a lot. I'm just wondering though, why does it need to put a file somewhere at all? Can't it wait until I'm ready to save a file? When I hit new, I just want a new file to appear in the IDE. Hell, I may not even have any idea at all where

RE: Putting files with Dreamweaver MX 8

2005-10-20 Thread Calvin Ward
Turn off the synchronization setting in the site definition. - Calvin -Original Message- From: Smith, Daron [PA] [mailto:[EMAIL PROTECTED] Sent: Thursday, October 20, 2005 10:38 AM To: CF-Talk Subject: Putting files with Dreamweaver MX 8 Has anyone experienced a problem with

RE: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Damien McKenna
-Original Message- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Don't get me wrong, once I'm in CFE, I really like it a lot. I'm just wondering though, why does it need to put a file somewhere at all? Or for that matter, why they didn't add word wrapping to the editor when

Re: OT Joins

2005-10-20 Thread Ken Ferguson
Standard is just about the most loosely used, tossed about, meaningless word I can think of in regards to disparate technologies. Aaron Rouse wrote: From what I have noticed, very few things are standard between databases. On 10/20/05, Claude Schneegans [EMAIL PROTECTED] wrote: That is not

Re: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread John Wilker
I've never had DW rewrite a line of code I didn't tell it to. Not once. On 10/20/05, Massimo Foti [EMAIL PROTECTED] wrote: My dw doesnt code rewrite, like others have said, you can control that or turn it off. Even if you turn it off, there is no way you can be 100% sure that DW will

RE: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Calvin Ward
Well, that's kind of really looking too far back, I'd say -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Thursday, October 20, 2005 10:53 AM To: CF-Talk Subject: RE: Dreamweaver, Homesite+ 5.5, Eclipse? -Original Message- From: Ken Ferguson

RE: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Calvin Ward
Try opening any frameset file with a variable in the frame source attributes. Now for real fun, figure out how to get it to stop doing that. -Original Message- From: John Wilker [mailto:[EMAIL PROTECTED] Sent: Thursday, October 20, 2005 10:56 AM To: CF-Talk Subject: Re: Dreamweaver,

Re: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Ken Ferguson
Well, with that I have no problem -- word wrap is very annoying to me and I don't understand what people like about it. Personally, the word wrapping features in a given editor feel to me like the IDE is getting in my way. If I had word wrap turned on, you could count the seconds until you'd

Re: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Mark Drew
WE had a whole debate about wordwrapping, and basically boilded down to either you can have a) word wrapping (decided not needed and if you did, your code was pants) or b) Code folding the vote went for code folding Sorry.. democracy at work peoples MD On 20/10/05, Damien McKenna [EMAIL

Re: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Massimo Foti
I've never had DW rewrite a line of code I didn't tell it to. Not once. I am glad you were so lucky :-) I've seen quite a good amount of code corruption cases in DW. Things started getting significantly better with DW 2004 and, so far, DW 8 never corrupted any of my files. But I know for sure

Menu System Managment

2005-10-20 Thread jonese
We've been long time users of open cubes software and are currently looking to see if there is anything better out there for managing menu systems in websites. We are looking for something which allows for the management / creation of all types of menus (static, text, dhtml, image, diconnected,

Re: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Massimo Foti
Try opening any frameset file with a variable in the frame source attributes. Now for real fun, figure out how to get it to stop doing that. There is no way :-))) BTW Nowadays I rarely use frames and opening frameset files in Homesite is such a second nature that I forgot this one. Thanks

RE: Menu System Managment

2005-10-20 Thread Kristopher Pilles
Check out Milonic.com -Original Message- From: jonese [mailto:[EMAIL PROTECTED] Sent: Thursday, October 20, 2005 11:08 AM To: CF-Talk Subject: Menu System Managment We've been long time users of open cubes software and are currently looking to see if there is anything better out there

Re: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread John Wilker
I remember back in the day I think it was v3, kept removing pound signs on me. Drove me batty until I figured out what it was doing LOL. I'll start keeping an eye open to make sure it behaves. On 10/20/05, Massimo Foti [EMAIL PROTECTED] wrote: I've never had DW rewrite a line of code I didn't

Deleting DSN's in CF 5

2005-10-20 Thread Scott Stewart
I think I know the answer to this but I want to verify... The DSN manager in CF 5, interfaces directly with ODBC, so if I delete a CF DSN, it also removes it from the ODBC Manager in Windows, making it not accessible to *any* Windows app, not just CF. Scott A. Stewart Cold Fusion Developer

Re: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Massimo Foti
I remember back in the day I think it was v3, kept removing pound signs on me. Drove me batty until I figured out what it was doing LOL. Those were really dark ages :-) I'll start keeping an eye open to make sure it behaves. As soon as you have a decent source control set-up you can feel

Coldfusion 7 CFTREE

2005-10-20 Thread Andy Mcshane
Can anybody point me to a source of any examples of using CFTREE in Coldfusion 7? I am following the documentation but I cannot for the life of me get it to apear correctly on my page, I have set the height to 400 and the width to 200 but I still get an awful lot of space below my control which

Re: OT Joins

2005-10-20 Thread Aaron Rouse
There is the ability to use (+) in Oracle On 10/20/05, Mike Klostermeyer [EMAIL PROTECTED] wrote: I never said that it was. You stated that it was impossible, which is incorrect. Notice the ...In SQL Server... proceeding the code.

RE: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Damien McKenna
-Original Message- From: John Wilker [mailto:[EMAIL PROTECTED] I've never had DW rewrite a line of code I didn't tell it to. Not once. If you do a search/replace and have the ignore whitespace option selected it will re-adjust the lines affected by the search-replace. -- Damien

RE: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Damien McKenna
-Original Message- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Well, with that I have no problem -- word wrap is very annoying to me and I don't understand what people like about it. Personally, I've had Eclipse slow to a *crawl* when editing long-ish lines, so word wrapping

RE: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Damien McKenna
-Original Message- From: Mark Drew [mailto:[EMAIL PROTECTED] WE had a whole debate about wordwrapping, and basically boilded down to either you can have a) word wrapping (decided not needed and if you did, your code was pants) or b) Code folding Why was it an either-or debate?

Re: Tracking Text Only emails

2005-10-20 Thread Bryan Stevenson
It also won't work on XP SP2 machines that block images in e-mails by defaultto stop exactly what you're doing ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL

Re: OT Joins

2005-10-20 Thread Claude Schneegans
Standard is just about the most loosely used, tossed about, meaningless word I can think of in regards to disparate technologies. Standard is the intesection subset of all non standard features in all products. -- ___ REUSE CODE! Use custom tags; See

openDocument format

2005-10-20 Thread Ryan Guill
Hey guys, just a quick question, I keep hearing about how this new openDocument format, as well as the new office formats are going to be xml based, which sounds great. But these formats are also binary correct? So will it be, or is it possible that we will be able to create openDocument

Re: OT Joins

2005-10-20 Thread Ken Ferguson
I like that Claude - well put. Claude Schneegans wrote: Standard is just about the most loosely used, tossed about, meaningless word I can think of in regards to disparate technologies. Standard is the intesection subset of all non standard features in all products.

RE: openDocument format

2005-10-20 Thread Damien McKenna
-Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] I keep hearing about how this new openDocument format, as well as the new office formats are going to be xml based, which sounds great. The new OASIS-ratified format called OpenDocument

Re: OT Joins

2005-10-20 Thread Claude Schneegans
You stated that it was impossible, which is incorrect. The original question didn't mention any database, so I assumed it was about the SQL language in general, in which all types of joins are handled in the FROM clause, not in the WHERE. I think this was the object of the question. --

RE: openDocument format

2005-10-20 Thread Munson, Jacob
Keep in mind that Microsoft will be making future versions of document formats XML, but they will NOT be compatible with OpenDocument. Last I heard they are still fighting against even letting people know what's going on in their document formats. For them XML is a good way to help themselves

Re: openDocument format

2005-10-20 Thread Ryan Guill
good call on the zip. I was actually able to open it as a zip file without renaming the extension. It contains several xml documents. It would be a very large undertaking to make a parser in coldfusion to read in or write out an openDocument, unless you just wanted to read it in and get a few

Re: openDocument format

2005-10-20 Thread Ryan Guill
right, and it will be interesting to me if office will be able to read in openDocument format, even if it cant save it as such. On 10/20/05, Munson, Jacob [EMAIL PROTECTED] wrote: Keep in mind that Microsoft will be making future versions of document formats XML, but they will NOT be compatible

Re: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Mark Drew
I think I was shortening a LONG discussion had over at the cfeclipse mailing list. I am sure DW has everything and the kitchen sink, but why did they way what, 4 major versions before adding code folding? we are in version 1.2 and wordwrap hasnt been an OVERLY asked feature. I am sure you need

RE: openDocument format

2005-10-20 Thread Damien McKenna
-Original Message- From: Munson, Jacob [mailto:[EMAIL PROTECTED] Keep in mind that Microsoft will be making future versions of document formats XML, but they will NOT be compatible with OpenDocument. Last I heard they are still fighting against even letting people know what's

Re: Using try/catch all over the place a good thing?

2005-10-20 Thread Barney Boisvert
I'd probably throw an exception and let the calling page catch it if it wants to. By using a return code, you're allowing the calling page to ignore a failure, while an exception forces the calling page to explicitly deal with the exceptional circumstance. You could just let the DB exception

RE: openDocument format

2005-10-20 Thread Munson, Jacob
From: Damien McKenna Microsoft has promoted their formats as being XML for several years, the only problem is that their view of XML means lots of this: xmlbinarydata/xml Yeah, which only helps them. It is easier for excel to read a .doc, but forget about getting inside the .doc yourself.

more coldfusion 7.01 problems, Macromedia folks please read! I just want to cry

2005-10-20 Thread Anthony Prato
Its not a good morning when you come in and your production CF server is not taking requests again. Its even worse when you can't post to the macromedia CF forums because you get a 404 error on submit. :( GRR well its pretty close to what I posted here yesterday, but I'll give it another

Library to convert week number to string?

2005-10-20 Thread Eric Hoffman
Does something like this exist and I am missing it...basically getting datepart(ww, orderdate) for some graphing in SQL and would like in the cfoutput to have that converted to week of or xx/yy - xx/yy. Thanks! Eric ~| Find

RE: cfopenbb

2005-10-20 Thread Ewok
and now the post initial buzz... I guess its dead all together now huh? -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: Friday, August 26, 2005 1:40 PM To: CF-Talk Subject: cfopenbb Any updates on this effort? The initial buzz seems to have died down.

RE: Dreamweaver, Homesite+ 5.5, Eclipse?

2005-10-20 Thread Andy Matthews
I vote for Word wrap. I detest having code that I can't see because it's offscreen. I love code foldup though. !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Mark Drew

RE: Library to convert week number to string? (cancel)

2005-10-20 Thread Eric Hoffman
Sorry, got it off of CFLIB. Sweet!! Thanks! -Original Message- From: Eric Hoffman [mailto:[EMAIL PROTECTED] Sent: Thursday, October 20, 2005 11:36 AM To: CF-Talk Subject: Library to convert week number to string? Does something like this exist and I am missing it...basically getting

RE: cfopenbb

2005-10-20 Thread Michael T. Tangorre
From: Ewok [mailto:[EMAIL PROTECTED] and now the post initial buzz... I guess its dead all together now huh? Bummer, really. ~| Logware (www.logware.us): a new and convenient web-based time tracking application.

RE: more coldfusion 7.01 problems, Macromedia folks please read! I just want to cry

2005-10-20 Thread Jillian Koskie
Anthony, I wish I could tell you how to fix your problem, but I thought I might share some thoughts on where I would start were it me. 1. Start new CF log files so that you know which error messages are really current. 2. Have you checked your IIS logs? Is anything unusual happening

RE: openDocument format

2005-10-20 Thread Damien McKenna
-Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] right, and it will be interesting to me if office will be able to read in openDocument format, even if it cant save it as such. If MS aren't able to pay off enough politicians in Massechusetts and the move to

Coldfusion Blog Software sans DB

2005-10-20 Thread Mark Drew
Good evening y'all I was wondering if any of the CF based blog stuff can run without a DB? (But what of data storage?! I hear you yell) I am finally hosting my site and moving my blog to my own domain, and I am thinking that using up the DB (for there is yes, one and only one if I email them

RE: Coldfusion Blog Software sans DB

2005-10-20 Thread Marius Milosav
Thank you, much appreciated. Marius -Original Message- From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: October 20, 2005 1:02 PM To: CF-Talk Subject: Coldfusion Blog Software sans DB Good evening y'all I was wondering if any of the CF based blog stuff can run without a DB? (But what

RE: Coldfusion Blog Software sans DB

2005-10-20 Thread Marius Milosav
Sorry, disregard my previous message. Wrong thread. Marius -Original Message- From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: October 20, 2005 1:02 PM To: CF-Talk Subject: Coldfusion Blog Software sans DB Good evening y'all I was wondering if any of the CF based blog stuff can run

Problem creating user for CF

2005-10-20 Thread Tom McNeer
Hi, On a new install of CFMX 7, I am attempting to run CF under a non-system user account, as recommended for security. I have created a user following the instructions in Macromedia's document Configuring ColdFusion MX 7 Server Security (which was published in February but now seems to have

RE: more coldfusion 7.01 problems, Macromedia folks please read! I just want to cry

2005-10-20 Thread Mark A Kruger
Jillian, What are your JVM settings. JRUN is only taking 150 megs of Memory - seems pretty lean to me. Can you post the contents of your cfusionmx7/runtime/bin/jvm.config file? It might be helpful. -Mark -Original Message- From: Jillian Koskie [mailto:[EMAIL PROTECTED] Sent: Thursday,

Re: Coldfusion Blog Software sans DB

2005-10-20 Thread Barney Boisvert
You can put more than one application's tables in a given database. Don't know if BlogCFC has facilities for table prefixes, but it wouldn't be to hard to add if not. So blog_* for the blog, store_* for your personal store, etc. Short of that, you might look into something like sqlite, which is

RE: more coldfusion 7.01 problems, Macromedia folks please read! I just want to cry

2005-10-20 Thread Jillian Koskie
Mark, It is Anthony having the problem. -- Jillian -Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Thursday, October 20, 2005 11:12 AM To: CF-Talk Subject: RE: more coldfusion 7.01 problems, Macromedia folks please read! I just want to cry Jillian, What are

Re: more coldfusion 7.01 problems, Macromedia folks please read! I just want to cry

2005-10-20 Thread Anthony Prato
1. Start new CF log files so that you know which error messages are really current. Does this require a restart or can i just rename the existing files? (the ones in cfadmin are easy, but what about the jrun files?) 2. Have you checked your IIS logs? Is anything unusual happening

RE: Coldfusion Blog Software sans DB

2005-10-20 Thread Andy Matthews
Why not make ONE db with lots of tables? !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: Thursday, October 20, 2005 12:02 PM To: CF-Talk

cfc name introspection

2005-10-20 Thread Michael Dinowitz
When dumping the THIS scope within a CFC, it will show the name of the CFC, or at least the full path to it which can be converted to the name. I'm playing with some auto caching techniques and would like for the caching method to know the cfc name automatically without having to pass it in or

Re: more coldfusion 7.01 problems, Macromedia folks please read! I just want to cry

2005-10-20 Thread Anthony Prato
150 is the min setting... It's usually more around 400. Thats what makes me think jrun was either idle or deadlocked. But since I can't get perfmon to work, i couldn't see how many requests it had going. here's my jvm args java.args=-server -Xmx512m -Dsun.io.useCanonCaches=false

  1   2   >