Re: Appending variable names to CFSET

2005-06-13 Thread Aaron DC
That's because the list in example 2 is simply "linkItems". It would work if you had HTH Aaron - Original Message - From: "Mark Henderson" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Tuesday, June 14, 2005 2:02 PM Subject: RE: Appending variable names to CFSET > Thanks Ricardo. I got it w

RE: Appending variable names to CFSET

2005-06-13 Thread James Holmes
You needed Note the pound signs. -Original Message- From: Mark Henderson [mailto:[EMAIL PROTECTED] Sent: Tuesday, 14 June 2005 12:02 To: CF-Talk Subject: RE: Appending variable names to CFSET Thanks Ricardo. I got it working and it wasn't the variable causing my trouble. If I do

RE: Appending variable names to CFSET

2005-06-13 Thread Mark Henderson
Thanks Ricardo. I got it working and it wasn't the variable causing my trouble. If I do this: Instead of this: It works. Go figure. Adieu Mark ~| Logware (www.logware.us): a new and convenient web-based time tracking app

Re: Appending variable names to CFSET

2005-06-13 Thread Ricardo Russon
Mark, Is this what you are looking for ? HTH Ricardo On 6/14/05, Mark Henderson <[EMAIL PROTECTED]> wrote: > Quick question. Is it possible to take a predefined variable and add > that as part of another variable name inside cfset. > > Here is my example. > > > SELECTlink_ID,

Appending variable names to CFSET

2005-06-13 Thread Mark Henderson
Quick question. Is it possible to take a predefined variable and add that as part of another variable name inside cfset. Here is my example. SELECTlink_ID, name, url, comment, category,

RE: CF on shared hosting

2005-06-13 Thread James Holmes
The Jrun used with a CF Standalone install has no real security - you might try to edit the java security policy file directly but I doubt that would be easy. The JSP files then run with no sandboxing, able to veiw the entire server and do everything that an unsandboxed CF install can do. -Ori

Re: Re[2]: cfexecute question

2005-06-13 Thread S . Isaac Dealey
> SID> Try setting the ColdFusion server service to use the > Administrator > SID> account or another windows user account instead of > the system account > SID> -- that might get the result you want. I'm not > certain of that, but > SID> I'm guessing that if CF Server is assigned to the > Administ

RE: Server Restart

2005-06-13 Thread Tarantor
Thanks for answer. I have already found solution like same way. :) Problem has been solved. Thanks again. Oguz Demirkapi -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: Montag, 13. Juni 2005 23:50 To: CF-Talk Subject: RE: Server Restart Yea, just use cfexecute, some

Re: cfexecute question

2005-06-13 Thread Sergey Croitor
DW> Within the list of services, configure the CF service to be able to interact DW> with the desktop. Thanks a lot Dave. I forgot about this service option. It works now though jrunsvc console window is sticked up at task bar as well and HomeSite had yelled it cannot find its Desktop (another the

Re[2]: cfexecute question

2005-06-13 Thread Sergey Croitor
SID> Try setting the ColdFusion server service to use the Administrator SID> account or another windows user account instead of the system account SID> -- that might get the result you want. I'm not certain of that, but SID> I'm guessing that if CF Server is assigned to the Administrator SID> accou

RE: Server Restart

2005-06-13 Thread Russ
Yea, just use cfexecute, something like this -Original Message- From: Tarantor [mailto:[EMAIL PROTECTED] Sent: Monday, June 13, 2005 5:10 PM To: CF-Talk Subject: Server Restart Hi, I have a dedicated server with Win2k3 and I want to restart it. But terminal services does not wor

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: cfexecute question

2005-06-13 Thread Dave Watts
> HomeSite starts but under SYSTEM account so it is invisible on > desktop. Is there any way to start editor by cfmx server in visible > mode? Within the list of services, configure the CF service to be able to interact with the desktop. > Try setting the ColdFusion server service to use the Admi

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: Quick OT Javascript question.

2005-06-13 Thread Claude Schneegans
>>var SelOpt = document...options.selectedIndex; Not sure this will work: selectedIndex is a property of the select object, not of the options array. var SelOpt = document...selectedIndex; should work better. ___ REUSE CODE! Use custom tags; See http://www

Server Restart

2005-06-13 Thread Tarantor
Hi, I have a dedicated server with Win2k3 and I want to restart it. But terminal services does not work now. I can only reach my server tomorrow morning. But ftp and CF (CFMX7) are working and I can upload any CF code to the server. I thought that I can restart server with a simple CF c

Re: cfexecute question

2005-06-13 Thread S . Isaac Dealey
> I'm trying to open cfm file in editor by > name = "D:\Program > Files\Macromedia\HomeSite+\HomeSite+.exe" > arguments = "#URL.fullFileName#"> > > HomeSite starts but under SYSTEM account so it is > invisible on > desktop. > Is there any way to start editor by cfmx server in visible

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

Re: cfexecute question

2005-06-13 Thread Barney Boisvert
First, you shouldn't run CF as the system account. Set up an unprivileged account that is specifically for CF (or at least for just CF and the web server), and run it under that account. I don't know if Windows has a sudo-like command that lets you run programs as if you were another user, but th

Re: Quick OT Javascript question.

2005-06-13 Thread Sergey Croitor
Hello Jeff, Monday, June 13, 2005, 11:44:18 PM, you wrote: JW> 4:50 Ponderings... JW> How do I grab the CURRENTLY selected option in a select list WITHOUT knowing JW> how many options. (the options are dynamically created) JW> Say we have in select colors JW> Red JW> Green JW> Blue JW> Docu

Re: Quick OT Javascript question.

2005-06-13 Thread Claude Schneegans
>>How do I grab the CURRENTLY selected option in a select list document.myform.colors.selectedIndex (Be careful not spelling "Document" with an upper case). -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Ple

RE: Quick OT Javascript question.

2005-06-13 Thread Matt Osbun
As it happens, that's what I'm doing at the moment. this.options[this.selectedIndex].value OR this.options[this.selectedIndex].text Depending on which you want. So far it's worked in IE and FF Matt Osbun Web Developer Health Systems, International -Original Message- From: Jeff Wari

Re: Quick OT Javascript question.

2005-06-13 Thread Charlie Griefer
use the selectedIndex property. document.myform.colors.options[document.myform.colors.selectedIndex].value document.myform.colors.options[document.myform.colors.selectedIndex].text On 6/13/05, Jeff Waris <[EMAIL PROTECTED]> wrote: > 4:50 Ponderings... > > How do I grab the CURRENTLY selected opt

Re: Quick OT Javascript question.

2005-06-13 Thread Howie Hamlin
Sorry - a more complete example would be: var SelOpt = document...options.selectedIndex; then document.myform.colors[SelOpt].value HTH, Howie --- On Monday, June 13, 2005 4:44 PM, Jeff Waris scribed: --- > > 4:50 Ponderings... > > How do I grab the CURRENTLY selected option in a select list

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 v

Re: Quick OT Javascript question.

2005-06-13 Thread Howie Hamlin
document...options.selectedIndex; HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Server PrismAV - Virus scanning for ColdFusion and BlueDragon applications Find out how iMS Stacks

Re: Quick OT Javascript question.

2005-06-13 Thread Dustin Tinney
document.myform.colors.length gives you a variable that you can loop on and find the selected item. On 6/13/05, Jeff Waris <[EMAIL PROTECTED]> wrote: > 4:50 Ponderings... > > How do I grab the CURRENTLY selected option in a select list WITHOUT knowing > how many options. (the options are dynamica

Re: Quick OT Javascript question.

2005-06-13 Thread Bryan Stevenson
the property is selectedIndex I'm kinda rutsy but it's something like document.MyForm.MySelectBox.selectedIndex HTH Cheers 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: [EMAI

cfexecute question

2005-06-13 Thread Sergey Croitor
I'm trying to open cfm file in editor by HomeSite starts but under SYSTEM account so it is invisible on desktop. Is there any way to start editor by cfmx server in visible mode? It is supposed that application is smart enough to not try start editor when request is remote :) Thanks -Sergey

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

Quick OT Javascript question.

2005-06-13 Thread Jeff Waris
4:50 Ponderings... How do I grab the CURRENTLY selected option in a select list WITHOUT knowing how many options. (the options are dynamically created) Say we have in select colors Red Green Blue Document.myform.colors[1].value would be the selected one, but how would you figure that out dyna

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: Using CF Variables Returned from a SQL Query

2005-06-13 Thread Stewart, Ryan
Ah ha! I assumed I was probably missing something in your original post. Thanks for the info. I'll work on optimization now that it works. Thanks all! -Ryan -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Monday, June 13, 2005 4:29 PM To: CF-Talk Subject: Re:

Re: Using CF Variables Returned from a SQL Query

2005-06-13 Thread Bryan Stevenson
> Of course you could use > > instead of using an evaluate (I > heard > a rumor that evaluate had some performance considerations...). > > - Calvin Yepbut the point is he was simply replacing one string with another and not with the actual evaluated value of the variable named in the string

Re: Using CF Variables Returned from a SQL Query

2005-06-13 Thread Charles Polisher
Bryan Stevenson wrote: > > can you wrap a around the ## variable? > > How do you see that helping Greg? The would still be part of the > variable being outputted (i.e. the text from the field in the DB).so > you'd see the #MyVar# on the screen. Here's a repost of a solution to this probl

RE: Using CF Variables Returned from a SQL Query

2005-06-13 Thread Calvin Ward
Of course you could use instead of using an evaluate (I heard a rumor that evaluate had some performance considerations...). - Calvin -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Monday, June 13, 2005 4:19 PM To: CF-Talk Subject: Re: Using CF Variables Retu

Re: Using CF Variables Returned from a SQL Query

2005-06-13 Thread Bryan Stevenson
No No Nothat's not what I said ;-) OKthe stepped approach ;-) assumptions: -MyField is the anme of the field that conatins the CF vars -MyVar is the name of one of the CF vars contained in MyField 1) retrieve data 2) output the query 3) while outputting the query you: -EVALUATE the val

Re: Using CF Variables Returned from a SQL Query

2005-06-13 Thread Felipe Fernandes
Store your text in thd BD like this: Some text here, some more text, a #Evaluate("ColdFusion_Variable")# here, some more text, even more text. Felipe On 6/13/05, Stewart, Ryan <[EMAIL PROTECTED]> wrote: > It still isn't working. I've tried a couple of things. Before, my > query statement was

Re: Shopping Cart

2005-06-13 Thread Michael Hohnecker
My hosting company pulled Able Commerce out and now is offering Storefront. That is the reason was I was skeptical. It looks like my options are: Able Commerce Cfwebstore StoreFront seems popular but is ASP.NET Mike ~| Logw

RE: Who's using CF recommendations anyone

2005-06-13 Thread Calvin Ward
http://www.section508.gov/ -Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: Monday, June 13, 2005 2:07 PM To: CF-Talk Subject: Re: Who's using CF recommendations anyone www.basspro.com www.onemodelplace.com www.logitech.com ~Dave the disruptor~ "A criminal is a person wi

RE: Using CF Variables Returned from a SQL Query

2005-06-13 Thread Russ
Have you tried #evaluate("#big_text#")#? -Original Message- From: Stewart, Ryan [mailto:[EMAIL PROTECTED] Sent: Monday, June 13, 2005 4:04 PM To: CF-Talk Subject: RE: Using CF Variables Returned from a SQL Query It still isn't working. I've tried a couple of things. Before, my query

Re: Using CF Variables Returned from a SQL Query

2005-06-13 Thread Charlie Griefer
take the quotes off of your argument being passed to the evaluate() function. #evaluate(big_text)# On 6/13/05, Stewart, Ryan <[EMAIL PROTECTED]> wrote: > It still isn't working. I've tried a couple of things. Before, my > query statement was written as: > > > #big_text# > > > So I went thro

RE: Using CF Variables Returned from a SQL Query

2005-06-13 Thread Stewart, Ryan
It still isn't working. I've tried a couple of things. Before, my query statement was written as: #big_text# So I went through and made the changes you suggested, and my text outputted to the screen as: Some text here, some more text, a Evaluate("ColdFusion_Variable") here, some more text, e

Using a directory path as a switch statement

2005-06-13 Thread Mark Leder
Hi all, I typically use an include file for navigation elements. However I want to be able to show a tree for directories two levels deep. In this example, I'd like to show the menu below for both the "/presentations/" directory and the "/presentations/video/" directory. The example works fine

Re: HTML to PDF

2005-06-13 Thread Rick Mason
Rey, Did you try the second URL I posted? www.coldfusion.org/downloads/Merging_CF_With_Adobe_pdf1.ppt Left off the "1" when I typed it the first time. It works on this end OK. Or you can just go to www.coldfusion.org/downloads

Re: mx 6 licenses?

2005-06-13 Thread Jeff Congdon
CF7 is, in our opinion, too new to run on production. We're just now moving to 6.11 on these servers (from 5.x), after having run 6.x for a few years on our backend. I still find myself fighting, in the last 60 days, fatal errors on my 6.11 servers that that would have been disasterous if we h

RE: CF on shared hosting

2005-06-13 Thread Damien McKenna
From: Calvin Ward [mailto:[EMAIL PROTECTED] > > > - JSP should not be allowed to run on the CF server (for > > > security reasons) > > > > Beyond the rationale that the bundled version of JRun is > > unsuitable for shared hosting, > > Why is Jrun unsuitable? If they're telling you to disable

RE: UNC vs Mapped Drive

2005-06-13 Thread Mark A Kruger
Dave, I would expect the other way around - can you explain? On a windows server the UNC would sometimes involve a lookup through a sequence of services (lmhost, then wins, then DNS then broadcast) whereas the map drive "should" cache that information. They also use a differenct ipc mechanism

Re: UNC vs Mapped Drive

2005-06-13 Thread Jim McAtee
For file zipping/archiving I don't think you'd want to copy files to the local computer first. It shouldn't make a difference in terms of bandwidth and just adds another step to the process. We use UNC paths - much easier than dealing with drive mappings and troubleshooting whether or not they

RE: UNC vs Mapped Drive

2005-06-13 Thread Dave Watts
> Is there any difference in performance when accessing files > on another server between these two methods? The access would > be in terms of cffile and some zipping using a java based zip > util. I would expect that a UNC path might be infinitesimally faster, but the difference if any should

Re: Using CF Variables Returned from a SQL Query

2005-06-13 Thread Bryan Stevenson
> can you wrap a around the ## variable? How do you see that helping Greg? The would still be part of the variable being outputted (i.e. the text from the field in the DB).so you'd see the #MyVar# on the screen. Bryan ~~~

RE: CF on shared hosting

2005-06-13 Thread Calvin Ward
Why is Jrun unsuitable? - Calvin -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Monday, June 13, 2005 11:41 AM To: CF-Talk Subject: RE: CF on shared hosting > - For security, sandboxing should disable CFOBJECT/Createobject() (to > prevent Java objects being in

Re: Using CF Variables Returned from a SQL Query

2005-06-13 Thread Greg Morphis
can you wrap a around the ## variable? On 6/13/05, Stewart, Ryan <[EMAIL PROTECTED]> wrote: > I have a column in a SQL table that contains a string of text that > includes ColdFusion variables. When I query the text, I'd like the > values of the ColdFusion variables to output on the screen. >

Re: Who's using CF recommendations anyone

2005-06-13 Thread dave
www.basspro.com www.onemodelplace.com www.logitech.com ~Dave the disruptor~ "A criminal is a person with predatory instincts who has not sufficient capital to form a corporation." ~| Find out how CFTicket can increase your

Re: Using CF Variables Returned from a SQL Query

2005-06-13 Thread Bryan Stevenson
You'll need to parse out and replace every CF variable in the text (i.e. find this string "#ColdFusion_Variable#" and replace it with Evaluate("ColdFusion_Variable") ) Hope that helps.have fun ;-) Cheers - Original Message - From: "Stewart, Ryan" <[EMAIL PROTECTED]> To: "CF-Talk"

RE: Who's using CF recommendations anyone

2005-06-13 Thread Jim Davis
> -Original Message- > From: Steve Kahn [mailto:[EMAIL PROTECTED] > Sent: Monday, June 13, 2005 11:34 AM > To: CF-Talk > Subject: Who's using CF recommendations anyone > > Anyone have a good recommendation of companies using cf for their sites. I > know I saw a Dell site recently but cant

Using CF Variables Returned from a SQL Query

2005-06-13 Thread Stewart, Ryan
I have a column in a SQL table that contains a string of text that includes ColdFusion variables. When I query the text, I'd like the values of the ColdFusion variables to output on the screen. Example: I query the database and get back this: Some text here, some more text, a #ColdFusi

Who's using CF recommendations anyone

2005-06-13 Thread Robert Munn
Invitrogen has a huge e-commerce site written in CF. > Anyone have a good recommendation of companies using cf for their > sites. I know I saw a Dell site recently but cant remember the link. > Also does anyone have a good article on the benefits of cf to other > applications. > > Thanks Stev

RE: Source control PLUS Deployment control...

2005-06-13 Thread Robert Munn
If you are running CF Enterprise, you can use the Archive and Deploy system built into the CF Admin. I started using it when we went through Sarbanes-Oxley remediation. I get a ticket for a change, I make the changes, they go through production control processing, then I create an archive on my

RE: UNC vs Mapped Drive

2005-06-13 Thread Dawson, Michael
I don't think there is any difference in performance, but I do know that I would keep all operations local to the same server than have them go across the network. Depending on your task, the first thing would be to copy any remote files to the local server. Or, the last thing would be to copy lo

RE: HTML to PDF

2005-06-13 Thread Calvin Ward
Say, in one of our projects, cfdocument slices text and images in half at page breaks... Why is that? - Calvin -Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, June 13, 2005 12:19 PM To: CF-Talk Subject: HTML to PDF A few intro/demos

Re: Who's using CF recommendations anyone

2005-06-13 Thread Tony Weeg
+10 on the BOA site. its GREAT. i use it daily. tw On 6/13/05, Emmet McGovern <[EMAIL PROTECTED]> wrote: > Make sure you double check Ben's list. Last I checked some had moved on to > inferior technologies. ;) > > I find Bank of America's site is a pretty compelling argument for scale and > se

Re: Source control PLUS Deployment control...

2005-06-13 Thread Nathan Strutz
Chip, Insightful post, thanks. One thing that caught my eye is exporting to a staging server calling 'svn checkout', shouldn't you 'svn export' that instead? Checking out files also exports a flurry of .svn folders for local version tracking, but exporting gives you a clean directory structure

Re: HTML to PDF

2005-06-13 Thread Paul Hastings
Rey Bango wrote: > Thanks Damon. The thing is that we're running on CFMX 6.1 but I'm going maybe iText. http://www.lowagie.com/iText/ the demo stuff damon pointed to should apply to this lib too. ~| Logware (www.logware.us):

Re: Who's using CF recommendations anyone

2005-06-13 Thread mac jordan
On 6/13/05, Steve Kahn <[EMAIL PROTECTED]> wrote: > > Anyone have a good recommendation of companies using cf for their sites. I > know I saw a Dell site recently but cant remember the link. Also does anyone > have a good article on the benefits of cf to other applications. > we have a UK corp

Re: HTML to PDF

2005-06-13 Thread Rey Bango
Thanks Damon. The thing is that we're running on CFMX 6.1 but I'm going to bookmark these links for future use. Rey., [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: > A few intro/demos of the CFDOCUMENT feature and creating printable HTML > output in CFMX7 can be found here: > > http://www.macrome

RE: Who's using CF recommendations anyone

2005-06-13 Thread Emmet McGovern
Make sure you double check Ben's list. Last I checked some had moved on to inferior technologies. ;) I find Bank of America's site is a pretty compelling argument for scale and security. -e ~| Discover CFTicket - The leading

xml content not pass into word

2005-06-13 Thread Ida Chen
I am trying to write a function that returns xml type and generate the content in a well formated word document. Somehow the word will just return blanks with no content in it. When I highlight the doc, I see some tabs and spaces. The code is below: in cfc:

HTML to PDF

2005-06-13 Thread dcooper
A few intro/demos of the CFDOCUMENT feature and creating printable HTML output in CFMX7 can be found here: http://www.macromedia.com/software/coldfusion/demos/ Damon ~| Logware (www.logware.us): a new and convenient web-based t

UNC vs Mapped Drive

2005-06-13 Thread Scott Mulholland
Is there any difference in performance when accessing files on another server between these two methods? The access would be in terms of cffile and some zipping using a java based zip util. Thanks, Scott --- [This E-mail scanned for viruses by Declude Virus. Service provided by Accurate I

RE: Source control PLUS Deployment control...

2005-06-13 Thread James Holmes
Yep: http://svnbook.red-bean.com/en/1.1/ch02s03.html#svn-ch-2-sect-3.2 "Unlike those of many other version control systems, Subversion's revision numbers apply to entire trees, not individual files. Each revision number selects an entire tree, a particular state of the repository after some commi

Re: Source control PLUS Deployment control...

2005-06-13 Thread Massimo Foti
http://svnbook.red-bean.com/en/1.1/ch04.html Massimo Foti Tools for ColdFusion and Dreamweaver developers: http://www.massimocorner.com ~| Logware (www.logware.us):

Re: Source control PLUS Deployment control...

2005-06-13 Thread Douglas Knudsen
in SVN.so if I commit a single file in a main trunk, the whole trunk gets a new version number? CVS has tags, tag module to get what Brian is talking of. DK On 6/13/05, James Holmes <[EMAIL PROTECTED]> wrote: > > Since SubVersion applies version numbers to the whole repo, each commit > ha

RE: Source control PLUS Deployment control...

2005-06-13 Thread James Holmes
Since SubVersion applies version numbers to the whole repo, each commit has its own label (the version number). Just take note of which version you want and checkout that version. -Original Message- From: Brian Kotek [mailto:[EMAIL PROTECTED] Sent: Monday, 13 June 2005 11:48 To: CF-Talk

Re: Who's using CF recommendations anyone

2005-06-13 Thread Dave Carabetta
On 6/13/05, Steve Kahn <[EMAIL PROTECTED]> wrote: > Anyone have a good recommendation of companies using cf for their sites. I > know I saw a Dell site recently but cant remember the link. Also does anyone > have a good article on the benefits of cf to other applications. > Ben Forta keeps a ra

RE: Who's using CF recommendations anyone

2005-06-13 Thread Calvin Ward
You can try this list: http://www.forta.com/cf/using/ - Calvin -Original Message- From: Steve Kahn [mailto:[EMAIL PROTECTED] Sent: Monday, June 13, 2005 11:34 AM To: CF-Talk Subject: Who's using CF recommendations anyone Anyone have a good recommendation of companies using cf for their

Re: Who's using CF recommendations anyone

2005-06-13 Thread Howie Hamlin
http://www.forta.com/cf/using/ --- On Monday, June 13, 2005 11:34 AM, Steve Kahn scribed: --- > > Anyone have a good recommendation of companies using cf for their > sites. I know I saw a Dell site recently but cant remember the link. > Also does anyone have a good article on the benefits of cf to

RE: CF on shared hosting

2005-06-13 Thread James Holmes
I'm still waiting for the security on those SmarterLinux JSP installs (since I can still traverse my SmarterLinux server), but anything that has a manageable security policy is OK. -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Monday, 13 June 2005 11:41 To: CF-T

Re: Source control PLUS Deployment control...

2005-06-13 Thread Brian Kotek
John, are you aware of a way to "label" a tree in Subversion? In VSS you can apply a label to a whole project, and then if you need to you can deploy a specific label, or roll back to a specific label. I can't find a similar function in Subversion...I can see the history of individual files but

RE: Who's using CF recommendations anyone

2005-06-13 Thread Connie DeCinko
I noticed yesterday, the host of MAX2005, the Anaheim Convention Center, uses CFM. -Original Message- From: Steve Kahn [mailto:[EMAIL PROTECTED] Sent: Monday, June 13, 2005 8:34 AM To: CF-Talk Subject: Who's using CF recommendations anyone Anyone have a good recommendation of companies

RE: CF on shared hosting

2005-06-13 Thread Damien McKenna
> - For security, sandboxing should disable CFOBJECT/Createobject() (to > prevent Java objects being instantiated) > - JSP should not be allowed to run on the CF server (for security > reasons) Beyond the rationale that the bundled version of JRun is unsuitable for shared hosting, is there a reaso

Re: Who's using CF recommendations anyone

2005-06-13 Thread Aaron Rouse
Here is one, what it does not show is that their intranet is almost all CFM http://www.slb.com/ On 6/13/05, Steve Kahn <[EMAIL PROTECTED]> wrote: > > Anyone have a good recommendation of companies using cf for their sites. I > know I saw a Dell site recently but cant remember the link. Also d

Who's using CF recommendations anyone

2005-06-13 Thread Steve Kahn
Anyone have a good recommendation of companies using cf for their sites. I know I saw a Dell site recently but cant remember the link. Also does anyone have a good article on the benefits of cf to other applications. Thanks Steve

Re: HTML to PDF

2005-06-13 Thread Rey Bango
Hi Rick, I tried to download it but nothing came up. I also cut and pasted the url in my browser and still nothing. Perhaps its a different filename? Rey,, Rick Mason wrote: > Rey, > You may want to check out one of our CFUG presentations on that very > subject: > > www.coldfusion.org/downl

Re: HTML to PDF

2005-06-13 Thread Rey Bango
Awesome James. I'll certainly look into these options. Rey... James Holmes wrote: > Apache FOP (http://xml.apache.org/fop/) works well. There's a good > stylesheet for XHTML-> FO at > http://www-106.ibm.com/developerworks/library/x-xslfo2app/ and the whole > lot is open source. > > -Original

Re: HTML to PDF

2005-06-13 Thread Rey Bango
hehe. Thanks Calvin. Is CFDocument stable? I thought it was a bit quirky at times? Rey... Calvin Ward wrote: > Upgrade to 7.0 and you'll pay less and get a whole bunch more functionality! > :) > > -Original Message- > From: Rey Bango [mailto:[EMAIL PROTECTED] > Sent: Monday, June 13,

Re: getting cflocation to open a new browser window

2005-06-13 Thread Ben Doom
Nope, that won't work. cflocation sends a header to the browser telling it to redirect. However you might be able to use JS to do this. Unfortunately, pop-up blockers and such will foil your plan. --Ben Les Mizzell wrote: > Given the following: > > > > > > How can I get that to open in

Re: HTML to PDF

2005-06-13 Thread Rick Mason
Rey, Sorry I mistyped the URL. www.coldfusion.org/downloads/Merging_CF_With_Adobe_pdf1.ppt Rick Mason On 6/13/05, Rick Mason <[EMAIL PROTECTED]> wrote: > > Rey, > You may want to check out one of our CFUG presentation

getting cflocation to open a new browser window

2005-06-13 Thread Les Mizzell
Given the following: How can I get that to open in a new browser window? (target="_blank") -- --- Les Mizzell ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.

Re: HTML to PDF

2005-06-13 Thread Mark Madras
Hello, We use PDFLib (including PDI) which currently is running $900. It is licensed on a per cpu basis with discounts for multi-cpu environments. -Mark On 6/13/05, Rey Bango <[EMAIL PROTECTED]> wrote: > Hi guys. I need a solution that will let me build a dynamic HTML page > and output it to PD

Re: HTML to PDF

2005-06-13 Thread Rick Mason
Rey, You may want to check out one of our CFUG presentations on that very subject: www.coldfusion.org/downloads/Merging_CF_With_Adobe_pdf.ppt If you have any questions the author, Randy Brown, has his email in the presentation

RE: HTML to PDF

2005-06-13 Thread James Holmes
Apache FOP (http://xml.apache.org/fop/) works well. There's a good stylesheet for XHTML-> FO at http://www-106.ibm.com/developerworks/library/x-xslfo2app/ and the whole lot is open source. -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Sent: Monday, 13 June 2005 11:04 To: C

RE: HTML to PDF

2005-06-13 Thread Calvin Ward
Upgrade to 7.0 and you'll pay less and get a whole bunch more functionality! :) -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Sent: Monday, June 13, 2005 11:04 AM To: CF-Talk Subject: HTML to PDF Hi guys. I need a solution that will let me build a dynamic HTML page and ou

RE: HTML to PDF

2005-06-13 Thread Robertson-Ravo, Neil (RX)
It is also not very good at complex HTML. Probably loads out there.have a look for iText or some other Java based tool. -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Sent: 13 June 2005 16:04 To: CF-Talk Subject: HTML to PDF Hi guys. I need a solution that will let m

HTML to PDF

2005-06-13 Thread Rey Bango
Hi guys. I need a solution that will let me build a dynamic HTML page and output it to PDF. I know of ActivPDF but it's currently priced at $1,500 for their webgrabber product. We're currently on CFMX 6.1. Any alternatives? Rey... -- http://www.ReyBango.com

Re: Shopping Cart

2005-06-13 Thread Howie Hamlin
http://www.cfwebstore.com Highly recommended... Regards, Howie --- On Monday, June 13, 2005 2:02 AM, Michael Hohnecker scribed: --- > > I have been messing around with Ben Fortabs shopping cart in the WAC > book and was wondering what other options are available. Does anyone > have recommenda

Re: Shopping Cart

2005-06-13 Thread Adam Haskell
> but I'm skeptical about them [able commerce] What are you skeptical about? I worked with thier product in my last job. Adam H On 6/13/05, Michael Hohnecker <[EMAIL PROTECTED]> wrote: > I have been messing around with Ben Forta's shopping cart in the WAC book and > was wondering what other o

Re: dreamweaver tag updater - cfparam types

2005-06-13 Thread S . Isaac Dealey
>> Is is just my imagination, or did the tag updater for >> dreamweaver for >> CF7 add "social_security_number" and _remove_ the _much_ >> more >> frequently used "string" and "struct" types from the list >> of options >> for the type attribute? > I can't confirm since I avoided installing that ex

RE: Java jar/class locations without restart

2005-06-13 Thread kola.oyedeji
What version of cf are you using? I know its possible using the J2EE version of Jrun, not sure if you can edit any of the config files on the standalone version to achieve the same thing: http://livedocs.macromedia.com/jrun/4/Assembly_and_Deployment_Guide/deploy3. htm Kola > -Original Messa

RE: Java jar/class locations without restart

2005-06-13 Thread Gaulin, Mark
I don't think you'll find a way for jars to be picked up automatically... I'm not aware of a way to do that in "regular" java (JVM settings, etc), so unless they have special class loader stuff explicitly for jars, or unless you find some code to do it yourself, I think you're out of luck. Basical

  1   2   >