Re: ColdFusion + SVNkit

2008-11-12 Thread Kamru Miah
Thank you for your suggestion, Tom. You could just cfexecute the svn command line client, and parse it's XML responses (--xml argument). Bound to be easier than trying to work the Java interface. Since my post, I have already tried cfexecute method, but it's extremely slow when looping

Re: CFdocument and CSS: page-break-inside

2008-11-12 Thread Matthew VanderMeer
Is there any other way to prevent a page break with in a div/div in cfdocument ? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Knowledge Base Software

2008-11-12 Thread Mike Harman
Looking for recommendations for Knowledge Base software. Would prefer ColdFusion based and open source if possible. Any ideas? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free

Re: Removing an Access database lock

2008-11-12 Thread Claude Schneegans
Delete the file/DSN ? This assumes you have access to the CF Administrator. Then simply check Disable database connections for this Datasource. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to

RE: (ot) Flash Displaying Different in Firefox

2008-11-12 Thread Steve LaBadie
Azadi, Thanks so much, your solution solved the problem. By removing all whitespace and putting the flash code on one line did the trick. Sorry for the delay, I was out yesterday. Steve LaBadie, Web Manager East Stroudsburg University 200 Prospect St. East Stroudsburg, Pa 18301 570-422-3999

RE: Removing an Access database lock

2008-11-12 Thread Billy Cox
You can query a non-existent table in the database. That will clear the lock. -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2008 9:11 AM To: cf-talk Subject: Re: Removing an Access database lock Delete the file/DSN ? This assumes

Re: Removing an Access database lock

2008-11-12 Thread Eric Roberts
If you have access to the file system, if I remember correctly, there is a file called databasename.lock. You should be able to just delete that to remove the lock. Eric Claude Schneegans wrote: Delete the file/DSN ? This assumes you have access to the CF Administrator. Then simply check

Re: Knowledge Base Software

2008-11-12 Thread Rick Mason
Mike, Well it's not open source but you should check out www.knowledgewatch.com . Talk with the owner, Don Hogan, about what you want to accomplish and I bet he can provide some help. Rick Mason On Wed, Nov 12, 2008 at 10:07 AM, Mike Harman [EMAIL PROTECTED] wrote: Looking for

Re: Removing an Access database lock

2008-11-12 Thread Casey Dougall
On Wed, Nov 12, 2008 at 10:57 AM, Eric Roberts [EMAIL PROTECTED] wrote: If you have access to the file system, if I remember correctly, there is a file called databasename.lock. You should be able to just delete that to remove the lock. Didn't restarting application pool in IIS also clear

Re: remote proxy object security

2008-11-12 Thread Tom Chiverton
On Wednesday 12 Nov 2008, Richard White wrote: would these be in the cfadministrator? No, your web server, not the ColdFusion admin. -- Tom Chiverton Helping to vitalistically morph essential appliances This email is sent for and on

Re: Knowledge Base Software

2008-11-12 Thread Mike Harman
Thanks for the tip, I'll check them out. ~mike ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive:

Re: remote proxy object security

2008-11-12 Thread Richard White
Thanks for your reply cutter, i have a couple of questions regarding your processes: 1) how do you check whether the request is being made over an SSL - i suspect it is checking whether https is in the request but how do you get hold of this from within a web service? 2) how do you set up the

Re: Removing an Access database lock

2008-11-12 Thread Tom Chiverton
On Wednesday 12 Nov 2008, Pete Ruckelshaus wrote: doing things like rebooting aren't an option (shared hosting server). Is there any other way to force this mdb file lock? Delete the file/DSN ? -- Tom Chiverton Helping to widespreadedly revolutionize e-commerce

Re: remote proxy object security

2008-11-12 Thread Richard White
would these be in the cfadministrator? is so can you point me to them please as i cannot find them, thanks On Wednesday 12 Nov 2008, Richard White wrote: 1) how do you check whether the request is being made over an SSL - i Just configure the web server to only serve the application over

Re: remote proxy object security

2008-11-12 Thread Tom Chiverton
On Wednesday 12 Nov 2008, Richard White wrote: 1) how do you check whether the request is being made over an SSL - i Just configure the web server to only serve the application over SSL. 2) how do you set up the folder of the service to require authentication? Again, tick the box in your web

Internal Page Links with CF

2008-11-12 Thread Marc Raber
sorry for the question as i know i have read it before but can't remember. in CF, when i want to have internal links - like a href=#name but name is a variable: a href=##name# how do i do without the ## that messes up the output? thanks

Re: Internal Page Links with CF

2008-11-12 Thread Charlie Griefer
On Wed, Nov 12, 2008 at 9:41 AM, Marc Raber [EMAIL PROTECTED] wrote: sorry for the question as i know i have read it before but can't remember. in CF, when i want to have internal links - like a href=#name but name is a variable: a href=##name# how do i do without the ## that messes up the

Re: Internal Page Links with CF

2008-11-12 Thread Wil Genovese
You only need to escape pound signs when inside CFOUTPUT tags. On Wed, Nov 12, 2008 at 11:41 AM, Marc Raber [EMAIL PROTECTED] wrote: sorry for the question as i know i have read it before but can't remember. in CF, when i want to have internal links - like a href=#name but name is a

Re: Removing an Access database lock

2008-11-12 Thread Les Mizzell
doing things like rebooting aren't an option (shared hosting server). Is there any other way to force this mdb file lock? Set up a temporary page with a query on it that you *know* will error. (table that doesn't exist or a cell in a table that doesn't exist, for example) Once the error is

Re: Internal Page Links with CF

2008-11-12 Thread Charlie Griefer
Since #name# is a variable in this case, I'm assuming it's inside cfoutput tags. On Wed, Nov 12, 2008 at 9:52 AM, Wil Genovese [EMAIL PROTECTED] wrote: You only need to escape pound signs when inside CFOUTPUT tags. On Wed, Nov 12, 2008 at 11:41 AM, Marc Raber [EMAIL PROTECTED] wrote:

Re: Internal Page Links with CF

2008-11-12 Thread Marc Raber
correct. thanks for the help. - Original Message - From: Charlie Griefer [EMAIL PROTECTED] To: cf-talk cf-talk@houseoffusion.com Sent: Wednesday, November 12, 2008 12:57 PM Subject: Re: Internal Page Links with CF Since #name# is a variable in this case, I'm assuming it's inside

Re: ColdFusion + SVNkit

2008-11-12 Thread Tom Chiverton
On Tuesday 11 Nov 2008, Kamru Miah wrote: Has anyone used the SVNkit (http://svnkit.com/) and can advise me how to interface ColdFusion (to obtain log messages from Subversion)? You could just cfexecute the svn command line client, and parse it's XML responses (--xml argument). Bound to be

Re: Internal Page Links with CF

2008-11-12 Thread Yuliang Ruan
sorry for the question as i know i have read it before but can't remember. in CF, when i want to have internal links - like a href=#name but name is a variable: a href=##name# how do i do without the ## that messes up the output? thanks do ###name# ## makes the pound character

Re: OT JavaScript question.

2008-11-12 Thread Cutter (CFRelated)
var myObj = { variableA: 'some value', variableB: 12, variableC: function(){ // a function } }; I think, you'll want to test. Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _

RE: OT JavaScript question.

2008-11-12 Thread Andy Matthews
You can do this: Var something = somethingelse = onemorething = 0; -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2008 1:34 PM To: cf-talk Subject: OT JavaScript question. Quick question that I just can not think of the right terms to find

OT JavaScript question.

2008-11-12 Thread Ian Skinner
Quick question that I just can not think of the right terms to find in Google. There is a syntax short cut in JavaScript if you are assigning several properties to the same object. What is it? ~| Adobe® ColdFusion® 8

RE: OT JavaScript question.

2008-11-12 Thread Adrian Lynch
Or do you mean with? with someObject { var1 = not; var2 = sure; var3 = about; var4 = this; var5 = syntax; var6 = or; var7 = whether; var8 = it's a JavaScript; var9 = thing or not; } alert(someObject.var1); Adrian Building a

Sending XML

2008-11-12 Thread Phillip M. Vector
I have some XML to send... Basically, this is what is causing me issues. cfhttpparam name=xml type=formfield value='cfoutput?xml version=1.0 ??qbmsxml

RE: Sending XML

2008-11-12 Thread Adrian Lynch
You can't put cfoutputs inside a tag attribute. It fact you don't ever need to. Remove them, the #'s in the value attribute will get evaluated. Adrian Building a database of ColdFusion errors at http://cferror.org/ -Original Message- From: Phillip M. Vector Sent: 12 November 2008 20:56

Re: Sending XML

2008-11-12 Thread Wil Genovese
Try using cfsavecontent cfsavecontent variable=myXml cfoutput?xml version=1.0 ??qbmsxml

Re: remote proxy object security

2008-11-12 Thread Dave Watts
1) how do you check whether the request is being made over an SSL - i suspect it is checking whether https is in the request but how do you get hold of this from within a web service? You can read CGI variables from within a web service request, just like you would from within a regular

Re: Sending XML

2008-11-12 Thread Phillip M. Vector
Thanks. That worked perfectly. :) Wil Genovese wrote: Try using cfsavecontent cfsavecontent variable=myXml cfoutput?xml version=1.0 ??qbmsxml

Re: OT JavaScript question.

2008-11-12 Thread Ian Skinner
Adrian Lynch wrote: Or do you mean with? with someObject { var1 = not; var2 = sure; var3 = about; var4 = this; var5 = syntax; var6 = or; var7 = whether; var8 = it's a JavaScript; var9 = thing or not; } alert(someObject.var1);

Re: OT JavaScript question.

2008-11-12 Thread Charlie Griefer
On Wed, Nov 12, 2008 at 1:14 PM, Ian Skinner [EMAIL PROTECTED] wrote: Yes that is the one I was looking for!. I found 'with' to be a very poor search term on Google, or any search engine for that matter. heh. reminds me of http://bash.org/?514353 :) -- I have failed as much as I have

Re: RegEx (REMatch) experts?

2008-11-12 Thread Developer MediaDoc
A quick follow up to this, and some improved code (thanks to those on the RegEx list). cfsavecontent variable = my_reg_ex(?:([^]+))|([^ ]+)/cfsavecontent !--- NOTE a trailing whitespace character has been removed, and for ease of readability, cfsavecontent has been used to remove need to

Re: Internal Page Links with CF

2008-11-12 Thread Gerald Guido
Just as a Just in case you run into this... Be aware that there is a Bug in IE 6 that causes problems with cflocation and #'s. http://www.bennadel.com/blog/1183-Strange-URL-Hash-Problem-With-CFLocation-In-IE6.htm G On Wed, Nov 12, 2008 at 1:00 PM, Marc Raber [EMAIL PROTECTED] wrote: correct.

custom tags slow?

2008-11-12 Thread Brian Dumbledore
I put my header and footer html in a custom tag (header - executionmode eq start, footer - executionmode not start). And I have rest of my cf stuff within the tag body. Is this recommended? My concern is, having huge body will somehow slow down the tag/page ? Is it better to have two udfs?

Re: custom tags slow?

2008-11-12 Thread Barney Boisvert
There is slight overhead for invoking a custom tag, but it's similar to invoking a UDF, and small enough to safely ignore. Certainly nothing to worry about until you have load testing data that says you should, and even then there's a LONG list of other things to optimize first. cheers, barneyb

Re: custom tags slow?

2008-11-12 Thread Brian Dumbledore
Thanks. I just thought if the tag has a body too, then it somehow has to 'keep track' of the body hence it will be slow. But glad to know that isn't the case. ~| Adobe® ColdFusion® 8 software 8 is the most important and

Re: custom tags slow?

2008-11-12 Thread Casey Dougall
On Wed, Nov 12, 2008 at 4:52 PM, Brian Dumbledore [EMAIL PROTECTED] wrote: I put my header and footer html in a custom tag (header - executionmode eq start, footer - executionmode not start). And I have rest of my cf stuff within the tag body. Is this recommended? My concern is, having huge

RE: custom tags slow?

2008-11-12 Thread Gaulin, Mark
Hi CF does have a bit more work to do when you use open/close custom tags for exactly the reason you suspect. (It has to buffer the content between the tags, but it was going to buffer it anyway, just in a different place.) There are also some limitations (like not being able to use cfflush

Coldfusion on OS 10.5 - Configuration problem

2008-11-12 Thread Karan Joshi
Hi guys SETUP - Environment: Mac Pro Intel core 64bit with OS 10.5.5 Application server: Coldfusion8 32bit Web Server: Apache 2.2 32bit Database: MySQL and pre-installed PHP5 in Mac OS 10.5 PROBLEM 1) Can't access http://localhost/CFIDE/Administrator/index.cfm. Get an error-The

RE: OT JavaScript question.

2008-11-12 Thread Jim Davis
-Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2008 4:15 PM To: cf-talk Subject: Re: OT JavaScript question. Adrian Lynch wrote: Or do you mean with? with someObject { var1 = not; var2 = sure; var3 = about;

CF8 administrator access (Windows OS)

2008-11-12 Thread Don L
Is it true that cf8's admin features can only be accessed via localhost or 127.0.0.1 address vs. universal IP by default? don't remember. Thanks. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to

Re: CF8 administrator access (Windows OS)

2008-11-12 Thread James Holmes
No, it's open to all IP addresses to which the rest of the CF server is open. mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2008/11/13 Don L [EMAIL PROTECTED]: Is it true that cf8's admin features can only be accessed via localhost or 127.0.0.1 address vs.

Re: CF8 administrator access (Windows OS)

2008-11-12 Thread AJ Mercer
and the web server has a mapping to /cfide On Thu, Nov 13, 2008 at 12:45 PM, James Holmes [EMAIL PROTECTED]wrote: No, it's open to all IP addresses to which the rest of the CF server is open. mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2008/11/13

Re: inserting a structure...within a structure...within a structure

2008-11-12 Thread Ben Conner
Thanks for all the replies. I got much more out of it than the original question. Much appreciated! --Ben -- Ben Conner[EMAIL PROTECTED] Web World, Inc. 888-206-6486 PO Box 1122 480-704-2000 Queen Creek, AZ 85242

Re: CF8 administrator access (Windows OS)

2008-11-12 Thread Don L
Good to know, thanks. I usually set up extra security but not doing it on daily basis, I forgot how I did it -- not important at this point. No, it's open to all IP addresses to which the rest of the CF server is open. mxAjax / CFAjax docs and other useful articles:

Re: ColdFusion + SVNkit

2008-11-12 Thread AJ Mercer
I think the skweegee project uses it http://skweegee.riaforge.org/ On Tue, Nov 11, 2008 at 9:16 PM, Kamru Miah [EMAIL PROTECTED] wrote: Has anyone used the SVNkit (http://svnkit.com/) and can advise me how to interface ColdFusion (to obtain log messages from Subversion)?