Re: Any other Rich Text Editors?

2005-10-17 Thread Jerry Johnson
OK, to add to this thread, how about a cross platform (Mac, PC) cross-browser (IE, Safari, Firefox, netscape) wysiwyg editor? Doesn't need to be free, but does need to be reasonable (less than my salary for six months). I've looked back at the old threads on this topic, but things have changed

Re: Any other Rich Text Editors?

2005-10-17 Thread Jerry Johnson
I hadn't seen the KTML edit before, and am quite impressed. Looks like I have a winner. (No Safari, but everything else). Thanks a bunch! On 10/17/05, Joshua Cyr [EMAIL PROTECTED] wrote: Interakt's KTML and FCKEditor come to mind for both of those.

Re: ANNOUNCE: Management seminar - How to Build Websites Right, the First Time

2005-10-14 Thread Jerry Johnson
I, on the other hand, found it informative, and am thankful then Teratech keeps us informed about what they are doing. I passed it on to 5 people. On 10/14/05, Tim Claremont [EMAIL PROTECTED] wrote: Are you a spammer? Would you like to learn and understand why people do not like to get

Re: security suggestions?

2005-10-13 Thread Jerry Johnson
There is the transaction/filling out of information and how it is sent. Then there is the issue of how and what is stored. Then there is the issue of how and what is pulled back out and what is done with it. Then there is the issue of what system maintenance or backups replicate the data. Then

Re: Rounding...

2005-10-11 Thread Jerry Johnson
divide by 10, ceiling(), multiply by 10? On 10/11/05, J W [EMAIL PROTECTED] wrote: I have a whole number rounding problem that I am not sure how solve most efficiently. I'd like to take any number and round to the nearest whole 10. For example: 31 would equal 40 27 would equal 30 155

Re: getting rid of spaces in file names

2005-10-11 Thread Jerry Johnson
Eliminating the space is the most definite way. I think that by including the filename in doublequotes it keeps it all together. my photo.jpg;the other file.doc Not completely sure, though. On 10/11/05, Tim Laureska [EMAIL PROTECTED] wrote: Had not run been exposed to this problem before...

Re: Rounding...

2005-10-11 Thread Jerry Johnson
Or cfset roundInt =int(ceiling(initNumber/10)*10) ~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49 Message:

Re: CFHTTP

2005-10-05 Thread Jerry Johnson
Does the HTML also have CR or LF in it? or is it all on one line for each record? On 10/5/05, Matthew Blatchley [EMAIL PROTECTED] wrote: At this point I'm just trying to display it, but I will eventually be storing both the SKU and the description in two separate db fields. The file format

Re: CF Web Based Keyboard

2005-09-29 Thread Jerry Johnson
It wouldn't be ColdFusion (which is server-side), it would need to be something client-side (flash, javascript, java) You are probebly talking about an image map with javascript onclick() that insert characters into a form field. You might also need the ability to move between form fields using

Re: Open CF Wiki Code Search

2005-09-29 Thread Jerry Johnson
Isn't the DRK a thing of the past? On 9/29/05, Raymond Camden [EMAIL PROTECTED] wrote: Sounds like a great idea for a DRK app... On 9/29/05, Stephen Cassady [EMAIL PROTECTED] wrote: Does anybody have a linke to a CF driven Wiki System? I'm looking at something to jumpstart a build of a

Re: OT: hit tracking service

2005-09-23 Thread Jerry Johnson
I've had to use the hitbox service, and the clients were pretty happy with the simplicity of the code and the resulting reports. On 9/23/05, RADEMAKERS Tanguy [EMAIL PROTECTED] wrote: Hello, My company is looking for some form of hit tracking service - something that would allow us to tag

Re: Please Help! - cfstoredproc with REF Cursor as out param

2005-09-23 Thread Jerry Johnson
Does the value=#x# need to be quoted? value=#x# Just a random thought I don't know the answer to. On 9/23/05, Dave Carabetta [EMAIL PROTECTED] wrote: On 9/23/05, kugh ng [EMAIL PROTECTED] wrote: Also it works perfectly from SQL prompt - which goes to say that this SYS.ALL_ARGUMENTS would

Re: Please Help! - cfstoredproc with REF Cursor as out param

2005-09-23 Thread Jerry Johnson
Makes sense. I overlooked that it would be CF parsing that tag, so of course it doesn't care. Thanks for clearing that up. ~| Find out how CFTicket can increase your company's customer support efficiency by 100%

CF5 Java and JAI Image Manipulation

2005-09-22 Thread Jerry Johnson
. I am trying to downscale a 2272x1702 px image to 200x150 (8.8%) It will only save when I bump the JVM up to 300MB of virtual memory. Does this make sense? How can the JVM possibly need 300MB of memory to WRITE? I know I am doing something wrong. Any ideas? Jerry Johnson

Re: State/Country listings

2005-09-22 Thread Jerry Johnson
For the country codes, I always go to the ISO 3166-1 definitions, which have 2 and 3 character abbrevs, full names, and codes. (ISO 3166-1 Alpha-2, Alpha-3 and Numeric-3) The US, CA and AU states I built by hand. Want an enumerated cf list containing them? On 9/22/05, Burns, John D [EMAIL

Re: IIS/Index Server/CF and ASP

2005-09-22 Thread Jerry Johnson
I do not have any specific info for you, just a guess and direction to research. My guess is that whatever is doing the indexing (a filter of some sort) does not know that CFM files have a similar structure to .HTM files. You are probably going to need to add cfm files to the list of filetypes

Re: Can CF do this?

2005-09-14 Thread Jerry Johnson
I've done this FROM cf, but using perl to create a ps file, convert that to a jpg and return them via cfcontent. I've also used cf to write the postscript directly, and used ghostscript to convert it to a pdf and to a tif (for printing and viewing respectively) I would think there are plenty of

Re: Can CF do this?

2005-09-14 Thread Jerry Johnson
This would not give you the exact positioning of text, nor the color and fonts that will be on the final printed card. The idea is to output to the screen basically pixel exact representations of the print version of the product. The only sure way to do this is to create a single file that will

Re: Can CF do this?

2005-09-14 Thread Jerry Johnson
Yes, PDF will work, and coldfusion is getting better all the time at manipulating them. As is Java. I was just pointing out that a background image with text over the top might not give enough fidelity. Although PDFs require additional plugins installed to view it in a browser, where a .jpg does

Re: JPG-scraping... brainfart

2005-09-07 Thread Jerry Johnson
Are you on MX? If so, just use the file and path attributes of cfhttp to automatically save the file for you. Don't forget the getAsBinary attribute if needed. On 9/7/05, Matt Robertson [EMAIL PROTECTED] wrote: There's got to be a way to do this but its escaping me. If I am given a url to an

Re: visual diff to embed in CF app

2005-09-06 Thread Jerry Johnson
a visual gui version of the unix diff command that compares two files for additions/deletions/changes. It is usually represented by left/right panes each with a different file that scroll together keeping lines matched up and highlight differences between the two files by color coding each line.

Re: cfdirectory action=create errors

2005-09-05 Thread Jerry Johnson
First question - are you sure cfdirectory is enabled on your host? Second question - are you sure that the CF user has directory create rights in that folder? Third question - are you sure all the characters in the path are valid for unix filesystem paths? On 9/5/05, Bram Plessers [EMAIL

Re: cfdirectory action=create errors

2005-09-05 Thread Jerry Johnson
of years ago) on the same hosting servers 2/ I've set them to 777 3/ example path returned from the error message: '/usr/local/psa/home/vhosts/mysite.com/httpdocs/backend/portfolio/newfolder' On 9/5/05, Jerry Johnson [EMAIL PROTECTED] wrote: First question - are you sure cfdirectory

Re: Verity errors with punctuation

2005-09-01 Thread Jerry Johnson
Its been that way for years. 1. This, that, and the other thing I believe by default verity substitutes an OR operator for each comma and space. Therefore, your string has is really This OR that OR AND the other thing So there is a blank operand in there (between the implied OR and the stated

Re: producing large PDF documents

2005-09-01 Thread Jerry Johnson
Also: What are they using for a press? (Xerox Docutech, Webpress, etc) What are they using for a rip? Can they accept a variable PDF file and data (like Xerox VIP - basically Word mailmerge on steroids) On 9/1/05, Matthew Small [EMAIL PROTECTED] wrote: I have some experience in this area, so

Re: producing large PDF documents

2005-09-01 Thread Jerry Johnson
will see that it probably won't work unless you have a HECK of a setup. 2,000 4 page PDFs would seem like a much more reasonable idea. On 9/1/05, Rick Root [EMAIL PROTECTED] wrote: Jerry Johnson wrote: What are they using for a press? (Xerox Docutech, Webpress, etc) What are they using

Re: producing large PDF documents

2005-09-01 Thread Jerry Johnson
If it is just formatted text with decent print size and margins, it is more like 2-5KB per page. 5KBx1=5KB or 50MB which is potentially doable. Heavy text, graphics or intense formatting with included fonts can greatly increase these numbers. On 9/1/05, Matthew Small [EMAIL PROTECTED]

Re: Printing with Coldfusion

2005-08-31 Thread Jerry Johnson
Do you actually need to print it using a print driver, or just place the file in a queue folder on the printer's RIP? This is how I've typically handled such requests. On 8/31/05, Rick Root [EMAIL PROTECTED] wrote: I have a need for a coldfusion application to generate a document (possibly

Re: [SOT] Finding which files in a site aren't used anymore

2005-08-31 Thread Jerry Johnson
Run a web zipper app from the index page (I like webZip), and have it build a log of accessed/linked files. This won't tell you which Cold Fusion templates were used to build each page, but should get you a list of pages and linked files. On 8/31/05, S. Isaac Dealey [EMAIL PROTECTED] wrote:

Re: Lowering spam profile of CF generated emails

2005-08-24 Thread Jerry Johnson
Not definitive, and some may not be necessary, but here is what I try to do: Dont put your order or receipt in the subject. Dont put opt out or remove yourself in the body. Dont have any swear words. Or Viagra. Or enlargement. Have a good valid word to nonsense word (not found in a dictionary)

Re: IIS 6 VS Apache

2005-08-24 Thread Jerry Johnson
Do you have examples of products to handle url rewriting in IIS? On 8/24/05, Robert Munn [EMAIL PROTECTED] wrote: IIS is a LOT easier to deal with. Apache is still more flexible, IMHO, although commercial products are available to add some of the coolest Apache features (URL re-writing, URL

Question on cfinput regex validation

2005-08-17 Thread Jerry Johnson
Calling the ninjas of regex...here is a message on the WD list that I couldn't answer. How do you say does not match? (I don't think you can. I think this will need to be a javascript check before submission. Would you agree?) Message: What i am trying to do is use cold fusions built in form

Re: RegEx in a Find/Replace

2005-08-16 Thread Jerry Johnson
Is it either Dreamweaver or Homesite? They use the same engine, don't they? On 8/16/05, Ben Doom [EMAIL PROTECTED] wrote: I'd like to use the regex features of my IDE (don't ask which one) to transform the list to look like Well, we kinda need to knkow -- or at least know which regex

Re: cfhttp does not post zip files

2005-08-12 Thread Jerry Johnson
Ah. My bad. That attribute was added as of 6.1 Ok, back to the beginning. What did you specify in the cfhttp line as far as file, value, type and name params? On 8/11/05, Jonathon Adam [EMAIL PROTECTED] wrote: CF 5 ~| Logware

Re: cfhttp does not post zip files

2005-08-11 Thread Jerry Johnson
you might need to specify the multipart attribute, to send the data as a multipart/form-date content-type. On 8/11/05, Jonathon Adam [EMAIL PROTECTED] wrote: I am trying to post a .zip file to a server outside our firewall/environment, but the CFHTTP with POST doesn't post the file. The code

Re: Organizational Chart

2005-08-11 Thread Jerry Johnson
Do you have examples/visuals of what you are looking for? What output format? (html, ascii text, svg, gif/jpg, etc) Browser based? Particular requirements? Dynamic or cached? (How fast does it need to be?) ~| Logware

Re: Organizational Chart

2005-08-11 Thread Jerry Johnson
-Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED] Sent: Thursday, August 11, 2005 3:59 PM To: CF-Talk Subject: Re: Organizational Chart Do you have examples/visuals of what you are looking for? What output format? (html, ascii text, svg, gif/jpg, etc) Browser based

Re: cfhttp does not post zip files

2005-08-11 Thread Jerry Johnson
If you look at the documentation for the cfhttp tag, it has a multipart attribute (not enctype, not mimetype). cfhttp ... multipart=yes That should get you there. On 8/11/05, Jonathon Adam [EMAIL PROTECTED] wrote: Thanks for the reply. If you are talking about something like this it didnt

Re: cfhttp does not post zip files

2005-08-11 Thread Jerry Johnson
I failed to ask the first, most obvious question. What version of CF? On 8/11/05, Jonathon Adam [EMAIL PROTECTED] wrote: Great info Jerry, thank you. I applied the extra attribute (which I dont see in the tag library) and received a different message:

Re: Organizational Chart

2005-08-11 Thread Jerry Johnson
I was doing it as far back as 1998, so it has been possible for a while. IIRC, it is an option when creating a new project (store as file or in database.) Of course, it might have been an option during install. I no longer have visio in my environment, so can't test. On 8/11/05, Brian Polackoff

Re: Fetching a website?

2005-08-10 Thread Jerry Johnson
Can't you just us the cfhttp file and path attributes to save the binary/included files directly to disk? On 8/10/05, Ian Skinner [EMAIL PROTECTED] wrote: As many have said, it can be done. But as many have also said, it's not something CF is going to be good at, so I doubt you are going to

Re: Fetching a website?

2005-08-10 Thread Jerry Johnson
I should have stated that, rather than asking. You can just use the cfhttp file and path attributes to save a binary/include file directly to disk. cfhttp url=http://www.lawyersweeklyusa.com/images/lwlogo.gif; path=C:\ file=image.gif/cfhttp Works like a charm. Lovely for dling PDFs from state

Re: stupid simple piece of javascript code

2005-08-10 Thread Jerry Johnson
the semicolon after the )) on the if line. On 8/10/05, SStewart [EMAIL PROTECTED] wrote: Can somebody debug this? The Netscape javascript console says there's a syntax error at else function checkEmail() { if ((theForm.send_email.value !=

Re: Deployment of Multiple Websites with almost identical Info

2005-08-08 Thread Jerry Johnson
I have set this up occasionally where I have a default content file for each page, and the ability to override that content with a local/specific version of a file. The behavior then becomes show the local version if it exists, or default to the generic if not. On 8/8/05, Ewok [EMAIL PROTECTED]

Re: Need help with XML to JavaScript

2005-08-08 Thread Jerry Johnson
Also, there is some great code in Konfabulator widgets (javascript based) that do this. On 8/8/05, Larry Lyons [EMAIL PROTECTED] wrote: Hello, Been a while since I've asked for help so hopefully this plea works! Basically, I want to provide data from my database to other websites in

Re: Expert ColdFusion Developer, looking for telecommuting projects

2005-08-08 Thread Jerry Johnson
It doesn't say up to and including, so it could be argued it means every version before Merrimack. And by including Merrimack in the name, it shows s/he to be up on the next release info. On 8/8/05, Aaron Rouse [EMAIL PROTECTED] wrote: Perhaps it is in Beta or Alpha or RC, of course talking

Re: What would be the easiest way to write this query?

2005-08-05 Thread Jerry Johnson
Does this work on SQL Server 2000? On 8/5/05, Jochem van Dieten [EMAIL PROTECTED] wrote: The following query will return all overlapping promotions: SELECT * FROM table WHERE (#FORM.PStartDate#, #FORM.PEndDate#) OVERLAPS (promotionEnd, promotionStart)

Re: What would be the easiest way to write this query?

2005-08-05 Thread Jerry Johnson
I'm sure that is on their list already - right after making Windows secure and IE standards compliant. On 8/5/05, Jochem van Dieten [EMAIL PROTECTED] wrote: Jerry Johnson wrote: Does this work on SQL Server 2000? I don't know. Try it and if it doesn't ask Microsoft to implement feature

Re: Concatenating PDFs

2005-08-02 Thread Jerry Johnson
Ghostscript can, I think. Price: Free. On 8/2/05, Simon Smith [EMAIL PROTECTED] wrote: Does anyone know if its possible to concatenate 2 or more PDFs in MX? I dont have the original data the PDF was created from, just the PDF.

Re: Prototyping

2005-08-01 Thread Jerry Johnson
/content is finalized. This looks like I am holding back and only giving them what they are ready for, but in reality it is as fast as I can get the css/design done and tagged. Jerry Johnson On 8/1/05, Damien McKenna [EMAIL PROTECTED] wrote: I'm curious as to what tool other CF'rs use to prototype

Re: OT: Data driven local maps

2005-08-01 Thread Jerry Johnson
maps.google.com? On 8/1/05, Jim McAtee [EMAIL PROTECTED] wrote: We're looking for some type of mapping software that could plot locations on local street maps. Things like restaurants in a city neighborhood, or lodging properties in a ski resort. The maps could be Flash (with mouseovers

Re: Dateformat question

2005-07-27 Thread Jerry Johnson
Because MM means Month with leading zero as evidenced by your use of it earlier in the command. Jerry Johnson On 7/27/05, Charles Heizer [EMAIL PROTECTED] wrote: Hello, Can someone please tell me why the time is not correct if I use DateFormat; for some reason it's off by 47 minutes

Re: Other support lists for CF Developers

2005-07-26 Thread Jerry Johnson
I religiously read http://www.css-discuss.org/mailman/listinfo/css-d On 7/26/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hey folks, Anyone know of good support mailing lists for: SQL Javascript CSS ~| Logware

Re: Working with OPC (Other People's Code)

2005-07-22 Thread Jerry Johnson
AT your sister's wedding? I kind see why that might be embarrassing. Did the wedding photog get any pictures? On 7/22/05, Ray Champagne [EMAIL PROTECTED] wrote: Looking back at some of my code brings back the same type of embarrassment that I felt after sleeping with the fat ugly chick at my

Re: Working with OPC (Other People's Code)

2005-07-22 Thread Jerry Johnson
I slaved for a good five hours one day in Foxpro, and then proudly showed off my code to a coworker. She said And how does that differ from properCase()? (It wasn't as good? It ran slower?) On 7/22/05, Rick Root [EMAIL PROTECTED] wrote: I remember once writing a huge long custom tag that

(CF) SQL Question

2005-07-18 Thread Jerry Johnson
with the max sequence number for each itemID? Definitely Monday, Jerry Johnson ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project

Re: (CF) SQL Question

2005-07-18 Thread Jerry Johnson
Thanks. Duh. I knew it had to be easier than I was making it. I got it working with an inner join on a subquery, but did not think it was the easiest solution. Thanks, Jerry Johnson On 7/18/05, James Holmes [EMAIL PROTECTED] wrote: I think this would work in Oracle at least and probably

Re: CF and Zips

2005-07-13 Thread Jerry Johnson
I remember a jsp example that did this back when I was learning jsp. On 7/13/05, Massimo Foti [EMAIL PROTECTED] wrote: Anybody know of a free cf utility (or asp or php for that matter) that will create a zip file of directories? http://www.olimpo.ch/tmt/cfc/tmt_zip/ There is also a UDF

Re: Not to start a flame war.....

2005-07-13 Thread Jerry Johnson
Not to pour gas on a flame war, but... Notice the extension on the following page. Think it is a completely objective article? Also note their business is selling .net web modules. Just a thought. On 7/13/05, Jacob [EMAIL PROTECTED] wrote:

Re: Not to start a flame war.....

2005-07-13 Thread Jerry Johnson
To try to contribute something to the discussion, I have a few thoughts. Each of these application servers is a tool. Each can do pretty much the same thing as the others, although the syntax and methodologies differ. All can read from a db. All can create PDF files. All can index and search

Re: producing a .txt-file

2005-07-12 Thread Jerry Johnson
If you NEED to do this, change the web server to have cold fusion handle .txt files, and put the formatting in the application.cfm and onRequestEnd.cfm files. On 7/12/05, Dave Watts [EMAIL PROTECTED] wrote: Hi list, what do I have to do to produce a .txt-file with cffile and having the

Re: Creating a breadcrumb trail

2005-07-11 Thread Jerry Johnson
Do you mean a true breadcrumb trail (a clicktrace, or where the user has been) or do you mean a page heirarchy, or a drilldown path? (page heirarchy) Site: Section: Subsection: Page (drilldown path) Home: Books: Family Law: Probate and Family Court Handbook (clicktrace) Home: Top Stories: Home:

Re: Simple Directory Listing

2005-07-11 Thread Jerry Johnson
default= cfhttp url=#folderURL# cfoutput#cfhttp.fileContent#/cfoutput Jerry Johnson On 7/11/05, Claremont, Timothy [EMAIL PROTECTED] wrote: I want to place a button on my form that brings up a directory listing. I am currently using the following method to merely open the directory on the end

Re: Simple Directory Listing

2005-07-11 Thread Jerry Johnson
My bet as well would be that the cold fusion service does not have access to those folders. If you give the user that the cf service uses the proper rights, you should be golden. You might also want to look into ldap for a longer-term solution. On 7/11/05, Claremont, Timothy [EMAIL PROTECTED]

Re: producing a .tif-file

2005-07-07 Thread Jerry Johnson
And if not, you can use Ghostscript (cfexecute call from cold fusion) to convert your PDF or .ps files to .tif files if you truly need .tif files. And ghostscript is free. On 7/7/05, SStewart [EMAIL PROTECTED] wrote: You should also be able to feed PDF's or Postscript (.ps) files to the fax

Re: producing a .tif-file

2005-07-07 Thread Jerry Johnson
But it is lossless compression, as opposed to the lossy compression in jpgs. It just uses RLE, doesn't it? On 7/7/05, Claude Schneegans [EMAIL PROTECTED] wrote: TIFs are mainly uncompressed and I'm curious why you can't use another format considering the minimal quality you need to send a

Re: Homesite+ Flippin out

2005-06-16 Thread Jerry Johnson
Try turning off the title field in the file window. This can really slow down the file listing pane. On 6/16/05, Ray Champagne [EMAIL PROTECTED] wrote: When did you update? I did yesterday, and today everything I am working with seems slow as death. Homesite is now acting like DWMX did before

Re: Antiques and artefacts

2005-06-14 Thread Jerry Johnson
I would also look into SOUNDEX, which allows matches between words that sound alike. Jerry Johnson ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners

Re: Update Dilemma

2005-06-08 Thread Jerry Johnson
Your cfif switch is trying to compare: var=NULL Valid SQL syntax var=1 var='1' var IS NULL I think. Jerry Johnson On 6/8/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I'm a complete newbie at Coldfusion, and have a pretty basic question. I'm trying to get an update page working

Query of Query max column length

2005-05-23 Thread Jerry Johnson
I'm running a QofQ on a cold fusion query, and it is cutting off a column at 11875 chars. Is this expected behavior? Is there anything I can do to stop this behavior? Thanks for any hint, Jerry Johnson Web Developer ~| Discover

Re: Include Question (cancel)

2005-05-23 Thread Jerry Johnson
Blasphemy! Repent you filthy heathen. There can never be too much Dew! On 5/23/05, Eric J. Hoffman [EMAIL PROTECTED] wrote: Too much frickin Dew today. Sorry. ~| Logware (www.logware.us): a new and convenient web-based time

Re: Verity and Security

2005-05-20 Thread Jerry Johnson
You might try CONTAINS on a field you know is standard and populated and where you know what the data looks like (to get the syntax down) like TITLE On 5/20/05, Raymond Camden [EMAIL PROTECTED] wrote: Did you try CONTAINS as well?

Re: Verity and Security

2005-05-19 Thread Jerry Johnson
I haven't been following this thread, so I may be repeating something already said, but... Don't you need to put the groupname in double quotes (make it a phrase) if it contains spaces or reserved words for verity queries? so... CONTAINS #session.groupname# Jerry Johnson Web Developer On 5/19

Re: Verity and Security

2005-05-19 Thread Jerry Johnson
Remember to escape the double quotes (put two doublequotes together) within a doulequoted string ... #HTMLEditFormat(Form.Criteria)# and CF_CUSTOM2 CONTAINS #session.groupname# Jerry Johnson Web Developer On 5/19/05, Ian Vaughan [EMAIL PROTECTED] wrote: Jerry Thanks for the tip, just tried

Re: Verity and Security

2005-05-19 Thread Jerry Johnson
: (#subject#) IN (HL1,HL2) or (H1) CONTAINS (#searchString#) But I truthfully don't remember why. Jerry Johnson Web Developer ~| Find out how CFTicket can increase your company's customer support efficiency by 100% http

Re: Man, this is so OT...

2005-05-13 Thread Jerry Johnson
black in winter, or while working in the garage, white in summer Jerry Johnson ~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Jerry Johnson
If you want to hear some complaining about lack of love from MM, subscribe to a Director list. Woe is them! On 5/3/05, Ben Forta [EMAIL PROTECTED] wrote: Dedicated DW users feel that DW does not get enough banner space, just like dedicated CF users feel that CF does not get enough banner

RE: Where are all the mid-level CF developers?

2005-04-29 Thread Jerry Johnson
$45-50K is right for a mid-level CF developer in the woods of Eastern Connecticut. I must assume that the cost of living is a little higher in NYC. Jerry Johnson Web Developer Dolan Media Company -Original Message- From: Daniel Brown [mailto:[EMAIL PROTECTED] Sent: Friday, April 29

RE: CFMX interrupting javascript - MORE

2005-04-28 Thread jerry johnson
Do you have virus protection running on the machine you are writing to? It might be that the Javascript is triggering a longer virus scan than the version without it. Jerry Johnson Web Developer Dolan Media Company -Original Message- From: Jacob [mailto:[EMAIL PROTECTED] Sent

RE: CFMX interrupting javascript - MORE

2005-04-28 Thread jerry johnson
One more thought. Could the file write be hampered by some debug you turned on to test? Is the Application file the same? Or is that file you are writing to being accessed during the write? Have you tried to write to another filename/folder/drive? Jerry Johnson Web Developer Dolan Media Company

RE: UPDATE - CFMX interrupting javascript

2005-04-28 Thread jerry johnson
IDEA! IDEA! Do you have the MS indexServer running on this box? Is the file getting indexed between writes? Jerry Johnson Web Developer Dolan Media Company -Original Message- From: Jacob [mailto:[EMAIL PROTECTED] Sent: Thursday, April 28, 2005 2:20 PM To: CF-Talk Subject: RE: UPDATE

RE: UPDATE - CFMX interrupting javascript

2005-04-28 Thread jerry johnson
Does it take longer for an HTM file that does not yet exist? What about one that exists, but has never been viewed through IIS (some kind of file-handle being held open?) Jerry Johnson Web Developer Dolan Media Company -Original Message- From: Jacob [mailto:[EMAIL PROTECTED] Sent

RE: CFFILE slow. Is there a good replacement?

2005-04-14 Thread jerry johnson
Or you invoke the perl script through http. Cfhttp works wonderfully for this. Jerry Johnson Web Developer Dolan Media Company -Original Message- From: Ben Mueller [mailto:[EMAIL PROTECTED] Sent: Thursday, April 14, 2005 11:52 AM To: CF-Talk Subject: Re: CFFILE slow. Is there a good

RE: What's your setup for multiple developers

2005-04-14 Thread jerry johnson
Is it a Linux-based angry badger? Jerry Johnson Web Developer Dolan Media Company On 4/14/05, Kevin Graeme [EMAIL PROTECTED] wrote: Guarded by an angry badger. .in the bottom of a locked filing cabinet... ~| Discover

RE: OT: Using Spotlight on Tiger OS as an indexing tool

2005-04-14 Thread jerry johnson
http://images.apple.com/macosx/pdf/MacOSX_Spotlight_TB.pdf From what I've gathered, you should be able to hit it 3 ways. Through Applescript, Unix command line or the SDK. Jerry Johnson Web Developer Dolan Media Company -Original Message- From: Rob [mailto:[EMAIL PROTECTED] Sent

RE: CFFILE slow. Is there a good replacement?

2005-04-13 Thread jerry johnson
with the progress of the batfile. Jerry Johnson Web Developer Dolan Media Company -Original Message- From: Ben Mueller [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13, 2005 4:20 PM To: CF-Talk Subject: CFFILE slow. Is there a good replacement? Our CFMX application needs to do a lot

RE: CrystalTech does not like negative comments!

2005-04-01 Thread jerry johnson
I've only got 8 sites there (for about a year), but I have had absolutely no problems to date. (Small mostly static sites.) Jerry Johnson Web Developer Dolan Media Company ~| Logware (www.logware.us): a new and convenient web

RE: CrystalTech does not like negative comments!

2005-03-29 Thread jerry johnson
At least the camp is named for you. X-Ray! (But what does the X stand for? Export? Execute? Is it just above R-Ray and below XXX-Ray based on sexual content?) Jerry Johnson Web Developer Dolan Media Company -Original Message- From: Connie DeCinko [mailto:[EMAIL PROTECTED] Camp X-Ray

RE: I Hate Macromedia

2005-03-17 Thread Jerry Johnson
Wrong. They can come in if the receive a report about you or have credible evidence. No warning, no appeal. Evidence such as the email you just sent, BTW. Jerry Johnson Web Developer Dolan Media Company [EMAIL PROTECTED] 03/17/05 12:32PM As for the BSA, they notify you before they begin

RE: I Hate Macromedia

2005-03-17 Thread Jerry Johnson
, you are violating the EULA) Jerry Johnson Web Developer Dolan Media Company [EMAIL PROTECTED] 03/17/05 02:57PM Of course, I'm not emailing from lawyers weekly and I have no legal training. I just know how to do a lot of research. Oh, and I did stay at a Holiday Inn Express last night

Re: E-commerce - Make them register or don't make them register

2005-03-14 Thread Jerry Johnson
Not all websites are to make sales. Not all websites should or do have shopping carts. Some websites are for building marketing lists. Jerry Johnson Web Developer Dolan Media Company [EMAIL PROTECTED] 03/14/05 05:01PM To me, the purpose of a web site is not to build a marketing list. Its

RE: How to Browse and Choose Directory...

2005-03-10 Thread Jerry Johnson
Cold fusion still has nothing to do with this. You are confusing client side Java and server side Java. They run on completely separate machines and have local file access to completely separate harddrives Jerry Johnson Web Developer Dolan Media Company [EMAIL PROTECTED] 03/10/05 10:46AM

RE: How to Browse and Choose Directory...

2005-03-10 Thread Jerry Johnson
cffile can't do this either. cffile only works on the SERVER machine. It can only read and write files on the SERVER machine. cffile cannot access, read or write or delete files on the CLIENT machine. Jerry Johnson Web Developer Dolan Media Company [EMAIL PROTECTED] 03/10/05 11:14AM I'm

RE: How to Browse and Choose Directory...

2005-03-09 Thread Jerry Johnson
I think you may be intermingling client and server functions. Is the folder in question on a network and accessible from a .cfm page using cfdirectory? or Is the folder in question on the client's machine, remote from the server? Jerry Johnson Web Developer Dolan Media Company [EMAIL

RE: How to Browse and Choose Directory...

2005-03-09 Thread Jerry Johnson
. Does this make sense? Jerry Johnson Web Developer Dolan Media Company [EMAIL PROTECTED] 03/09/05 03:26PM It will be a folder somewhere on the client's machine...I have no access to it. Just figured there was a way for a user to designate a directory in CF by browsing their machine

Re: CF/programming experience from the list?

2005-03-07 Thread Jerry Johnson
I seem to remember a nightmare about a semicolon in column 71 instead of column 72. Which caused me to develop my social engineering and hacking skills to get a terminal account as a freshman. Jerry Johnson Web Developer Dolan Media Company [EMAIL PROTECTED] 03/07/05 11:47AM What was worse

Re: OT: So what chair are you sitting in with your dual monitors?

2005-03-03 Thread Jerry Johnson
is a low Japanese-style table (42 square, 15 high, oak and copper) that I sit indian style or kneel at. I also use an overstuffed leather chair and a laptop for general surfing. Jerry Johnson Web Developer Dolan Media Company [EMAIL PROTECTED] 03/03/05 10:48AM The thread about dual (or 3+) monitors

Re: coldfusion photo gallery suggestions?

2005-03-03 Thread Jerry Johnson
Are you looking for a solution that only allows moderated/approved images and captions to appear? Who can moderate/approve? Jerry Johnson Web Developer Dolan Media Company [EMAIL PROTECTED] 03/03/05 12:35PM I need a coldfusion photo gallery that can have multiple users and allow

Re: coldfusion photo gallery suggestions?

2005-03-03 Thread Jerry Johnson
, or just upload into existing gallery? Is there a size/volume restriction? Does the submitter need to be registered/logged in? Moderator. restricted access to manage approval of uploaded images. manage galleries manage approvals Jerry Johnson Web Developer Dolan Media Company [EMAIL PROTECTED] 03/03

Re: Homesite 5.5 vs. Dual Monitors

2005-03-02 Thread Jerry Johnson
It is nice. But I have to struggle at work with only 2. I have 4 on my home dev box. Jerry Johnson Web Developer Dolan Media Company [EMAIL PROTECTED] 03/01/05 10:05PM Where do all you guys work that they give you duel monitors? Must be nice

<    1   2   3   4   5   6   7   8   9   >