Re: Looking for a CF Recipe script!

2010-07-12 Thread mac jordan
On Tue, Jul 13, 2010 at 5:37 AM, Mike Kear wrote: > The short answer, Ennio is no, I would be very surprised if there is such a > thing available, but it would make a really good learning opportunity for > you. > I wrote www.nibblous.com as such an exercise - it's now #1 on Google for some rec

Re: Looking for a CF Recipe script!

2010-07-12 Thread Brad Wood
And if you want to just go way too far-- these logic gates are actually only aware of the current flowing through their traces which is pushed by the voltage and inversely proportional to the resistance in the circuit per Ohm's law. Current is measured in amperes whereas one amp-second is a c

Re: Can CF create/open SPD database files?

2010-07-12 Thread Maureen
There are several different programs that create .spd files. Which one is client using to create these files? On Mon, Jul 12, 2010 at 9:29 PM, Mike Kear wrote: > > I have a client whose stores are uploading zipped .spd database files each > night,  and wants me to have coldfusion open these fil

Can CF create/open SPD database files?

2010-07-12 Thread Mike Kear
I have a client whose stores are uploading zipped .spd database files each night, and wants me to have coldfusion open these files, read in the data then process it all .Before i go asking him to change his systems in his stores, I want to find out if ColdFusion can open these files. Also,

Re: Looking for a CF Recipe script!

2010-07-12 Thread Mike Kear
Remember when this thread was actually a request for information?? I suspect that Ennio was looking for a modern-day equivalent of the old DOS-based MealMaster application. That dates back to the old before-internet BBS days.MealMaster would keep track of recipes, and ingredients, so you c

Re: Looking for a CF Recipe script!

2010-07-12 Thread Judah McAuley
If you want to be extremely extremely pedantic, computers only know voltage differential. Those voltage differentials are just cleverly organized into logic gates, which it is useful (currently) to represent with binary numbers and basic arithmetical operations. Judah On Mon, Jul 12, 2010 at 7:5

RE: Cfwindow

2010-07-12 Thread Andrew Scott
Michael, I think you might be right, however I haven't done it myself as I always use it with the changing of the source directly. Which is another way to keep the same window, with different content. Regards, Andrew Scott -Original Message- From: Michael Grant [mailto:mgr...@modus.bz

Re: Cfwindow

2010-07-12 Thread Michael Grant
I don't know specifically about cfwindow, since I usually open windows purely through JS. However I would think that if you kept the name parameter the same for every call it will automatically use the same window to display the page. It doesn't close the old one and open a new one per-se, it just

RE: Looking for a CF Recipe script!

2010-07-12 Thread Andrew Scott
No, if you want to be extremely pedantic about it. Computers only know 0 and 1's. So by that logic it knows zero before it knows one. -Original Message- From: Claude Schnéegans [mailto:=?ISO-8859-1?Q?Claude_Schn=E9egans >Nobody calls their thumb their "zeroth" finger. Sure, but compute

RE: Cfwindow

2010-07-12 Thread Andrew Scott
The only way to do this is by having the same name for the cfwindow, and using Javascript to create and maintain the window. For example, using the name of the cfwindow you then search for its existence via the ColdFusion Window.getWindowObject() API then if it is found close the window and reope

RE: JVM args, GC issues, performance tuning - CF9, Win2k8

2010-07-12 Thread Mark A. Kruger
Kris, As dave said, I would start with increasing minimum and maximum heap size to something more likely for a 64bit server. 512megs is inadequate. Set it to at least 1024 (both of them) and other's have mentioned additional switches. -Mark Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105 Skype

Re: JVM args, GC issues, performance tuning - CF9, Win2k8

2010-07-12 Thread Wil Genovese
There are few setting you are missing. -Xms512m This sets the min heap size to the same size as the max heap size. The JVM is designed to auto size up from the min to max as needed however this can lead to problems on occasion. So far the best minds on this subject still recommend setting

Re: JVM args, GC issues, performance tuning - CF9, Win2k8

2010-07-12 Thread Dave Watts
> It's as default as it gets. No changes from initial install at all: > > An enterprise server CF9 hf1: > > java.args=-server -Xmx512m -Dsun.io.useCanonCaches=false > -XX:MaxPermSize=192m -XX:+UseParallelGC -Xbatch > -Dcoldfusion.rootDir={application.home}/ > -Djava.security.policy={application.ho

Re: Validating an XML document to a schema using ColdFusion

2010-07-12 Thread denstar
This worked on railo: http://www.w3.org/2001/XMLSchema";> foo bar Note how I referred to the schema (it's the actual string content). :Den -- But a science is exac

Re: JVM args, GC issues, performance tuning - CF9, Win2k8

2010-07-12 Thread Kris Jones
It's as default as it gets. No changes from initial install at all: An enterprise server CF9 hf1: java.args=-server -Xmx512m -Dsun.io.useCanonCaches=false -XX:MaxPermSize=192m -XX:+UseParallelGC -Xbatch -Dcoldfusion.rootDir={application.home}/ -Djava.security.policy={application.home}/servers/cf

Re: Validating an XML document to a schema using ColdFusion

2010-07-12 Thread Ian Skinner
Small sample files that produce the error. XML Schema | http://www.w3.org/2001/XMLSchema";> | XML Test FIle | foo bar | These file, and the large files I pro

RE: ColdFusion Blogging Engines

2010-07-12 Thread Andy Matthews
Just to throw this out, but tumblr is pretty awesome. It's very stripped down, but it's UI is slick, and it's easy to use. It's hosted, which could be a problem, but it's an awesome piece of software. In addition, I've got a CFC that I wrote which can interface with tumblr. http://tumblrcfc.ria

Validating an XML document to a schema using ColdFusion

2010-07-12 Thread Ian Skinner
This is something I have never tried before. We created an XML Schema to define XML documents we expect to receive from various entities. When we receive the document, we would like to validate it before processing it. I think ColdFusion is up to this from reading the documentation, but w

Re: JVM args, GC issues, performance tuning - CF9, Win2k8

2010-07-12 Thread Wil Genovese
Please post your JVM config line from jvm.config I can most likely give you the pointers you need once I see your existing config arguments. Wil Genovese Sr. Web Application Developer/ Systems Administrator Wil Genovese Consulting wilg...@trunkful.com www.trunkful.com On Jul 12, 2010, at 4:11

JVM args, GC issues, performance tuning - CF9, Win2k8

2010-07-12 Thread Kris Jones
Hi all, We've been running into some issues while testing a new deployment. Servers are CF9 (hf1) on Win2k8 64-bit. Also seeing same problems on developer machines running Win7 64-bit, and WinXP (32-bit). We're seeing the problem on both CF9 Standard as well as CF9 Enterprise. We're having troub

Re: ColdFusion Blogging Engines

2010-07-12 Thread Casey Dougall
On Mon, Jul 12, 2010 at 12:57 PM, Jake Churchill wrote: > Yeah, I agree. I'm no designer either, but I enjoy a slick UI. I'll try > Mango and if that doesn't work out I'll probably fall back to BlogCFC. > Well, that could be going further and further by the waste side with browser plugins tha

Re: ColdFusion Blogging Engines

2010-07-12 Thread Raymond Camden
Woot - "ball back to BlogCFC" - what better recommendation can I ask for? ;) In all seriousness though - did you check RIAForge? http://www.riaforge.org/index.cfm?event=page.search#blog_catid=1 I turned up -59- results. Now many of those are plugins - but there is more than BlogCFC and Mango.

Re: ColdFusion Blogging Engines

2010-07-12 Thread Wil Genovese
BlogCFC will accept FCKEditor without problems. I've done it on my older version of BlogCFC. One caveat is that do to the way some html elements are saved I added a text edit link so I can choose to edit in WYSIWYG or text more. The reality is that you can and really should just create your

RE: ColdFusion Blogging Engines

2010-07-12 Thread Arsalan Tariq Keen
I guess WYSIWYG editor can be added ...CKEditor is free and is quite slick ;) and moreover CF supports it in its form tags :) I personally feel, we as a community on the whole should put in effort to make opensource CF applications even bettter with feature en-richment so that our CF apps are

Re: ColdFusion Blogging Engines

2010-07-12 Thread Jake Churchill
Yeah, I agree. I'm no designer either, but I enjoy a slick UI. I'll try Mango and if that doesn't work out I'll probably fall back to BlogCFC. On Mon, Jul 12, 2010 at 11:54 AM, Will Swain wrote: > > With you on the UI - but then as Ray is always saying, he's no designer. > There is no built i

RE: ColdFusion Blogging Engines

2010-07-12 Thread Will Swain
With you on the UI - but then as Ray is always saying, he's no designer. There is no built in WYSIWIG editor - but it's not to hard to add one. w -Original Message- From: Jake Churchill [mailto:reyna...@gmail.com] Sent: 12 July 2010 17:50 To: cf-talk Subject: Re: ColdFusion Blogging Eng

Re: ColdFusion Blogging Engines

2010-07-12 Thread Jake Churchill
I like having the plugin architecture that wordpress gives you (and mango has this as well). Also, the WYSIWYG editor in BlogCFC was not good. In fact, I don't remember if there even was one. I remember always writing any HTML myself. Beyond those specifics, wordpress just has a smooth UI and

RE: ColdFusion Blogging Engines

2010-07-12 Thread Will Swain
Haven't tried Mango. Have used blogCFC for a few blogs, and been happy with it. What sort of things doesn't it do that you'd want it to do, out of interest? Will -Original Message- From: Jake Churchill [mailto:reyna...@gmail.com] Sent: 12 July 2010 15:43 To: cf-talk Subject: ColdFusion

Re: ColdFusion Builder Key Commands

2010-07-12 Thread Tom Chiverton
On Monday 12 Jul 2010 14:23:36 you wrote: > AutoHotKey, which lets your script just about anything (at least for > Windows, not sure if there is something similar for the Mac?). Or Snippit's, if all you want to do is write your own templates and execute them with a shortcut. -- Tom Chiverton H

RE: Coldfusion 8 vs 9 - cfc mapping differences?

2010-07-12 Thread Andrew Scott
That's correct. So if you component is in the webpath of Mysite.com/test/something/component.cfc Then the binding will be test.something.component.method That is why there has to be something you are missing. -Original Message- From: John Pullam [mailto:jpul...@mcleansystems.com] Se

ColdFusion Blogging Engines

2010-07-12 Thread Jake Churchill
I'm looking at blog engines for a new site that I'm setting up and the server only has CF on it. I use WordPress for my own blog and I love it but I don't want to mess with PHP installation. I know it's pretty easy, I just wanted to take this opportunity to re-visit CF Blogging engines. I used

RE: (ot) CF/Verity: What is the synonym for it in PHP ?

2010-07-12 Thread Andy Matthews
Apache offers the Solr search engine, which in fact replaces Verity in ColdFusion 9. If you want more info about Solr you can check their docs, or look for some of Shannon Hicks' presentations on his website: http://www.iotashan.com/?s=solr andy -Original Message- From: cf-t...@sdsoluti

Re: (ot) Redirect of a .cfm page under PHP/Apache with .htaccess-file

2010-07-12 Thread cf-talk
Hi Michael, didn't really work on my end. But put me in the right direction. This works now for me: Redirect /shop.cfm http://www.xyz.com Uwe > RewriteRule ^shop.cfm http://www.xyz.com [R=301,L] > On Sat, Jul 10, 2010 at 6:37 PM, wrote: >> >> Hi list, >> a customer of mine ran a CF-shop >

Re: (ot) CF/Verity: What is the synonym for it in PHP ?

2010-07-12 Thread Dave Watts
> Hi list, I know > this is off topic and should > probably being asked in a PHP-list, > but does anybody know of a search engine > similar to CF AND Verity running > under PHP ? Verity isn't specific to CF. You could use it with PHP. But I think more PHP folks would use something F/OSS, like Apa

(ot) CF/Verity: What is the synonym for it in PHP ?

2010-07-12 Thread cf-talk
Hi list, I know this is off topic and should probably being asked in a PHP-list, but does anybody know of a search engine similar to CF AND Verity running under PHP ? Uwe -- Mit freundlichen Grüßen cf-t...@sdsolutions.de mailto:cf-t...@sdsolutions.de ~

Re: Coldfusion 8 vs 9 - cfc mapping differences?

2010-07-12 Thread John Pullam
Sorry, correction: It should read "cfc:BSelects.getSessions()" and BSelects is the component with getSessions the method. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Din

Re: Coldfusion 8 vs 9 - cfc mapping differences?

2010-07-12 Thread John Pullam
The ColdFusion 9 Developer's Guide says on page 650 under Using Bind Expressions: >> cfc:componentPath.functionName(parameters) >> Note: The component path cannot use a mapping. The componentPath value must >> be a dot-delimited path from the web root or the directory that contains the >> cur

Re: ColdFusion Builder Key Commands

2010-07-12 Thread Brian Kotek
I'm fairly sure that you can't create arbitrary commands within Eclipse unless you actually dig into the API and write plugin code. In other words, if it isn't in the list of available commands in the "keys" list, you can't create one. The easiest thing to do is probably to look at something like

Re: logout and back button

2010-07-12 Thread Michael Grant
I don't think this is an Adobe issue. It's an application design issue. If you design your web apps properly you will be checking for a valid authenticated session every time a request is made. Also you'll properly control caching to enable log out really means log out. On Mon, Jul 12, 2010 at 7

Re: Coldfusion 8 vs 9 - cfc mapping differences?

2010-07-12 Thread John Pullam
>John, > >I am not sure what your problem is here, when doing any work like this >ColdFusion will try to look into the root of the website. Unless you specify >a mapping or have set something up in IIS or apache. > >The code that you have shown to us will be trying to execute a cfc in the >root of

Re: logout and back button

2010-07-12 Thread Anene Isioma Wealth
i think this is a major issue that adobe needs to consider. I had this challenge a while ago and after searching the web for months, i did not see any thing tangible to use across all explorers. I had to consider learning other programming languages, just because of the "logout bud". If Adobe

Re: logout and back button

2010-07-12 Thread Tom Chiverton
On Saturday 10 Jul 2010 18:34:50 you wrote: > however after logging out, i am able to click the back button and get back > into the last page in the software. On the logout action page, redirect them to a page that does a redirection to the login page. This is commonly seen as a 'logout confirma

Re: ColdFusion Builder Key Commands

2010-07-12 Thread Dave Watts
> I am not asking how to alter key combinations for existing commands.  I > already know how to do that.  I am asking how to __create__ new commands. Take a look at this and see if it helps: http://www.vogella.de/articles/EclipseCommands/article.html Dave Watts, CTO, Fig Leaf Software http://www