Re: keeping form data during server-side validation

2004-08-17 Thread Barney Boisvert
The simplest approach is to use a CFPARAM for every form field at the top of your form, and then use the VALUE attribute of the INPUT tag to load the value.Default everything to the empty string, so the form will be blank by default, but when you submit the form, the CFPARAM's won't fire (because

RE: CFMX affected by Win XP SP2?

2004-08-17 Thread Micha Schopman
This happens when you use the builtin webserver and not opening ports in the Windows Firewall. Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 [Todays Threads] [This Message]

Re: Best way to redirect .htm pages to .cfm?

2004-08-17 Thread Daniel Farmer
what about virtual directories?, could they be used for this purpose? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

archiving or saving database state...

2004-08-17 Thread Daniel Farmer
OK, I'm not sure what the best way to go about doing this, but I need to save the state of a hosted DB, and then use that for archiving the website purposes. The archived states needs to be accessible as if it were a live site. I've thought of different ways of going about this. Everything from

Document Version Comparison

2004-08-17 Thread Daniel Lancelot
Hi all, I am in the process of spec'ing a document management system for a client, and am wanting to implement a Red-line version comparison feature, that will compare 2 html documents (text of which is stored in the db) and generate html highlighting differences between the 2. Has anyone any

Re: Document Version Comparison

2004-08-17 Thread Mark Drew
look up some Diff programs I am sure I saw a tag for coldfusion somewhere... On Tue, 17 Aug 2004 10:39:37 +0200 (CEST), Daniel Lancelot [EMAIL PROTECTED] wrote: Hi all, I am in the process of spec'ing a document management system for a client, and am wanting to implement a Red-line version

blackstone, what would be sweet

2004-08-17 Thread dave
as i sit here doing the boring crud of adding code to form fields so useres cant enter html or scripts, so boring would be nice if cfm had the ability to auto (invoke) something of that sort built in, would be a very nice security dity :) [Todays Threads] [This Message] [Subscription]

Re: blackstone, what would be sweet

2004-08-17 Thread Mike Kelp
I really hope blackstone holds up to the hopes it has created. I wish I could get my hands on the beta when it is out and give it a beating. If the plans macromedia has been telling us come true, CF will be much more attractive to everyone and doing things like you mentioned will become easier if

RE: wwokey hole was Re: cf tree menu

2004-08-17 Thread Alistair Davidson
http://www.i-r-genius.com/rudeplaces.html some people have WAY too much time on their hands ;) _ From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: 17 August 2004 00:52 To: CF-Talk Subject: Re: wwokey hole was Re: cf tree menu Wookey Hole iscave which is amazing, ifI remember

Re: blackstone, what would be sweet

2004-08-17 Thread dave
im only up cause i cant type 4 sh*t!! i cant wait 4 it to come out (blackstone) -- looks up into my rearview mirrow iz that php back there??? haha -- Original Message -- From: Mike Kelp [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date:Tue, 17 Aug

RE: Document Version Comparison

2004-08-17 Thread Micha Schopman
You should take a look at the levenshtein distance algorithm :-) This is to create a cost path using a generated matrix of words. Simple line by line comparisons are very difficult with string comparisons because you need to find the original locations before add, edit and delete actions. Micha

cfc ?

2004-08-17 Thread dave
im ploppin cfobjects into my Application.cmf file im kinda confused if i need a seperate cfobject call for each function or just 1 per cfc? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: cfc ?

2004-08-17 Thread d.a.collie
call it once and assign the return var to a variable. then just call returnvar.functionName ie myWidget = createObject(component, myComponentPath); myWidget.init(); stockCode = myWidget.getStockCode(); I think... I'm a noob to the wonders that is CFMX being still stuck on CF5 in work

RE: slow Java call - Determining physical length of string - Pt 2

2004-08-17 Thread Craig Dudley
I had a play with this myself, and found that the pixel width retruned by the funtion is a LONG way out of the actual length of the string rendered in a browser. e.g. cfscript font_obj = createobject(java,java.awt.Font).init('Arial',1,8); font_metrics_obj =

RE: cfc ?

2004-08-17 Thread dave
might have helped if i was calling the right field name!! oops ;) -- Original Message -- From: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date:Tue, 17 Aug 2004 10:33:09 +0100 call it once and assign the return var to a variable. then just call

RE: slow Java call - Determining physical length of string - Pt 2

2004-08-17 Thread Craig Dudley
I had a play with this myself, and found that the pixel width retruned by the funtion is a LONG way out of the actual length of the string rendered in a browser. e.g. cfscript font_obj = createobject(java,java.awt.Font).init('Arial',1,8); font_metrics_obj =

Re: Document Version Comparison

2004-08-17 Thread Daniel Lancelot
Thanks I don't quite see how that would help - What I need to do is compare 2 documents, and have the differences highlighted - added text in red, deleted text struck out, etc. Whilst this may be possible (with a great deal of iteration) using this algorithm, I think I would be better served

RE: Document Version Comparison

2004-08-17 Thread Micha Schopman
I came up with the algorithm because I have some experience with this subject, I haven't found any custom tags being able to compare documents, so I had to create one for a client last week. I don't have the tag by hand, unfortunately. What you have to do is split the strings create a matrix, and

Re: Document Version Comparison

2004-08-17 Thread Aaron DC
Wow, impressive, Micha. Did you do the coding using CFML or Java? Aaron - Original Message - From: Micha Schopman To: CF-Talk Sent: Tuesday, August 17, 2004 7:52 PM Subject: RE: Document Version Comparison I came up with the algorithm because I have some experience with this

RE: Document Version Comparison

2004-08-17 Thread Micha Schopman
It was entirely CFML, .. I wanted it to post on a blog but since I don't have one yet :P .. Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 [Todays Threads] [This Message]

Re: Document Version Comparison

2004-08-17 Thread Jochem van Dieten
Daniel Lancelot wrote: I am in the process of spec'ing a document management system for a client, and am wanting to implement a Red-line version comparison feature, that will compare 2 html documents (text of which is stored in the db) and generate html highlighting differences between the 2.

Re: blackstone, what would be sweet

2004-08-17 Thread Mike Kelp
Hehe...I'm actually working on a pretty cool little project, but i'm concerned that it will be much easier after blackstone depending on how much CFC and Java improvement there is. I'm actually trying to do faxing through a webservice our company has purchased access to. To make this easier since

post to cf-talk

2004-08-17 Thread World Holiday Guide
Coldfusion JDBC connection- access denied Plesk 7, Coldfusion MX 6.1, MySql. CF Administration is working, .cfml page are identified, testpage with simple session.variable works. But cfmail has mailserver setting problems and calling a database results in access denied for database. I have a

Session swapping

2004-08-17 Thread Joost Nuijten
Hello, We have build a members area that required a login. After the login there's the main page. The main page can open several popup windows. The problems is that the popup windows *sometimes* have a different session than the opener page. The result is that customers see data from other

RE: Session swapping

2004-08-17 Thread d.a.collie
The main page can open several popup windows. The problems is that the popup windows *sometimes* have a different session than the opener page. The result is that customers see data from other customers. If it's an intranet situation, one possibility is network storage of profile space and

index of cities and states in US

2004-08-17 Thread George Abraham
Hi all, Does anyone have a link to an index of cities by state in the US, that I can possibly download and use for selections? TIA, George [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: blackstone, what would be sweet

2004-08-17 Thread Joe Rinehart
Hey Dave, CF has what you're working on built in. So users can't enter html:htmlEditFormat() So users can't enter scripts:cfqueryparam -joe - Original Message - From: dave [EMAIL PROTECTED] Date: Tue, 17 Aug 2004 04:54:16 -0400 Subject: blackstone, what would be sweet To: CF-Talk

Re: Document Version Comparison

2004-08-17 Thread Daniel Lancelot
Wow I'm impressed... When you say very CPU intensive - how intensive are we talking? I am planning on doing the comparison as a one time task, when a new version of a document is uploaded... Problem is, some of the documents may be upto a couple of hundred pages long... If you do have any

RE: Removing bad words from forum input fields

2004-08-17 Thread Mark Leder
Thanks everyone for your responses.Sorry to respond so late. 1) Tag code is below. 2) The forum is behind a membership login area.There can sometimes be flammatory banter between members.We do have the ability to human review and remove existing posts, but the client wanted immediate postings.Good

Re: index of cities and states in US

2004-08-17 Thread Mark Drew
Not directly responding, but I recon there should be a site with webmaster/developer resources such as this.. i.e. flags, countries, county lists, for the whole world... standard icons for files etc etc MD On Tue, 17 Aug 2004 07:53:07 -0400, George Abraham [EMAIL PROTECTED] wrote: Hi all, Does

RE: Document Version Comparison

2004-08-17 Thread Micha Schopman
I'll see if I can find a beta unpolished version on my system here, I have the full version at home. That should keep you busy :P Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380

RE: Document Version Comparison

2004-08-17 Thread Micha Schopman
Just looked, this test version contains too much bugs to just polish it. If you have a couple of hours, I'll be at home and can put the source here. Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679,

Re: keeping form data during server-side validation

2004-08-17 Thread Joe Rinehart
Roberto, The trick is defaulting all of your form values and then always giving your input a value= attribute. Very quick example: !--- Form defaults --- cfparam name=form.name default= !--- Form validation --- cfset errors = arrayNew(1) / cfif not len(trim(form.name)) cfset

Re: keeping form data during server-side validation

2004-08-17 Thread Joe Rinehart
Make that cfInput line: cfinput type=text name=name value=#htmlEditFormat(form.name)# required=yes message=Please enter your name. Forgot to heed my own advice... -joe On Tue, 17 Aug 2004 08:02:34 -0400, Joe Rinehart [EMAIL PROTECTED] wrote: Roberto, The trick is defaulting all of your

RE: Document Version Comparison

2004-08-17 Thread Micha Schopman
You are lucky ;) I polished it a little so it works perfectly, but the code is unpolished so have fun. If you have questions just mail, ask, msn, etc.. I'll be happy to answer them cfsetting requesttimeout=60 !--- Micha Schopman mail: [EMAIL PROTECTED] mail: [EMAIL PROTECTED] msn: [EMAIL

Re: Session swapping

2004-08-17 Thread Joost Nuijten
If it's an intranet situation, one possibility is network storage of profile space and if a few users are sitting at multiple PC's that are all logged in as 'guest01', they are all overwriting the network storage space of 'guest01' and get to see everybody's info as the cookie storage get's all

Part 1: Document Comparison

2004-08-17 Thread Micha Schopman
I had some time left and made it working from the test versions for you, the code is unpolished so if you have question just ask. I post the source in 2 parts, because cf-talk is restricted by mail body length cfsetting requesttimeout=60 !--- Micha Schopman mail: [EMAIL PROTECTED] mail:

Document Versioing : part

2004-08-17 Thread Micha Schopman
cfset maxSubCost = 0 cfloop from=2 to=#n# index=i cfset sc = s[(i-1)] cfloop from=2 to=#m# index=j cfif sc EQ t[(j-1)] cfset subCost = 0 cfelse cfset subCost = 1 /cfif cfset left = d[(i-1)][j] + 1 cfset above = d[i][(j-1)] + 1 cfset diagonal = d[(i-1)][(j-1)] + subCost

RE: Document Versioing : part

2004-08-17 Thread Micha Schopman
That was all, please let me now if it works for you :-) Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

Re: BLACKSTONE: Software Development Times Article

2004-08-17 Thread dcooper
Building Event Gateway based 1-way (push or pull) and 2-way interactive and session-aware Instant Messaging and cell phone SMS apps require only knowledge of CFML.No Java knowledge is preferred or required. Of course, the architecture is extensible, so if you need a Gateway to something and we

BLACKSTONE CFDJ Article

2004-08-17 Thread dcooper
http://www.sys-con.com/story/?storyid=45959 Regards, Damon [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: index of cities and states in US

2004-08-17 Thread Andy Ousterhout
You could use a Zip-code table as a starter.I don't know if any Zip codes cover two cities, but it would be good start. Andy -Original Message- From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 17, 2004 6:57 AM To: CF-Talk Subject: Re: index of cities and states in US Not

ColdFusion Beta Application Link

2004-08-17 Thread dcooper
Now Posted: http://www.macromedia.com/support/programs/beta.html Regards, Damon [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: keeping form data during server-side validation

2004-08-17 Thread Ewok
I usually show a list of records with normal links next to them for EDIT or DELETE and an ADD link on the page aswell. the link will pass a url variable that holds the records ID in the database table ... in this example it is url.RecordID EDIT and DELETE would pass the url variable, ADD would

RE: keeping form data during server-side validation

2004-08-17 Thread Micha Schopman
A better approach could be only storing the entire form struct. Every time you add a form field you need to update everything else also Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo

Re: keeping form data during server-side validation

2004-08-17 Thread Ewok
Your message is a reply to anothers post and is more than 100 lines of text. Unless you are a major writer, your probably adding a lot of the previous replies. Please trim your posts when replying. Thank you. I usually show a list of records with normal links next to them for EDIT or DELETE and

RE: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Matt Liotta
The article says thatyou can set up a hot folder -- any time something is saved/changes in the folder it can fire a gateway event that triggers a CFC. ... no JMS there How is that new? You can do that today without an event gateway. -Matt [Todays Threads] [This Message] [Subscription]

RE: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Matt Liotta
Of course, the architecture is extensible, so if you need a Gateway to something and we don't include it, if you have Java skills, you can build your own for CFML developers to use. That is the key point, it requires Java skills if one of the built-in gateways doesn't do what you need. What

Re: BLACKSTONE: Software Development Times Article

2004-08-17 Thread dcooper
A similar analogy might be the use vs creation of a JDBC driver: You definitely want to use one, but you probably don't want to write one. The Gateways we provide will be well suited to their tasks, well tested, highly scalable and robust.But we recognize it's a big world out there, and there

Re: BLACKSTONE: Software Development Times Article

2004-08-17 Thread dcooper
This is one of our sample Gateways provided for demonstration purposes and is provided with source code.It will likely be useful for some folks, however.When you give folks an open API, it sometimes surprising what they dream and come up with! The article says thatyou can set up a hot folder --

RE: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Matt Liotta
A similar analogy might be the use vs creation of a JDBC driver: You definitely want to use one, but you probably don't want to write one. I completely disagree. What possible reason would a CFML developer have for creating a JDBC driver? Every major database provides one, Macromedia

RE: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Samuel R. Neff
If what you need to do is integrate with SMS, IM, Sockets, or any of the built-in gateways, then the chances it does what you need are really good. Sam -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 17, 2004 10:08 AM To: CF-Talk Subject: RE:

Re: BLACKSTONE: Software Development Times Article

2004-08-17 Thread dcooper
Analogies aside, the Event Gateway makes CF natively extensible and enables capabilities previously only available to organizations with access to extensive resources and specialized expertise. The best part is you'll be able to build these apps (or add these capabilities to existing apps)

Re: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Paul Kenney
Matt, what exactly is your point... besides that the Event Gateway isn't that great of an idea?Are you just trying to be contrary? On Tue, 17 Aug 2004 10:58:42 -0400, Samuel R. Neff [EMAIL PROTECTED] wrote: If what you need to do is integrate with SMS, IM, Sockets, or any of the built-in

'(Unknown)' is not a valid path

2004-08-17 Thread Charlie Griefer
Hey all... ongoing problem.Running CF (currently MX but this occurred on 5 as well) on Windows 2k server.We are on a Novell network and I'm connecting to an Access database on a different machine than the web server.I used a UNC path to add the datasource in the CF Admin, and that went fine.

RE: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Matt Liotta
It is always nice to see marketing speak on a technical mailing list. I never realized that the tiny startup I worked for back in 1998 who had an intern connect our CFML application to a message queue would be considered an organization with extensive resources and specialized expertise. -Matt

RE: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Matt Liotta
Matt, what exactly is your point... besides that the Event Gateway isn't that great of an idea?Are you just trying to be contrary? I thought I stated my point clearly; the event gateway doesn't seem that interesting of a feature for the greater CFML community especially when compared to the

Re: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Jochem van Dieten
[EMAIL PROTECTED] [EMAIL PROTECTED] wrote: We always welcome ideas, so if you have some for Gateways, we'd love to hear them. A SNMP trap gateway. Mainly receiving, so I can forward traps collected by the SNMP gateway through the SMS gateway to my mobile phone, but sending traps might be

Re: ot: javascript question

2004-08-17 Thread Scott Brady
I'd say each select should have the same onchange call ( ) where the checkSels() function will check every select box and validate that they didn't duplicate a selection. If they did, then send them back to the one they came from (which is why you're passing the changed select box into the

Re: BLACKSTONE: Software Development Times Article

2004-08-17 Thread dcooper
I would think you guys would be excited by this new functionality and what this will mean for you and your customers.Am I missing something here? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Redundant Error Check? (was keeping form data during server-side validation)

2004-08-17 Thread Bob Haroche
Joe Rinehart wrote: !--- Form validation --- cfset errors = arrayNew(1) / cfif not len(trim(form.name)) cfset arrayAppend(errors, Please enter your name.) / /cfif [snip] cfform name=myForm action=""> cfinput type=text name=name value=#form.name# required=yes message=Please enter your name.

Re: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Adam Haskell
If the source code is provided I think it is likely that more people will try to develop their own if the situation arises where they need something different. I know sometimes people just need a solid starting block, though I agree with Matt's skepticism. Adam On Tue, 17 Aug 2004 10:26:56

RE: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Micha Schopman
If Macromedia provides us with the tools, to create such, I see no problem. Maybe it would become in like cf_eventgateway action=""> event=network/io/db/memory/etc task=cfc And the use CFC's to handle the events. So the gateway only is a observer, and triggers cfc's to take action upon which

Re: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Jochem van Dieten
Matt Liotta wrote: Of course, the architecture is extensible, so if you need a Gateway to something and we don't include it, if you have Java skills, you can build your own for CFML developers to use. That is the key point, it requires Java skills if one of the built-in gateways doesn't do

Verity Indexing Problems

2004-08-17 Thread Anne Girardeau
I'm trying to use the Verity search engine in CFMX 6.1 and I can't seem to get the system to create a collection from a query.Here's the code: cfquery name=getContent datasource=#request.siteDSN# SELECT Keywords.KeyID, Keywords.Keyword, Keywords.Title, Copy.Copy, ViewType.ViewType,

Re: BLACKSTONE: Software Development Times Article

2004-08-17 Thread dcooper
Sweet!Of course you do 2-way as well, so you could respond and DO something about it from your phone. A SNMP trap gateway. Mainly receiving, so I can forward traps collected by the SNMP gateway through the SMS gateway to my mobile phone, but sending traps might be usefull for people who want

Re: '(Unknown)' is not a valid path

2004-08-17 Thread Chris Johnston
On Tue, 17 Aug 2004 08:08:29 -0700, Charlie Griefer [EMAIL PROTECTED] wrote: [Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] '(unknown)' is not a valid path. Make sure that the path name is spelled correctly and that you are connected to the server

Re: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Don
This seems to be a very hot topic, so, I have to jump on this wagon too :) all right, in all earnestness, how about adding a feature to allow a developer to be able to distribute his/her app (eval copy, expires in 30 days etc. flexible, so he or she can set any exp. days of choice), now, would

Re: '(Unknown)' is not a valid path

2004-08-17 Thread Charlie Griefer
Chris Johnston wrote: On Tue, 17 Aug 2004 08:08:29 -0700, Charlie Griefer [EMAIL PROTECTED] wrote: [Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] '(unknown)' is not a valid path. Make sure that the path name is spelled correctly and that you are

Re: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Alexander Sherwood
At 11:36 AM 8/17/2004, you wrote: This seems to be a very hot topic, so, I have to jump on this wagon too :) all right, in all earnestness, how about adding a feature to allow a developer to be able to distribute his/her app (eval copy, expires in 30 days etc. flexible, so he or she can set any

RE: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Matt Liotta
But I think it is not unrealistic to expect the built-in gateways (plus a few extensions that will undoubtedly be released) will do the majority of what the majority of developers need. It will be a while before the average developer wants more then say IM, SMS, SNMP and maybe telnet and IRC.

RE: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Ray Champagne
That was the best acronym-ed post this list has ever seen Ray http://www.crystalvision.org At 11:40 AM 8/17/2004, you wrote: But I think it is not unrealistic to expect the built-in gateways (plus a few extensions that will undoubtedly be released) will do the majority of what the

Re: Redundant Error Check? (was keeping form data during server-side validation)

2004-08-17 Thread Bob Haroche
Joe, the first part is very clever. Thanks for that. But why have the second error check using cfform. Won't the first code snippet do the trick alone? Never mind. I had a duh moment. I so rarely use cfform I'd forgotten it provides JS client side error checking. - Regards, Bob

RE: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Alexander Sherwood
At 11:46 AM 8/17/2004, you wrote: LMAO! TTFN, Alex That was the best acronym-ed post this list has ever seen Ray http://www.crystalvision.org At 11:40 AM 8/17/2004, you wrote: But I think it is not unrealistic to expect the built-in gateways (plus a few extensions that will

Re: '(Unknown)' is not a valid path

2004-08-17 Thread Chris Johnston
On Tue, 17 Aug 2004 08:37:44 -0700, Charlie Griefer [EMAIL PROTECTED] wrote: These are actually older Access db's ('97) that are in use directly by our Engineering department.They interface with the databases directly (which is why the databases are located on their servers).Changing db's

Re: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Jochem van Dieten
[EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Sweet!Of course you do 2-way as well, so you could respond and DO something about it from your phone. Don't wake a sleeping BOFH ;-) Jochem [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and

Re: ColdFusion Beta Application Link

2004-08-17 Thread Damien McKenna
On Aug 17, 2004, at 9:50 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: http://www.macromedia.com/support/programs/beta.html I did the CF survey in Firefox 0.9.3 and it seemed like it didn't work - none of the checkmarks did anything.I'd suggest you guys write your own survey system and make

Re: ColdFusion Beta Application Link

2004-08-17 Thread Kay Smoljak
On Tue, 17 Aug 2004 11:57:54 -0400, Damien McKenna [EMAIL PROTECTED] wrote: I did the CF survey in Firefox 0.9.3 and it seemed like it didn't work - none of the checkmarks did anything.I'd suggest you guys write your own survey system and make it standards compliant so it works.Thanks. For the

Re: ColdFusion Beta Application Link

2004-08-17 Thread John Beynon
worked just fine here in firefox 0.9.3 - i did CF and DWMX jb. On Tue, 17 Aug 2004 11:57:54 -0400, Damien McKenna [EMAIL PROTECTED] wrote: On Aug 17, 2004, at 9:50 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: http://www.macromedia.com/support/programs/beta.html I did the CF survey in

Re: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Dick Applebaum
On Aug 17, 2004, at 8:08 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: We always welcome ideas, so if you have some for Gateways, we'd love to hear them.  I'm sure if there's demand, there will be enterprising 3rd parties anxious to meet the demand.  In fact, it's already happening :)

Re: ColdFusion Beta Application Link

2004-08-17 Thread Scott Brady
Worked fine for me using either FF 0.9.2 or 0.9.3 ( I can't recall if I updated this machine, and About FireFox only gives me 0.9, without a subversion.) Scott - Original Message - From: Damien McKenna Date: Tue, 17 Aug 2004 11:57:54 -0400 Subject: Re: ColdFusion Beta Application Link

Re: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Jochem van Dieten
Matt Liotta wrote: But I think it is not unrealistic to expect the built-in gateways (plus a few extensions that will undoubtedly be released) will do the majority of what the majority of developers need. It will be a while before the average developer wants more then say IM, SMS, SNMP and

RE: Document Version Comparison

2004-08-17 Thread I-Lin Kuo
Another approach would be just to run diff on the files and use CF to parse the resulting diff file and apply formatting to the originals based on the diff. --- Micha Schopman [EMAIL PROTECTED] wrote: I came up with the algorithm because I have some experience with this subject, I haven't

Re: keeping form data during server-side validation

2004-08-17 Thread Roberto Perez
At 06:36 AM 8/17/04, Barney Boisvert wrote: The simplest approach is to use a CFPARAM for every form field at the top of your form, and then use the VALUE attribute of the INPUT tag to load the value.[snipped] cfparam name=form.name default= / cfparam name=form.email default= / Thanks to all for

RE: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Matt Liotta
Wow, that company was able to do all that without event gateways. They must be an organization with extensive resources and specialized expertise. -Matt -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dick Applebaum Sent: Tuesday, August 17, 2004

Re: keeping form data during server-side validation

2004-08-17 Thread Roberto Perez
At 07:36 AM 8/17/04, Micha Schopman wrote: A better approach could be only storing the entire form struct. Every time you add a form field you need to update everything else also Thanks for the suggestion, Micha. I'm not familiar with storing form structures. Could you elaborate on that, maybe

Re: archiving or saving database state...

2004-08-17 Thread Don
Off head, it shouldn't be really complex, but depends on the complex of the subject matter here.Here's what I would do, set up a flagging column in the MOST CRITICAL table of the database, and base on the vaue of that flag system serves archieved data or current one ... OK, I'm not sure what the

Re: keeping form data during server-side validation

2004-08-17 Thread Barney Boisvert
The slash at the end is an XML self-close, which is optional in CF. I've just gotten in the habit of always using self-closes for unclosed tags (CFPARAM, CFSET, IMG, BR, etc.).The only thing to watch out for is that a self-close is actually a open and closing tag rolled into one (i.e. cfset / is

Re: BLACKSTONE: Software Development Times Article

2004-08-17 Thread dcooper
Hopefully, they won't spend too much time on a feature without mass appeal. We're definitely trying to spend our resources as wisely as possible. We've held back talking about the Event Gateway and IM/SMS feature set during the early tours, etc for a number of reasons, but you'll be hearing much

Unix datasource for MS Access

2004-08-17 Thread Burns, John D
I know that in CF 5, you could not create a datasource for MS Access files on Unix/Linux machines.Has this changed at all in MX?Are there any workarounds for making this happen?We're in a tough situation and have a project that specifically needs this functionality, but I can't find any info on if

Re: Verity Indexing Problems

2004-08-17 Thread Anne Girardeau
Well I think I may have located part of my problem and I finally have the system attempting to index.However, I'm now receiving this error: An error occurred while accessing a Verity collection. Could not find the ColdFusion registered information for [siteContent]. I'm using the same code I

Re: CF (BD) on CD with DB Success!

2004-08-17 Thread Robert Holloway
I have not been able to look at the Jetty install or the BD install with the link below.Is there another place where the instructions are located?This is something that I am interested in learning.I can think of several applications for this type of set-up. I have been trying to get this setup on

Re: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Dick Applebaum
On Aug 17, 2004, at 9:13 AM, Matt Liotta wrote: Wow, that company was able to do all that without event gateways. They must be an organization with extensive resources and specialized expertise. No, Matt, just a small very-talented staff. This was CF 3.x The person who conceived and

RE: Verity Indexing Problems

2004-08-17 Thread Dave Watts
Well I think I may have located part of my problem and I finally have the system attempting to index.However, I'm now receiving this error: An error occurred while accessing a Verity collection. Could not find the ColdFusion registered information for [siteContent]. I'm using the

Re: Unix datasource for MS Access

2004-08-17 Thread Barney Boisvert
I doubt it, as the access drivers are part of the windows OS itself. If they're running *nix, why are you using Access as the DB?There are myriad other free/inexpensive choices, expecially on *nix. cheers, barneyb On Tue, 17 Aug 2004 12:25:09 -0400, Burns, John D [EMAIL PROTECTED] wrote: I

Re: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Dick Applebaum
On Aug 17, 2004, at 9:27 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: The Blackstone feature set will without a doubt let CF developers think outside the web app box.  Web apps are great, but the world is increasingly wireless, mobile and instant.  Now and in the future, I believe the

Re: Unix datasource for MS Access

2004-08-17 Thread Dick Applebaum
John You must run the Access db on a win box. But, a company named OpenLink Software http://openlinksw.com/ provides an interface to the database on several platforms/ they provide: 1) A program that runs on the win box, acts like a db server using a mdb (Access dos not need to be running)

RE: Verity Indexing Problems

2004-08-17 Thread Dave Watts
I'm trying to use the Verity search engine in CFMX 6.1 and I can't seem to get the system to create a collection from a query.Here's the code: cfquery name=getContent datasource=#request.siteDSN# SELECT Keywords.KeyID, Keywords.Keyword, Keywords.Title, Copy.Copy, ViewType.ViewType,

Re: CF (BD) on CD with DB Success!

2004-08-17 Thread Dick Applebaum
Robert Sorry, I don't always have the BD/Jetty config running... So I move the docs to my web server root: http://67.124.145.42/CFAnywhereDocs/CFAnywhere.html Let me know if you have questions Dick On Aug 17, 2004, at 9:35 AM, Robert Holloway wrote: I have not been able to look at the

RE: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Michael Kear
I'm sorry .. have I slipped on to some IBM discussion list?All those acronyms - actually no I can't be a IBM list because many of the acronyms have more than 3 letters.Must be a unix list.How did this happen?I thought we were a ColdFusion list. No? Cheers Mike Kear Windsor, NSW, Australia AFP

  1   2   >