Re: fck editor 2.0 RC

2004-12-10 Thread Mike Kear
I'm not sure it's such a great idea to have image upload included as part of the editor. When someone uploads to my system, I want to process it myself, using my own specs - resize images, make sure they're only images and not anything else a bit more sinister, put the images where i think they

Re: 404 not found cfm page

2004-12-10 Thread Andrew Grosset
many thanks Mike, I'll try that. Andrew. > It was asked in the last two weeks but not answered > > It was answered some weeks ago however. > > If you're on a windows system, you have to get your sysadmin to add . > CFM in IIs to the list of files that the system 404 will recognise. > Then imp

Re: 404 not found cfm page

2004-12-10 Thread Mike Kear
It was asked in the last two weeks but not answered It was answered some weeks ago however. If you're on a windows system, you have to get your sysadmin to add .CFM in IIs to the list of files that the system 404 will recognise. Then implement custom 404s so it works for both .htm and html and

Re: Return id after insert

2004-12-10 Thread S . Isaac Dealey
> S. Isaac Dealey wrote: >> i'm not sure if that's thread-safe tho... I don't >> remember offhand >> what set nocount does... but the @@identity variable is >> from any table >> in any sql server session across the database or possibly >> the server, > no, that's an urban myth. it's any table with

404 not found cfm page

2004-12-10 Thread Andrew Grosset
I know this question was answered sometime during the last two months but I can't find it... I can get html pages to return my own custom 404 page if not found but how do I get .cfm pages to return a 404 instead of the CF "file not found" custom error page. I am using CFMX 6.1 and am on a shar

Re: Catch CFMX Request Timeout ?

2004-12-10 Thread Ron Gowen
on the error template that it's calling you send yourself an e-mail with the error struct in it. which includes calling template. I.P. address. In addition it only traps timeouts, and since you know the template that timedout you can inspect for poor logic/code. we are going this route because we

Re: Return id after insert

2004-12-10 Thread Paul Hastings
S. Isaac Dealey wrote: > include the entire server -- it's real easy if you just create a > trigger that inserts into a table in another db on the same server only in your db session. if what you're saying is true, no multi-user db would ever work period. > question. Although by and large I avoi

Re: Return id after insert

2004-12-10 Thread Paul Hastings
S. Isaac Dealey wrote: > i'm not sure if that's thread-safe tho... I don't remember offhand > what set nocount does... but the @@identity variable is from any table > in any sql server session across the database or possibly the server, no, that's an urban myth. it's any table with a column that h

Re: Return id after insert

2004-12-10 Thread Mike Kear
In a web environment, if you've got any pages that add anything to the database, you're in dangerous territory using @@IDENTITY. It returns the identity of the last record entered, which might or might NOT be the one you just entered. You can use SCOPE_IDENTITY() which returns the last item enter

Re: Blackstone Beta

2004-12-10 Thread Paul Hastings
Lewis Sellers wrote: > Probably... a chance to influence the development of the software when > the developers might be most apt to make the most changes? and making sure little in the released bits reach up & bite you in the nether regions. ~

Re: OT: News extension WAS (Re: Blackstone Beta)

2004-12-10 Thread Mike Chambers
On Dec 10, 2004, at 6:16 PM, Spike wrote: > > > I don't really want to be notified about all the news from Macromedia > bloggers, Well, seeing as that is all the extension does, I can see why you un-installed it. > > > If it was configurable to allow you to add feed URLs and to allow you > to >

Re: [OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread Mike Kear
There is a serious consequence to this phenomenon. Ergonomists tell us that we recognise words not by spelling the letters out in our minds, but by the shape of the words. This is why it works. Ever notice that freeway signs are all in upper and lower case? it's because of this very thing - we

Re: Blackstone Beta

2004-12-10 Thread Will Tomlinson
Download www.ironspeed.com and you'll see what I mean. ~| Special thanks to the CF Community Suite Silver Sponsor - CFDynamics http://www.cfdynamics.com Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187165 Archives:

Re: cf blog apps?

2004-12-10 Thread Jake .
>Jake, > >Nice... but the editor does not work in FireFox in the demo. > That's actually a function of the editor I'm using, not my code. FCKeditor hasn't worked in Firefox/Mozilla until the recent beta. Actually, there's a release candidate 1 that's just been released, and it's pretty solid.

Re: Blackstone Beta

2004-12-10 Thread dave
pretty ugly apps if u ask me i bet plum makes them in cfm faster not to mention several thousand dollars cheaper, oh wait, plum is free! cfmmaker makes them faster to i'd say -- Original Message -- From: Will Tomlinson <[EMAIL PROTECTED]> Reply-To:

Re: [OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread Rick Root
Will Tomlinson wrote: > I've been using TinyPNS!! I think there's herbal remedies for that! it's late, isn't it? ~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net http://www.cfhosting.net Message: http:

Re: [OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread Rick Root
Will Tomlinson wrote: > I've been using TinyPNS!! I think there's herbal remedies for that! it's late, isn't it? ~| Special thanks to the CF Community Suite Silver Sponsor - CFDynamics http://www.cfdynamics.com Message: http:

Re: [OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread Will Tomlinson
I've been using TinyPNS!! ~| Special thanks to the CF Community Suite Silver Sponsor - New Atlanta http://www.newatlanta.com Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187164 Archives: http://www.houseoffusion.com/c

Re: Return id after insert

2004-12-10 Thread Joe Rinehart
Aye, you'll want to do SCOPE_IDENTITY() 95% of the time. And only do the other 5% if you know why you're doing it that way :). @@Identity looks across all tables, so if your insert has fired a trigger that inserts into another table, you'll get the identity from the second table (that the trigger

Re: Blackstone Beta

2004-12-10 Thread Will Tomlinson
Last two posts are so true. I've been using ironspreed designer. Builds ASP.NET apps in VB.NET or C# faster that any CF code. It's ridiculous! www.ironspeed.com I'm thikingone could make millions building a program that converted CF apps to .NET apps! Will

RE: [OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread James Holmes
And thank goodness for that, or CFE wouldn't get as much attention as it does (and that would suck). You guys deserve medals. -Original Message- From: Spike [mailto:[EMAIL PROTECTED] Sent: Saturday, 11 December 2004 9:01 To: CF-Talk Subject: Re: [OT] Fck... Profane? was fck editor 2.0 RC

Re: Blackstone Beta

2004-12-10 Thread Phil Cruz
I've been meaning to look more into ASP.NET but never seem to get around to it. One mental hurdle for me is the last I looked it seemed like you had to write a bunch of code to do simple queries. Nothing as simple/elegant as . If it really took you 15 minutes, would you consider using Camtas

Re: Intercepting Flash....?

2004-12-10 Thread dave
but u'd still need access to the fla hes asking about doing it without mod'n the swf just the cfm page richard if u wanna send me the swf i can probably break it down into a fla -- Original Message -- From: Michael Haggerty <[EMAIL PROTECTED]> Reply-To: [EM

OT: News extension WAS (Re: Blackstone Beta)

2004-12-10 Thread Spike
I had the extension installed for about an hour and found it was more irritating than useful so I took it off again. I don't really want to be notified about all the news from Macromedia bloggers, just people who are dealing with CFMX, or specific individuals who I think have something interesting

Re: Blackstone Beta

2004-12-10 Thread Aaron Rouse
I was once told by a CF person turned .NET, that the simple things in CF were hard to do in .NET but the hard things in CF were easy to do in .NET I for one am like many, keep meaning to look deep into .NET but never find the time to do so. On Fri, 10 Dec 2004 20:55:15 -0400, Phil Cruz <[EMAIL P

RE: Query of Query Syntax

2004-12-10 Thread Dawson, Michael
Oops. I read your message again. You can't do anything except a SELECT statement. However, if you want to delete something from a QoQ, you need to SELECT everything _except_ what you want to keep. Kind of funky, but it works. -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTE

Re: Blackstone Beta

2004-12-10 Thread Aaron Rouse
I have several friends who could not find new CF jobs and had to switch to .NET in order to stayed employed. Interesting enough, a few of those are now having to switch to Java in order to stay employed. Seems like it is always something else that one has to learn to stay on top of things, just a

RE: Query of Query Syntax

2004-12-10 Thread Dawson, Michael
You can use a normal SQL SELECT, however, there are limitations. I can't think of anything that isn't "standard", however. M!ke -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Friday, December 10, 2004 2:42 PM To: CF-Talk Subject: Query of Query Syntax I am asking

Re: Blackstone Beta

2004-12-10 Thread Aaron Rouse
Now that is pretty slick, too bad I use IE at work, but at least installed it at home. -- Aaron Rouse http://www.happyhacker.com/ On Fri, 10 Dec 2004 16:34:34 -0500, Jeff Small <[EMAIL PROTECTED]> wrote: > Okay, this is a PERFECT time to jump in here and pimp this thing... > > http://www.markme

CFMX + MySQL Query Problem

2004-12-10 Thread Jamie Price
I'm working on a trading card site for an online card game. One of the key functions of the site will be that a user can login and click on "match" and the database will return a 'matching' trader - one that has all the cards the user needs. I've setup a test version that counts on the user wit

Re: Blackstone Beta

2004-12-10 Thread Will Tomlinson
ASP.NET is lookin' pretty strong. I've always been a CF guy, but I recognize the power of .NET now. I built a .NET Contacts app in literally 15 minutes the other night. Fully functional, DONE! I'm sorry, but Blackstone has an uphill battle if it's going to compete with .NET. MM needs to take i

Re: fck editor 2.0 RC

2004-12-10 Thread Adrocknaphobia
I mean 1.6 On Fri, 10 Dec 2004 20:09:25 -0500, Adrocknaphobia <[EMAIL PROTECTED]> wrote: > I'm using 1.5 and had to do a bit of coding to get clean XHTML and > replace the 'class' drop down with a 'tag' drop down. IE instead of > I now get . > > -Adam > > > > > On Fri, 10 Dec 2004 15:04:47

RE: Catch CFMX Request Timeout ?

2004-12-10 Thread Joe Eugene
I would put the request timeout only in modules (cfc's init()) where you expect this to happen. If you put it in the application.cfm, that is site wide and you get into problems with monitoring problematic code. Joe Eugene >-Original Message- >From: Ron Gowen [mailto:[EMAIL PROTECTED] >S

Re: fck editor 2.0 RC

2004-12-10 Thread Adrocknaphobia
I'm using 1.5 and had to do a bit of coding to get clean XHTML and replace the 'class' drop down with a 'tag' drop down. IE instead of I now get . -Adam On Fri, 10 Dec 2004 15:04:47 -0600, Deanna Schneider <[EMAIL PROTECTED]> wrote: > You know, I played with the samples a bit more, and this is

Re: [OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread Spike
Nope :) Matt Robertson wrote: > jeez don't you guys have jobs? > > :D > -- Stephen Milligan Code poet for hire http://www.spike.org.uk Do you cfeclipse? http://cfeclipse.tigris.org ~

Re: Catch CFMX Request Timeout ?

2004-12-10 Thread Ron Gowen
I am experimenting with putting the before mentioned code in the top level application.cfm, and including that appliaction.cfm in others nested below in the directory..still in testing, but it is going well so farfingers crossed :) On Fri, 10 Dec 2004 15:51:31 -0500, Douglas Knudsen <[EMAIL P

Re: Intercepting Flash....?

2004-12-10 Thread Michael Haggerty
Okay, to break this down: 1) You have a Flash movie that posts varaibles to a CF page 2) You would like to stop the movie once the variables have been posted One way you *might* be able to do this is with javascript. Depending on how the author built the movie, you may be able to issue a stop c

RE: Blackstone Beta

2004-12-10 Thread Micha Schopman
Every beta tester has the right on his own massage, lolly pops, and a week use of a limo for a week.. How;s that? ~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net http://www.cfhosting.net Message: http:/

RE: a simple query

2004-12-10 Thread Paul
Brilliant, thanks very much for taking the time to explain that. -Paul -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Friday, December 10, 2004 4:23 PM To: CF-Talk Subject: RE: a simple query I said that then IS NULL was probably too simple. What you need is a sub

Re: Intercepting Flash....?

2004-12-10 Thread Nathan Strutz
One thing I've done is something like this: Then you can read the file off your hard drive. Of course it's much better and easier to modify the flash movie :) -nathan strutz http://www.dopefly.com/ Richard Crawford wrote: > dave wrote: > >>depends on how its getting its values >>either

Re: Intercepting Flash....?

2004-12-10 Thread Richard Crawford
dave wrote: > depends on how its getting its values > either add a few frames to the movie or get the values in the cfm file and > return to flash but ur gunna have to edit the flash movie to do it > > cfdump aint gunna help at all I was afraid of that. I do not have access to the source code o

Re: SQL Query

2004-12-10 Thread Jason Smith
>After some work and some more work I have the administration side of the >cold fusion application working correctly but now when I am adding a >product I have come across a problem that appears to be with how the query >in access worked vs sql. The following is the query if anyone has any >ide

Re: fck editor 2.0 RC

2004-12-10 Thread Matt Robertson
With FCKEditor? I get all spans. Or are you using 1.6? Don't know what that one does offhand, although I've been using it for over a year :-D -- --Matt Robertson-- President, Janitor MSB Designs, Inc. mysecretbase.com ~| Spec

RE: a simple query

2004-12-10 Thread Ian Skinner
I said that then IS NULL was probably too simple. What you need is a subquery. SELECT S.System, R.Role FROM System AS S LEFT JOIN [SELECT Role, System_ID FROM Rights WHERE ID = 1]. AS R ON S.ID = R.System_ID Your original query something which was something like this, without the where clause

RE: a simple query

2004-12-10 Thread Paul
I see now why the where clause would be my problem. Unfortunately, adding a null condition didn't work... Surely there must be a way to accomplish this task in a single query? -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Friday, December 10, 2004 2:53 PM To: CF-T

Re: Return id after insert

2004-12-10 Thread Kwang Suh
It has nothing to do with threads; rather if there's a trigger on the table, the trigger might result in you getting the incorrect ID. Always use SCOPE_IDENTITY() if you're using SQL Server 2000. Never use triggers if you need to use @@IDENTITY in SQL Server 7. :) ~~

Re: [OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread Matt Robertson
jeez don't you guys have jobs? :D -- --Matt Robertson-- President, Janitor MSB Designs, Inc. mysecretbase.com ~| Special thanks to the CF Community Suite Silver Sponsor - RUWebby http://www.ruwebby.com Message: http://www.hous

Re: adding live video

2004-12-10 Thread dave
i dont think that would work but thanx -- Original Message -- From: Jochem van Dieten <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date: Fri, 10 Dec 2004 22:52:58 +0100 >dave wrote: >> dont have access to flashcomm yet >> anyone got anything good? >>

RE: Blackstone Beta

2004-12-10 Thread Dave Watts
> I implore you. NOW! But I can't tell you why. > > Pass. > > Is there a really good reason that people seem so eager to > become beta testers for someone else's product? I can see it > perhaps if support tells you it addresses a problem you're > having with the current generation. Or if you

CFMX 6.1 Unable To Locate DLL : The dynamic link library MSVCP60.dll

2004-12-10 Thread Brook Davies
After a new install of CFMX 6.1, whenever we restart the CFMX service it fails to start and we get the error below. It always starts at system startup, but will not RESTART from the control panel. Any ideas? We downloaded and installed the MSVCP60.dll file in the system32/ directory, but still

Re: Intercepting Flash....?

2004-12-10 Thread dave
depends on how its getting its values either add a few frames to the movie or get the values in the cfm file and return to flash but ur gunna have to edit the flash movie to do it cfdump aint gunna help at all -- Original Message -- From: Richard Crawford

Re: SQL Query

2004-12-10 Thread Jochem van Dieten
Jason Smith wrote: > This code works fine with a access database, since converting the entire cf > application to a live SQL database it has been the beginning of a > nightmare. I'm not real familiar with access but it seems they have some > really strange ways to check dates and whatnot. > >

Re: adding live video

2004-12-10 Thread Jochem van Dieten
dave wrote: > dont have access to flashcomm yet > anyone got anything good? > > basically all it is will be a web cam set up for a demo, thats broadcast > can be flash or whatever just not flashcomm yet Broadcast, unicast or multicast? :-) VideoLAN Client is my favourite tool when you can use m

Re: Blackstone Beta

2004-12-10 Thread Sean Corfield
On Fri, 10 Dec 2004 15:48:28 -0500, Adrocknaphobia <[EMAIL PROTECTED]> wrote: > So is everyone allowed to use the Beta in production or did you get > som sly deal? Technically you'd have to join the beta to find that out... (and then you'd be covered by the NDA so you couldn't tell anyone else wha

Re: Query of Query Syntax

2004-12-10 Thread Jochem van Dieten
Ian Skinner wrote: > > Anyway, what SQL syntax, if any, is in a CF query of a query to manipulate > and modify string content of fields? Upper() and Lower(). Jochem ~| Special thanks to the CF Community Suite Silver Sponsor -

Intercepting Flash....?

2004-12-10 Thread Richard Crawford
I hope I'm explaining this right. We have a Flash movie built by someone else outside of our department. The movie takes in a number of values and then sends them to a Cold Fusion script to send the values to the instructor via e-mail < cfmail >. The Flash movie then continues. I would like

RE: a simple query

2004-12-10 Thread Ian Skinner
I think your joins are ok, at least to my quick glance. I think your problem is your where clause. where (r.user_id = 11) This is only going to return rows where user_id equals 11, which is not NULL. This may be to simple a fix but I think it should work. where (r.user_id = 11 OR r.user_id IS

a simple query

2004-12-10 Thread Paul
Hi all, this isn't CF per se but I know several of you can answer it in your sleep. I expect this to be quite simple, but I can't seem to get my joins to behave as I expect they should. I have two simple tables, Systems and Rights. I want to return every record from Systems, and if the specif

Re: extract values from arrays dynamically

2004-12-10 Thread Charlie Griefer
well, the 2nd dimension of the first array contains the # of answers to test 1 (again, minus 1 since the first element of the 2nd dimesion is specifying the test #). so loop over the first dimension and do an arrayLen() - 1 on the second dimension. Test #i#: #arrayLen(Qs

adding live video

2004-12-10 Thread dave
dont have access to flashcomm yet anyone got anything good? basically all it is will be a web cam set up for a demo, thats broadcast can be flash or whatever just not flashcomm yet ~| Special thanks to the CF Community Suite Gol

Re: Return id after insert

2004-12-10 Thread S . Isaac Dealey
Welcome. :) I seem to be giving that one out a lot lately -- or at least, noticing people still using @@identity a lot lately. :) > Hmm. Hadn't heard that before. Thanks for the tip! > --Ben > S.Isaac Dealey wrote: >> i'm not sure if that's thread-safe tho... I don't >> remember offhand >> wh

RE: XHTML Validation via CF LIST OF TAG HELP PLEAZ

2004-12-10 Thread dave
well the guy who is writing the tool i put on other thread "my rambling for today" from yesterday that might work, will be a few days though till its done he just sent me a list of tags to include, can we all add to this list of is there 1 place that has all the current tags? blackstones too wou

Re: Blackstone Beta

2004-12-10 Thread Jeff Small
Okay, this is a PERFECT time to jump in here and pimp this thing... http://www.markme.com/macromedianews/ Dude, if you're using Firefox, you HAVE to load this extension. It's frickin unbelievable. It's single-handedly the coolest extension I've ever used. It blinks when there's updated content,

Re: Return id after insert

2004-12-10 Thread Ben Doom
Hmm. Hadn't heard that before. Thanks for the tip! --Ben S.Isaac Dealey wrote: > i'm not sure if that's thread-safe tho... I don't remember offhand > what set nocount does... but the @@identity variable is from any table > in any sql server session across the database or possibly the server, >

Re: SOT: Eclipse Q's

2004-12-10 Thread Rob
(sorry for talking about it guys...) I know they are huge, but you might want to check out some of the intro videos: http://www.rohanclan.com/projects/cfeclipse/index.cfm. Also the cfe list, while low volume, has a lot of people on it that'll help out pretty quick... >But I'm wondering what all of

Re: XHTML Validation via CF

2004-12-10 Thread Robyn
Rob wrote: >As far as validating before the page runs through the server, I am not >sure thats possible only because you can write non xhtml on the file >with cf, and it would be hard to not parse the cf (I dont think that >is what you are after anyway) > > Thanks, Rob. This isn't quite what I'

Re: Blackstone Beta

2004-12-10 Thread Aaron Rouse
Guess I could add it to my morning rotation of reading lists, too bad that would push the rotation well into lunch :/ On Fri, 10 Dec 2004 16:08:31 -0500, Alex Sherwood <[EMAIL PROTECTED]> wrote: > Aaron Rouse wrote: > > >Not only do I not have a blog, but I also never read blogs. Though > >som

Re: extract values from arrays dynamically

2004-12-10 Thread Joy Holman
I appreciate your answer and will look into using structures and CFC's, but in the meantime, the answer you gave to my question, I think is assuming that each question is a test. The situation is as below, where the first test has 2 questions and each question has three choices. Using this code

Re: Return id after insert

2004-12-10 Thread S . Isaac Dealey
i'm not sure if that's thread-safe tho... I don't remember offhand what set nocount does... but the @@identity variable is from any table in any sql server session across the database or possibly the server, not sure... SQL Server 2000 introduced a SCOPE_IDENTITY() function which _is_ thread-safe..

Re: Blackstone Beta

2004-12-10 Thread Alex Sherwood
Aaron Rouse wrote: >Not only do I not have a blog, but I also never read blogs. Though >sometimes I wish I had the free time to do so, since seems to be a >great amount of technical information on them. > Get yourself an RSS feed reader and get the feed from www.fullasagoog.com. Good collection

Re: fck editor 2.0 RC

2004-12-10 Thread Deanna Schneider
You know, I played with the samples a bit more, and this is the kind of code it generates: another test WTF? - Original Message - From: "Matt Robertson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, December 09, 2004 7:14 PM Subject: Re: fck editor 2.0 RC >> As

Re: Blackstone Beta

2004-12-10 Thread dave
hostmysite.com has a server available to run non production sites right now with a free beta account -- Original Message -- From: Adrocknaphobia <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date: Fri, 10 Dec 2004 15:48:28 -0500 >So is everyone allowed

Re: XHTML Validation via CF LIST OF TAG HELP PLEAZ

2004-12-10 Thread dave
thanks rob! -- Original Message -- From: Rob <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date: Fri, 10 Dec 2004 12:55:40 -0800 >If you'd like a parse-able (xml) version of cfml you can use the cfe >cfml xml file if you like > >http://cfeclipse.tigris.o

RE: XHTML Validation via CF

2004-12-10 Thread Paul Vernon
http://www.htmlvalidator.com This works a treat for us The bulk process lets us do an entire site in one go... We've found that it can also find bugs that you may not even know existed in your CF because it spiders your site like a search engine and reports everything it can find... It even va

SOT: Eclipse Q's

2004-12-10 Thread Donna French
Okay, I've downloaded Eclipse, installed the CFEclipse plug-in, and love it as far as editing code. But I'm wondering what all of you are using to do page layouts? I've also downloaded the CSS Editor but haven't figured out how to access it yet, maybe installed it wrong? Any other tips/tricks you

RE: XHTML Validation via CF LIST OF TAG HELP PLEAZ

2004-12-10 Thread dave
was hoping someone had a complete list alrady available be nice to have the blackstone tags in it as well -- Original Message -- From: "Jim Davis" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date: Fri, 10 Dec 2004 15:44:52 -0500 >Livedocs.macromedia.co

Re: XHTML Validation via CF LIST OF TAG HELP PLEAZ

2004-12-10 Thread Rob
If you'd like a parse-able (xml) version of cfml you can use the cfe cfml xml file if you like http://cfeclipse.tigris.org/nonav/source/browse/*checkout*/cfeclipse/src/version1/dictionary/cfml.xml?rev=1.32&content-type=text/plain It's mostly derived from live docs. On Fri, 10 Dec 2004 15:44:52 -

Re: Blackstone Beta

2004-12-10 Thread Aaron Rouse
Not only do I not have a blog, but I also never read blogs. Though sometimes I wish I had the free time to do so, since seems to be a great amount of technical information on them. On Fri, 10 Dec 2004 13:44:45 -0700, Jim McAtee <[EMAIL PROTECTED]> wrote: > I'll gladly admit to that. I don't even

Re: Blackstone Beta

2004-12-10 Thread Bryan Stevenson
That's OK Jim...I'm with you.if people wanted to hear what I have to saythey'd buy the book Geesh...people used to keep their diariers locked and hiddennow they spew their drivel online for all to see *yawn* ;-) Cheers Bryan Stevenson B.Comm. VP & Director of E-Commerce Development

Re: Catch CFMX Request Timeout ?

2004-12-10 Thread Douglas Knudsen
I'll be damned! I never thought of going that route, shite. Ok, so now, how to do this on a server wide level? DK On Fri, 10 Dec 2004 14:09:23 -0400, Ron G <[EMAIL PROTECTED]> wrote: > exception="coldfusion.runtime.RequestTimedOutException" mailto="[EMAIL > PROTECTED]" template="timeoutErr.c

Re: Blackstone Beta

2004-12-10 Thread Bryan Stevenson
Hmmm...so you have a head start on those that don't beta test.so you can help make the product better and easier to use...making your life easier in the long run...take your pick Cheers Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 2

Compuserve and session variables...

2004-12-10 Thread Jeff Waris
Has anyone run into problems with session variable retention or odd site issues regarding CompuServe? Are they running a Caching type server there?? We are having an issue where some session variables are getting messed up when someone is using dialup through CompuServe. Anyone with any experiences

Re: Blackstone Beta

2004-12-10 Thread Adrocknaphobia
So is everyone allowed to use the Beta in production or did you get som sly deal? -Adam On Fri, 10 Dec 2004 09:57:42 -0400, Michael Dinowitz <[EMAIL PROTECTED]> wrote: > I think the promise is that it's fast, stable and has new, cool features. > Fusion Authority is running 100% on Blackstone an

Re: passing many variables between pages

2004-12-10 Thread Larry Lyons
>I have a typical form where there are 10 - 15 form variables that must >be passed through multiple templates... > >I have always used the hidden input method > > >Is there a way to take all those hidden input lines and put them into >one variable and just pass that one variable from template to t

RE: XHTML Validation via CF LIST OF TAG HELP PLEAZ

2004-12-10 Thread Jim Davis
Livedocs.macromedia.com would probably be the place to go. There may be bugs in the docs, but that is the official source. Jim Davis > -Original Message- > From: dave [mailto:[EMAIL PROTECTED] > Sent: Friday, December 10, 2004 3:33 PM > To: CF-Talk > Subject: RE: XHTML Validation via CF

Re: Blackstone Beta

2004-12-10 Thread Jim McAtee
I'll gladly admit to that. I don't even have a blog, if you can believe it. - Original Message - From: "Ken Ketsdever" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, December 10, 2004 1:20 PM Subject: RE: Blackstone Beta >I think you have a fewer geek gene than t

Query of Query Syntax

2004-12-10 Thread Ian Skinner
I am asking here, before I go searching and digging in the documentation and web resources, because you all often provide a better answer faster then I can on my own. Anyway, what SQL syntax, if any, is in a CF query of a query to manipulate and modify string content of fields? I have a recor

Re: XHTML Validation via CF

2004-12-10 Thread Robyn
Ian Skinner wrote: >Should be based on the DOCTYPE of the document being validated. > > Yep, just figured that one out. Thanks... It's definitely a Friday! Thank you both for your help. Robyn ~| Special thanks to the CF Co

Re: Blackstone Beta

2004-12-10 Thread Donna French
Geek gene ...LMAO On Fri, 10 Dec 2004 12:20:13 -0800, Ken Ketsdever <[EMAIL PROTECTED]> wrote: > I think you have a fewer geek gene than the beta bunch. > > > > -Original Message- > From: Jim McAtee [mailto:[EMAIL PROTECTED] > Sent: Friday, December 10, 2004 12:17 PM > To: CF-Talk > Su

Re: XHTML Validation via CF

2004-12-10 Thread Rob
It goes off the doctype set in the page I believe, so you have to specify the correct one for the correct type This is from the w3c 1. It must conform to the constraints expressed in one of the three DTDs found in DTDs and in Appendix B. 2. The root element of the document must be html.

Re: extract values from arrays dynamically

2004-12-10 Thread Charlie Griefer
Hey Joe: First off, really been enjoying your blog postings on the OO stuff. keep it up :) Now...you've piqued my curiousity re: array of CFCs. I'm still grasping CFCs (conceptually...why/how/where/when to use them ('correctly')), so I'm curious as to how you'd use them in this setting. Each C

RE: XHTML Validation via CF

2004-12-10 Thread Ian Skinner
This is a great tool! Thanks for the tip. I just downloaded and it seems to be useful for our purposes. Any idea how to change the local validator from HTML 4.0 Transitional to XHTML 1 strict or transitional? Robyn Should be based on the DOCTYPE of the document being validated. ---

Re: [OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread Spike
I wrote a CF script to do this a while ago and found exactly that. With simpler text you can jumble the letters as much as you like, but with multi-syllable words it starts to get a lot harder to understand. I modified the script so it never moved the letters more than 2 positions from their st

Re: extract values from arrays dynamically

2004-12-10 Thread Joe Rinehart
This will get number of questions in each test (note: if you're pre MX, wrap the second arrayLen() in evaluate()). Questions in #QstnKey[i][1][1]# = #arrayLen(QstnKey[i]) - 1# I think this is a really difficult way of going about doing it, and Charlie's right, an array of structs would

RE: XHTML Validation via CF

2004-12-10 Thread Ian Skinner
Thanks, Ian! This is indeed a helpful tool, but unfortunately won't be very efficient for our purposes. We have a lot of developers and we need to be able to check pages in their apps as efficiently as possible. Saving each page in an application to a new file and then uploading it would wor

Re: Blackstone Beta

2004-12-10 Thread Lewis Sellers
Jim McAtee wrote: > I implore you. NOW! But I can't tell you why. > > Pass. > > Is there a really good reason that people seem so eager to become beta > testers for someone else's product? Probably... a chance to influence the development of the software when the developers might be most apt

RE: Blackstone Beta

2004-12-10 Thread Ken Ketsdever
I think you have a fewer geek gene than the beta bunch. -Original Message- From: Jim McAtee [mailto:[EMAIL PROTECTED] Sent: Friday, December 10, 2004 12:17 PM To: CF-Talk Subject: Re: Blackstone Beta I implore you. NOW! But I can't tell you why. Pass. Is there a really good reason that

Re: XHTML Validation via CF

2004-12-10 Thread Robyn
Ian Skinner wrote: >http://validator.w3.org/ > >I use this validator for checking my CF intranet pages. The second option >allows you to upload a file to be checked (rather then checking a file on the >internet directly). I run my page I wish to check, save it as an HTML file, >then load that

Re: Blackstone Beta

2004-12-10 Thread Jim McAtee
I implore you. NOW! But I can't tell you why. Pass. Is there a really good reason that people seem so eager to become beta testers for someone else's product? I can see it perhaps if support tells you it addresses a problem you're having with the current generation. Or if you develop product

Re: extract values from arrays dynamically

2004-12-10 Thread Charlie Griefer
in looking at your original code...arrayLen(QstnKey[1])-1 should do it (the -1 because one of the elements in the array is identifying it as "Test1") i still think the array of structs is cleaner tho :) On Fri, 10 Dec 2004 15:08:50 -0400, Joy Holman <[EMAIL PROTECTED]> wrote: > I got the answer

  1   2   3   >