Re: Cold Fusion 5 - Schedule Tasks Are Not Running

2008-01-18 Thread Mike Chabot
Some ideas, Try deleting the scheduled tasks and readding them. Add more logging using cflog. Look in the JRun log files instead of just the CF log files for errors. Use process monitor (a free Microsoft program) to see what happens on the server around the time of these scheduled tasks. This tool

RE: Cold Fusion 5 - Schedule Tasks Are Not Running

2008-01-18 Thread Dale Fraser
Seriously? V5, I feel for you. Regards Dale Fraser -Original Message- From: Mike Chabot [mailto:[EMAIL PROTECTED] Sent: Friday, 18 January 2008 7:11 PM To: CF-Talk Subject: Re: Cold Fusion 5 - Schedule Tasks Are Not Running Some ideas, Try deleting the scheduled tasks and readding

Re: database structure for tagging

2008-01-18 Thread Assistenza Sito
Also from my delicious : http://www.petefreitag.com/item/396.cfm http://www.whatspop.com/blog/2005/12/my-coldfusion-tagging-enginelibrary.cfm http://www.whatspop.com/blog/2006/01/setting-up-database-for-tagging.cfm hth -Luca On 1/18/08, Kay Smoljak [EMAIL PROTECTED] wrote: Does anyone know of

Re: CF / MySQL (Save file path)

2008-01-18 Thread Tom Chiverton
On Thursday 17 Jan 2008, ColdFusion wrote: I have a feeling that MySQL is interrupting the \T as a RegEx expression. Not reg. exp., escape sequence. The space is probably a tab char. -- Tom Chiverton Helping to apprehensively benchmark world-class designs on: http://thefalken.livejournal.com

Re: application.log syntax

2008-01-18 Thread Tom Chiverton
On Thursday 17 Jan 2008, Richard Colman wrote: We don't have CFDOCS on the server, but it looks like somebody tries to Some*thing*. I wouldn't worry about anymore than the owner of a well setup Apache should worry about hits to missing /cgi-bin/ scripts, or an IIS owner about

RE: Tags useful to accomplish automating MLS direct feed into MySQL DB?

2008-01-18 Thread Rick Faircloth
Thanks for the tip, Claude. I'll check into the ODBC DSN approach. If you have any more thoughts on the matter, please let me know! Rick -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Thursday, January 17, 2008 11:41 PM To: CF-Talk Subject: Re: Tags

Re: cfqueryparam, cached execution plans, and changing table structure

2008-01-18 Thread Dana Kowalski
well one simple solution is to only do updates during a scheduled maintenance period daily. During that time you have the services bounce for CF and SQL. Its not pretty but its effective. ~| Adobe® ColdFusion® 8 software 8 is

Re: cfcUnit question

2008-01-18 Thread Jon Messer
I've struggled with this too, while (I think) tests that I hit the db aren't technically unit test, they still need to be done. I've never used dbUnit but it looks like the best option. Another option that I've heard being used is to have a test database with scripts to put it into a known state

Duplicate an XML file with Cold Fusion 8

2008-01-18 Thread Don L
This is what I want to do: save/duplicate a copy of an uploaded XML file in case of need. Techniques that I've tried to no avail. Necessary bla bla: The interface: (It's an HTML form that provides mechnism to upload an XML file, like input type=file name=UploadXmlFile ) The process: a) check

Re: Duplicate an XML file with Cold Fusion 8

2008-01-18 Thread Don L
Tod and Will, Sorry, we're not on the same page yet, the source XML file is to be uploaded by a user, so, we don't have a file sitting on the server box yet. And yes, I've also tried something like the following to no avail. cfset tmpFileName = tmpFile#Right(Rand(),2)# cffile action = write

Re: cfqueryparam, cached execution plans, and changing table structure

2008-01-18 Thread Dana Kowalski
from: http://msdn2.microsoft.com/en-us/library/ms181055.aspx --- Certain changes in a database can cause an execution plan to be either inefficient or invalid, based on the new state of the database. SQL Server detects the changes that invalidate an execution plan and marks the plan as not

RE: Duplicate an XML file with Cold Fusion 8

2008-01-18 Thread Will Swain
Hi Don, You want to upload an XML file and save a copy of it somewhere else? You could just do two uploads on your form processing page, something like: cffile action=UPLOAD filefield=UploadXmlFile destination=#application.xml_root#

Re: CRUD Creation

2008-01-18 Thread Aaron Rouse
But they are not digging through a hay stack. In my same example if a property manager for Rosharon logs in they typically only have 2-3 properties they can even see or search through because the system already knows to limit things based upon the user. That is far from a needle in a haystack.

RE: CF / MySQL (Save file path)

2008-01-18 Thread ColdFusion
Actually I am so ashamed to admit it but I usually am extremely particular in using CFQUERYPARAMs And the one time I don't that problem occurred. QueryParam to save the day ;-) -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: Friday, January 18, 2008 6:33 AM To:

RE: JavaScript version of listContains()

2008-01-18 Thread Bobby Hartsfield
script function listFindNoCase(theList, theValue, theDelim) { var i = 0; var returnValue = 0; var theArr = new Array(); theArr = theList.split(theDelim); for(i=0; i theArr.length; i++) { if(theArr[i].toLowerCase()

Re: cfqueryparam, cached execution plans, and changing table structure

2008-01-18 Thread Tom Chiverton
On Friday 18 Jan 2008, Mark Kruger wrote: Not pretty...and often not possible. Consider the many many sites on shared hosts. How do they handle this situation? Assuming it happens, I guess they have a query in a non-application file they can alter and run. -- Tom Chiverton Helping to

Re: Duplicate an XML file with Cold Fusion 8

2008-01-18 Thread Todd
Don? It's a file. Stop thinking XML for a second and start thinking of a file. fileCopy()? On Jan 18, 2008 10:30 AM, Don L [EMAIL PROTECTED] wrote: This is what I want to do: save/duplicate a copy of an uploaded XML file in case of need. Techniques that I've tried to no avail. Necessary

RE: cfqueryparam, cached execution plans, and changing table structure

2008-01-18 Thread Mark Kruger
Dana, Not pretty...and often not possible. Consider the many many sites on shared hosts. How do they handle this situation? -mark -Original Message- From: Dana Kowalski [mailto:[EMAIL PROTECTED] Sent: Friday, January 18, 2008 8:24 AM To: CF-Talk Subject: Re: cfqueryparam, cached

Re: SOT: JavaScript version of listContains()

2008-01-18 Thread Charlie Griefer
On Jan 18, 2008 9:35 AM, Claude Schneegans [EMAIL PROTECTED] wrote: that's not to say there's not a simple way tho. The only other way I can think of is using regExp, but not really simpler. yeah, i thought about using subStr... but then you'd have to check for an optional comma in front and

Re: Duplicate an XML file with Cold Fusion 8

2008-01-18 Thread Todd
Don, When you're looking for help, you can't really short-hand. I have to assume the code posted is what I'm given. :) Anyway, xml file is still a text file, correct? It can be read like a text file and backed up to any medium you want. This whole thread is confusing me a little because you

SOT: JavaScript version of listContains()

2008-01-18 Thread Ian Skinner
Does anybody know if there is a simple, basic JavaScript equivalent of the CFML listContains() function that can determine if a given value is one of four possible values. TIA Ian ~| Adobe® ColdFusion® 8 software 8 is the

Re: Duplicate an XML file with Cold Fusion 8

2008-01-18 Thread Don L
Todd, You misunderstood what I intended to do. form-wise, of course, for a file upload, it's like ... that's HTML 101 ... cfform action=#CGI.script_name# method=post enctype=multipart/form-data /cfform I was using short-hand... Another technique that I haven't tried yet but will work, that

Re: Duplicate an XML file with Cold Fusion 8

2008-01-18 Thread Todd
Don, There's no multi-part form there? Where's your cffile action=upload You're writing before you even get to the server. Again, it's a file. Once it's on the server, you can treat it like any other file. Quit doing XML functions on it unless you're trying to validate that it's an XML file,

RE: UUID - breaking in emails

2008-01-18 Thread Bobby Hartsfield
You can only control what you send out. There is no telling what a user might do when they get it and send it to others. Different email clients do different things and the settings of different users are usually different even in the same email clients. All you could do would be to put some kind

RE: Simple AJAX example - Extra whitespace in response

2008-01-18 Thread Jason Durham
It's this part of my app.cfc file that's causing the extra space... cffunction name=onRequest cfargument name=targetPage / cfinclude template=#arguments.targetPage# / /cffunction I can't recall while this code is in the file. A friend told me to

Strange Characters Appearing in Browser

2008-01-18 Thread Steve LaBadie
We are using a CMS and are experiencing a strange phenomenon that every time someone presses the space bar multiple times while editing a page an  appears in the browser. The software company feels that ColdFusion is causing this issue, but I am not convinced of this. The content

Re: Simple AJAX example - Extra whitespace in response

2008-01-18 Thread Ian Skinner
Whitespace in the .cfm file being called. Whitespace in any Application.cfm or Application.cfc that applies to this template. I suspect if your .cfm file is that one line, then it is the latter. You have some default Application.cfm|c file and it does not have it's whitespace managed with

RE: UUID - breaking in emails

2008-01-18 Thread Will Swain
Convert the links to a tinyurl, then send that out in the email? There's a cfc for this on cfczone, but I haven't tried it. http://www.cfczone.org/cfcs/downloads/ctz_tinyurl.zip Cheers Will -Original Message- From: Matthew Friedman [mailto:[EMAIL PROTECTED] Sent: 18 January 2008

RE: Strange Characters Appearing in Browser

2008-01-18 Thread Jerry Guido
I am not sure I understand the question. When you speak of the CMS editor and the The solution is to teach the CMS editor, what editor are you using? Jerry Guido Programmer MGT of America, Inc. [EMAIL PROTECTED] The information contained in this electronic communication is intended only for

RE: Simple AJAX example - Extra whitespace in response

2008-01-18 Thread Jason Durham
Got it completely sorted out now thanks to you guys/gals and Charlie Griefer's sample app.cfc file. I removed the onRequest function and changed the scope on a few variables. All is well! Thanks! -Original Message- From: Jason Durham [mailto:[EMAIL PROTECTED] Sent: Friday, January 18,

Re: SOT: JavaScript version of listContains()

2008-01-18 Thread Ian Skinner
Claude Schneegans wrote: that's not to say there's not a simple way tho. The only other way I can think of is using regExp, but not really simpler. Actually after thinking on this a bit it turned out to be fairly simple. At least for my immediate need of 6 possible 1 character values.

RE: Output to Excel Problem

2008-01-18 Thread FROEHLING, ROBERT (ATTSI)
Les, If you're using HTML to generate the layout of your Excel reports, you can add a style to the TD of 'mso-number-format:\@;' to set the field as text. Robert -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Friday, January 11, 2008 6:56 PM To: CF-Talk Subject:

RE: Segfault Running Vspider

2008-01-18 Thread Dave Watts
Side note: I hadn't noticed this one before (near the very top of the output): I18nMsg Info: Error(): Couldn't find Install Dir Not surprisingly for a Verity issue, I'm finding absolutely nothing (but this thread) when I Google I18nMsg verity, I18nMsg vdk, or I18nMsg vspider. So,

setting up testing server for dummies...

2008-01-18 Thread morchella
is there a dummies version? over the next 3 weeks or so i am tasked with figuring out what is needed on half dozen live servers/domains countless temp crap... coping it all to a virtual server set up. as well as sql2000 db's...? upgrading/install cf8ent currently every thing is 7 cleaning it

RE: Output to Excel Problem

2008-01-18 Thread Mark Kruger
Robert, You mean something like: td style='mso-number-format:\@;' .../td That's an excellent tip. -Original Message- From: FROEHLING, ROBERT (ATTSI) [mailto:[EMAIL PROTECTED] Sent: Friday, January 18, 2008 4:39 PM To: CF-Talk Subject: RE: Output to Excel Problem Les, If you're

Re: Ant Subversion

2008-01-18 Thread Qasim Rasheed
Dan The error indicate that SVN jar files aren't being located by your build file. I usualy place those under ANTINSTALLATION/lib so that any project can use it. Thanks Qasim On Jan 18, 2008 5:30 PM, Andrew Scott [EMAIL PROTECTED] wrote: If it was me I would use ants built in zipping

Re: From Java to ColdFusion, a newbie

2008-01-18 Thread Abigail Coker
Thanks for your reply Jake, that was my guess too, just do not know how to solve the problem, how was so determined to solve it myself, I've tried all sorts, I think my lack of experience sort of caught me out.. cfset image =slide.getThumbNail(javacast(int 290,230)) cfset

Re: From Java to ColdFusion, a newbie

2008-01-18 Thread Cutter (CFRelated)
Ooohh. Good catch Jake, I missed that one. Have to get those arg types straight;) Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com Jake Churchill wrote: cfset image

RE: Strange Characters Appearing in Browser

2008-01-18 Thread Steve LaBadie
We are using a product called OmniUpdate. After deliberation with their technical staff they feel that Coldfusion is causing the character problem From: Jerry Guido [mailto:[EMAIL PROTECTED] Sent: Fri 1/18/2008 4:27 PM To: CF-Talk Subject: RE: Strange Characters

Re: setting up testing server for dummies...

2008-01-18 Thread morchella
thank you dave.. your advice is always appreciated... few quick questions. will it move iis settings and such. what about macros that may interact with current sql server, that i may NOT be aware of since i am no dba... is there a easy way to macro un/pw replacement as well as ip/port replacement

From Java to ColdFusion, a newbie

2008-01-18 Thread Abigail Coker
Hi all, I'm a newbie to CF (2 months old).I've read up and research a lot in how to convert Java to CF but I seem to have hit a brick wall in converting a simple a 5 line code of Java into CF, please see the code in Java and the attempt at converting it below, any help will be appreciated,

Re: CFThread Example On LiveDocs.

2008-01-18 Thread C S
Can anyone take a look at the example code and tell me how I would go about modifying the code in order to return *one* coldfusion query that contains *all* of the results that I could then sort or page through as a Q of Q? Interesting question. Merge them with a QoQ. You need to fiddle with the

RE: setting up testing server for dummies...

2008-01-18 Thread Dave Watts
is there a dummies version? This is a very broad question. Rather than attempting to answer it directly, I'll just point out that you can virtualize existing physical environments using VMware Converter: http://www.vmware.com/products/converter/ Dave Watts, CTO, Fig Leaf Software

Re: Ant Subversion

2008-01-18 Thread Andrew Scott
If it was me I would use ants built in zipping feature, and place it in the build.xml file. The added overhead to svn to that is overkill and unecessary overhead. On 1/19/08, Dan Vega [EMAIL PROTECTED] wrote: Today I was trying to setup svnant and subversion. I basically want to be able to

RE: Simple AJAX example - Extra whitespace in response

2008-01-18 Thread Dawson, Michael
I use the following tag immediately before I output any data. cfcontent type=text/html reset=yes M!ke -Original Message- From: Jason Durham [mailto:[EMAIL PROTECTED] Sent: Friday, January 18, 2008 2:50 PM To: CF-Talk Subject: RE: Simple AJAX example - Extra whitespace in response

Re: Simple AJAX example - Extra whitespace in response

2008-01-18 Thread Ian Skinner
Put output=false in the cffunction... tags as well as the cfcomponent... tag. It is probably the tab in front of the cfinclude... that is showing up. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic

RE: Simple AJAX example - Extra whitespace in response

2008-01-18 Thread Jason Durham
Changing cfcomponent output=false got rid of my extra line breaks but I still have what appears to be a tab before the timestamp. If I rename my App.cfc file, the tab disappears. I have no trailing spaces after the closing cfcomponent tab. Thanks for the idea on the delimiters. If I can't sort

RE: Simple AJAX example - Extra whitespace in response

2008-01-18 Thread Jason Durham
Thanks Andy. It was indeed whitespace being placed by an Application.cfc. :) -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Friday, January 18, 2008 2:39 PM To: CF-Talk Subject: RE: Simple AJAX example - Extra whitespace in response Sure... Do you have an

RE: Simple AJAX example - Extra whitespace in response

2008-01-18 Thread Andy Matthews
lastly what I do if all else fails is to place a unique delimiter on either side of my outputted text: !!!cfoutput#now()#/cfoutput!!! Then, in the returned string, I split on that delimiter: data.split('!!!')[1]; And pull back the second index of the resulting array. -Original

Re: Duplicate an XML file with Cold Fusion 8

2008-01-18 Thread Don L
Todd, Sorry for the confusion, yes, I'll make problem statement clearer down the road... It's resolved. When the first two techniques failed, and third one of creating a backup file approach did not work out neither, that technique failure was caused by my own neglect, I should have used the

Re: JavaScript version of listContains()

2008-01-18 Thread Aaron Rouse
I do not know if it is the same person, but there is a CF JS function plugin for jQuery. http://cfjs.riaforge.org/ I did not look to see if it has listcontains or not, just assumed it does. On Jan 18, 2008 11:38 AM, Jerry Guido [EMAIL PROTECTED] wrote: Not exactly. But close. ListFind and

Re: SOT: JavaScript version of listContains()

2008-01-18 Thread Qasim Rasheed
sorry, I responded too quick. This will actually be ListFind and not ListContains. On Jan 18, 2008 2:32 PM, Qasim Rasheed [EMAIL PROTECTED] wrote: I am hoping this will work function ListContains(list,item,delim){ var del = (delim == null)? ,: delim; return

Re: SOT: JavaScript version of listContains()

2008-01-18 Thread Qasim Rasheed
I am hoping this will work function ListContains(list,item,delim){ var del = (delim == null)? ,: delim; return list.split(del).indexOf(item) != -1; } On Jan 18, 2008 12:38 PM, Charlie Griefer [EMAIL PROTECTED] wrote: On Jan 18, 2008 9:35 AM, Claude Schneegans [EMAIL PROTECTED] wrote:

CFThread Example On LiveDocs.

2008-01-18 Thread Che Vilnonis
Can anyone take a look at the example code and tell me how I would go about modifying the code in order to return *one* coldfusion query that contains *all* of the results that I could then sort or page through as a Q of Q? Thanks, Che

Re: UUID - breaking in emails

2008-01-18 Thread Ian Skinner
Use some type of homegrown or existing 'tiny' url methodology so your links are not that long? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

UUID - breaking in emails

2008-01-18 Thread Matthew Friedman
I have an application where I am using UUID as the key for accessing the record. It works great, but he issue is that we email out the link to a client, they then forward the email to an person and the email program wraps the url link breaking the uuid onto two lines. Does anyone have any

RE: UUID - breaking in emails

2008-01-18 Thread Mark Kruger
Yes of course... But you are helping at least some of the users This is not really a problem that is 100% solvable -Original Message- From: Todd [mailto:[EMAIL PROTECTED] Sent: Friday, January 18, 2008 12:57 PM To: CF-Talk Subject: Re: UUID - breaking in emails FYI, HTML

RE: JavaScript version of listContains()

2008-01-18 Thread Jerry Guido
Not exactly. But close. ListFind and ListFindNoCase might do the trick. The guy from leftcorner.com (offline) ported a bunch of CF functions to JS. I still have a copy. Pretty handy. http://photos.guidofamily.org/LeftCorner.js Full list of functions in library: Abs(number) ArrayAppend(array,

re: From Java to ColdFusion, a newbie

2008-01-18 Thread Jake Churchill
cfset image =slide.getThumbNail(javacast(int 290,230)) cfset imageIO.write(image,jpeg, (c:\theimageFile.jpg)) The problem might be in these 2 lines. You are passing 290,230 to javacast and I'm not certain that will work. Plus, the getThumbNail function was expecting a Dimension object which

Ant Subversion

2008-01-18 Thread Dan Vega
Today I was trying to setup svnant and subversion. I basically want to be able to create a zip file of a project anytime I want one. I was reading a good article today here http://www.phillnacelli.net/blog/index.cfm/2007/1/28/ANT-Builds-and-Subversion-SVN The problem Is I could not get it to

RE: Simple AJAX example - Extra whitespace in response

2008-01-18 Thread Andy Matthews
Glad to help. -Original Message- From: Jason Durham [mailto:[EMAIL PROTECTED] Sent: Friday, January 18, 2008 2:44 PM To: CF-Talk Subject: RE: Simple AJAX example - Extra whitespace in response Thanks Andy. It was indeed whitespace being placed by an Application.cfc. :) -Original

RE: Simple AJAX example - Extra whitespace in response

2008-01-18 Thread Andy Matthews
Sure... Do you have an Application.cfc in place? It's likely outputting white space which can be managed by changing the output attribute to false. If you're not using an Application file, then what you can do is to use cfsetting enableCFoutputOnly=true before you output the value to the page,

Simple AJAX example - Extra whitespace in response

2008-01-18 Thread Jason Durham
I'm looking at a simple AJAX example on w3schools.com. Their example uses an ASP script to provide the server time back to a calling AJAX page. Of course, I'm a CFer so I simply replaced their ASP script with CFML. The problem is... the response back from the CFML template includes extra

RE: JavaScript version of listContains()

2008-01-18 Thread Jerry Guido
I do not know if it is the same person Nope, but in the header for the non jQuery version in the SVN he credits Randy Anderson of leftcorner.com. Great find. I am liking the IsValid function. A little Swiss army knife this thing is. The date functions are nice too. This will come in handy.

Re: JavaScript version of listContains()

2008-01-18 Thread Claude Schneegans
The guy from leftcorner.com (offline) ported a bunch of CF functions to JS. I still have a copy. Pretty handy. Pretty handy indead. Javascript looks like a retarded language when dealing with strings. Thanks. -- ___ REUSE CODE! Use custom tags; See

RE: UUID - breaking in emails

2008-01-18 Thread Mark Kruger
One thing would be to use multi-part emails and encode the links in the HTML... This would accommodate those with html email readers - but you will still have the problem with those using plain text. -Original Message- From: Matthew Friedman [mailto:[EMAIL PROTECTED] Sent: Friday,

Re: SOT: JavaScript version of listContains()

2008-01-18 Thread Claude Schneegans
that's not to say there's not a simple way tho. The only other way I can think of is using regExp, but not really simpler. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address:

Re: SOT: JavaScript version of listContains()

2008-01-18 Thread Charlie Griefer
i can't think of a simple, basic way off the top of my head. i'd probably end up doing a list.split(',') to convert the list to an array, then looping over the array to see if the element exists. that's not to say there's not a simple way tho. matter of fact, it's generally when i've gone ahead

RE: UUID - breaking in emails

2008-01-18 Thread Jim Davis
-Original Message- From: Matthew Friedman [mailto:[EMAIL PROTECTED] Sent: Friday, January 18, 2008 1:28 PM To: CF-Talk Subject: UUID - breaking in emails I have an application where I am using UUID as the key for accessing the record. It works great, but he issue is that we

Re: UUID - breaking in emails

2008-01-18 Thread Todd
FYI, HTML readers still have the possibility of it breaking. Especially if you're forwarding the article to someone that reads email in only plain-text. On Jan 18, 2008 1:49 PM, Mark Kruger [EMAIL PROTECTED] wrote: One thing would be to use multi-part emails and encode the links in the

Re: From Java to ColdFusion, a newbie

2008-01-18 Thread Cutter (CFRelated)
I'm only guessing, knowing nothing about your 'Presentation' class object, but a quick read-over would point to this line: cfset pres = CreateObject(java, com.aspose.slides.Presentation).init(FileStream ..init(c:\test\test.ppt)) There appears to be a space FileStream and the function call,

Re: RentaCoach.com CF programmer/designer Position!!!

2008-01-18 Thread Phillip M. Vector
Twice no less. :) Bryan Stevenson wrote: Adrianwhy don't you reply to Judith personally instead of the list yet again?? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free

Re: RentaCoach.com CF programmer/designer Position!!!

2008-01-18 Thread Bryan Stevenson
Adrianwhy don't you reply to Judith personally instead of the list yet again?? Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com

Re: RentaCoach.com CF programmer/designer Position!!!

2008-01-18 Thread Adrian rav
Please stop this discussion right now. If anyone on CF-Jobs has a personal grievance with anyone else, please keep it off list. That list (CF-Jobs) is for posting jobs or resumes, not for potshots at companies or individuals. There are places to file grievances against companies. The first one

Re: RentaCoach.com CF programmer/designer Position!!!

2008-01-18 Thread Adrian rav
Please stop this discussion right now. If anyone on CF-Jobs has a personal grievance with anyone else, please keep it off list. That list (CF-Jobs) is for posting jobs or resumes, not for potshots at companies or individuals. There are places to file grievances against companies. The first one