Re: language for mailer

2010-01-25 Thread Maureen

I would question why you would want to build it at all when so many
already exist - in all languages.

On Sun, Jan 24, 2010 at 11:39 PM, Carey  Duryea
ca...@keepingitgreen.net wrote:

 i was positive there was some hook into creating more efficiency.  just like 
 building a dragster, you basically can only go straight, but thats all you 
 really wanna do!  i am sort of a beginning developer in CF and a few other 
 technologies, but non such as java or C,  i have a potiential contract to 
 build such a server device with a web application interface for control of 
 these mailing actions.
 i know myself very well, that if i decide to contract this sort of work, i'll 
 probably end up reading three books on java.  the more ya knwo, the less you 
 pay, i wonder who coined that phrase.  so its like, build java application 
 mail server, that exploits resourses, build flex cf web application as 
 interface to server applicati

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330097
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: What is the best way to design a grid system?

2010-01-25 Thread Kamru Miah

Many thanks for your suggestions. Since SPRY is part of CF8, does it have any 
equivalent table-edit plugin to do the same as jEditatble?

Regarding the editable table cells, there is a nifty jQuery plugin called
jEditable that can help you accomplish that.

-- Josh 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330098
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


regex

2010-01-25 Thread Mik Muller

Can anyone give me a hand with this regex?  I know it's very simple. Just don't 
have time to dig into it.

I need something that will take only...

/sometext/
/some-other-text/

...and ignore the following...

/sometext.ext?yadda=yaddaetc
/images/filename.jpg

In other words, the rule only runs if it appears to be a single folder name, 
and nothing else.

Thanks,

Mik





Michael Muller
Admin, MontagueMA.net Website
...a project of MontagueWebWorks.com
mobile (413) 320-5336
http://www.MontagueMA.net

Eschew Obfuscation





~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330099
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Email Format question

2010-01-25 Thread Rob Voyle

Hi folks

I thought I had this fixed butnow I am baffled.
I have an cf email that lists a series of values such as

'#title#
'#prog#
'#programvalue#

which results in the email list being sent as:

'Restoring Hope: Appreciative Strategies to Resolve Grief and Resentment
'hopeLacey 'This was a great program 

If I put #chr(10)# in the list:

'#title#
'#prog##chr(10)#
'#programvalue#

I get:

'Restoring Hope: Appreciative Strategies to Resolve Grief and Resentment
'hopeLacey 

'This was a great program

When what I really want is:

'Restoring Hope: Appreciative Strategies to Resolve Grief and Resentment
'hopeLacey 
'This was a great program

Any ideas why this is happening or what I can do to get it to work?

Rob
  
Robert J. Voyle, Psy.D.
Director, Clergy Leadership Institute
For Coaching and Training in Appreciative Inquiry
Author: Core Elements of the Appreciative Way 
http://www.clergyleadership.com/
503-647-2378 or 503-647-2382



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330100
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: regex

2010-01-25 Thread Andy Matthews

/\w+/ should work

\w matches all word characters including letters (upper and lower),
numbers, and some punctuation.

Here's a really good beginners guide to regex that I wrote.
http://andymatthews.net/read/2009/10/22/A-beginner's-guide-to-regular-expres
sions 


andy




-Original Message-
From: Mik Muller [mailto:ad...@montaguema.net] 
Sent: Monday, January 25, 2010 9:01 AM
To: cf-talk
Subject: regex


Can anyone give me a hand with this regex?  I know it's very simple. Just
don't have time to dig into it.

I need something that will take only...

/sometext/
/some-other-text/

...and ignore the following...

/sometext.ext?yadda=yaddaetc
/images/filename.jpg

In other words, the rule only runs if it appears to be a single folder name,
and nothing else.

Thanks,

Mik





Michael Muller
Admin, MontagueMA.net Website
...a project of MontagueWebWorks.com
mobile (413) 320-5336
http://www.MontagueMA.net

Eschew Obfuscation







~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330101
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Can't deselect a radio button inside a cfwindow

2010-01-25 Thread John Pullam

This should be easy but I can't figure it out. I have a radio button with a 
variable number of entries and I pass the selected value into a cfwindow. When 
I am done and I close the window, I want to deselect the chosen radio button so 
the user does not think that the button is still selected.

I am running the deselect code from the cfwindow and the radio button is on the 
underlying page. 

When I use the statement 
document.getElementById(TheGuest).checked = false;
it only deselects the button if it is the first one in the list.

I have tried using document.all.TheGuest.length to get the number of entries 
but this creates a JS error (can't see what it is in Firebug). I've also tried 
to come up with variations that use array notation like [1] or to find 
something that will simply deselect the button regardless of which element is 
selected, but I can't get anything to work.

A bit of help would be greatly appreciated. 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330102
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


(ot) FB3/FB4 Problem

2010-01-25 Thread Rick Root

So my flash builder 4 beta expired.  Frak.  I tried putting in my FB3
license but it doesn't work.

So I uninstalled FB4 and rebooted.. then installed FB3 again.

Only now, FB3 is broken.

See examples in this document:

http://www.it.dev.duke.edu/public/fb3_broken.rtf
or
http://www.it.dev.duke.edu/public/fb3_broken.doc

Anyone else had this problem?

I'm on Win7 x64

Rick

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330103
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT: FB3/FB4 Problem

2010-01-25 Thread Rick Root

Crud.  Correct links:

http://www.it.dev.duke.edu/public/fb3_broken_examples.rtf
or
http://www.it.dev.duke.edu/public/fb3_broken_examples.doc




On Mon, Jan 25, 2010 at 11:14 AM, Rick Root rick.r...@gmail.com wrote:
 So my flash builder 4 beta expired.  Frak.  I tried putting in my FB3
 license but it doesn't work.

 So I uninstalled FB4 and rebooted.. then installed FB3 again.

 Only now, FB3 is broken.

 See examples in this document:

 http://www.it.dev.duke.edu/public/fb3_broken.rtf
 or
 http://www.it.dev.duke.edu/public/fb3_broken.doc

 Anyone else had this problem?

 I'm on Win7 x64

 Rick

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330104
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Why .Net is on its last legs

2010-01-25 Thread John Pullam

Great thread.

I've been programming since the 60's (really!) and I am totally appalled by how 
difficult it is to program in .Net

I decided to learn it a few years ago because it seemed all I heard was .Net is 
the future. I found it the most time-consuming, difficult to debug, 
language/environment I have ever used. Most of the errors I made were 
considered valid code and were tediously difficult to locate. It seems every 
bug required hours of web searching to see if anyone else had the same symptoms.

Sure glad I'm back doing my main development in CF. 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330105
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: OT: FB3/FB4 Problem

2010-01-25 Thread Tom Chiverton

Did you clear out your 'workspace' folder too ? Try just renameing it and see 
if that fixes things.

-- 
Helping to widespreadedly establish B2B enterprise-class performance-oriented 
market-driven deliverables as part of the IT team of the year 2010, '09 
and '08



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners.  We use the word 
“partner” to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.co

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330106
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT: FB3/FB4 Problem

2010-01-25 Thread Rick Root

On Mon, Jan 25, 2010 at 11:35 AM, Tom Chiverton
tom.chiver...@halliwells.com wrote:

 Did you clear out your 'workspace' folder too ? Try just renameing it and see
 if that fixes things.

I'd uninstalled FB3 entirely, and deleted the Adobe Flex Builder 3
folder from the documents directory and the program files directory.

At any rate, I finally figured out how to request an extension on the
FB4 beta, so I'm back to using FB4.

Funny how I spent an hour on the phone with adobe customer service and
they couldn't tell me how to get an extension.  The customer service
rep couldn't seem to understand that I got my original FB3 license
from freeriatools.adobe.com ...

Rick

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330107
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Not Able to Get Trim Function to Work

2010-01-25 Thread Steve LaBadie

I have tried multiple combinations using the trim function, but none of
them work. If I put a trailing space at the end of the search, I get no
record found. If there is no trailing space, the record is produced. I
would appreciate any guidance you can give.

 

I have tried:

value=cfoutput#Trim(fldname)#/cfoutput

value=#Trim(fldname)#

value=#Trim(FORM.fldname)#

 

 

cfparam name=name default=

cfparam name=email default=

cfset fldname = name

cfset fldemail = email

 

cfoutputform method=get action=#ActionPage#/cfoutput

input type=text name=name maxlength=15
value=cfoutput#fldname#/cfoutput /br /Name (1st or last)

input type=text name=email maxlength=50
value=cfoutput#fldemail#/cfoutput /br /mail

 

Thanks,

 

Steve LaBadie, Web Manager

East Stroudsburg University

200 Prospect St.

East Stroudsburg, Pa 18301

570-422-3999

http://www.esu.edu http://www.esu.edu 

slaba...@po-box.esu.edu mailto:slaba...@po-box.esu.edu 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330108
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Not Able to Get Trim Function to Work

2010-01-25 Thread Justin Scott

 I have tried multiple combinations using the trim function, but
 none of them work.

It looks like you're putting the trim() on the value attribute of the input
field.  How about the value you pass into the query?  This should work:

select fields from table where
somefield = '#trim(form.field)#'

You want to trip spaces on your search query in addition to trimming when
you re-display the form.


-Justin



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330109
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Email Format question

2010-01-25 Thread Qing Xia

Hmm... have you tried using CFSaveContent?

On Mon, Jan 25, 2010 at 10:58 AM, Rob Voyle robvo...@voyle.com wrote:


 Hi folks

 I thought I had this fixed butnow I am baffled.
 I have an cf email that lists a series of values such as

 '#title#
 '#prog#
 '#programvalue#

 which results in the email list being sent as:

 'Restoring Hope: Appreciative Strategies to Resolve Grief and Resentment
 'hopeLacey 'This was a great program

 If I put #chr(10)# in the list:

 '#title#
 '#prog##chr(10)#
 '#programvalue#

 I get:

 'Restoring Hope: Appreciative Strategies to Resolve Grief and Resentment
 'hopeLacey

 'This was a great program

 When what I really want is:

 'Restoring Hope: Appreciative Strategies to Resolve Grief and Resentment
 'hopeLacey
 'This was a great program

 Any ideas why this is happening or what I can do to get it to work?

 Rob

 Robert J. Voyle, Psy.D.
 Director, Clergy Leadership Institute
 For Coaching and Training in Appreciative Inquiry
 Author: Core Elements of the Appreciative Way
 http://www.clergyleadership.com/
 503-647-2378 or 503-647-2382



 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330110
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


ColdFusion CPU Spinning|Spiking Problem week two.

2010-01-25 Thread Ian Skinner

It's the start of a new week and I wish I was home, under the covers, 
nursing my cold|flu.

But I'm at work here, trying to nail down why our Windows 2003, 
ColdFusion 8, production web server started spiking to 90% and over with 
an average CPU load of 50% when our historical average before January 
5th was 5% to 10% load.  Yeah it really is not an over utilized server :-)

I've taken a couple dozen random thread dumps with the ColdFusion 
Monitor Snapshot function and I have yet to find any problems, in fact I 
have yet to find any running CFM code at all.  We run a multi-home 
ColdFusion setup here with two main instances and the CFusion 
administration instance.  I am starting the Monitor from the instance we 
are investigating.  So these thread shots should be for that instance, 
correct?

The supervisor also asked if there was something readidly available that 
would just take regualar dumps of the threads so that we can just run 
that for a period of time and build up some historical information.  
Would jConsole provide something like that, or any other benefit?   I 
still not sure what it takes to use jConsole on our systems.

TIA
Ian




~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330111
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: ColdFusion CPU Spinning|Spiking Problem week two.

2010-01-25 Thread brad

 We run a multi-home ColdFusion setup here with two main instances and the 
 CFusion 
 administration instance. I am starting the Monitor from the instance we 
 are investigating. So these thread shots should be for that instance, 
 correct?

I think you might want to get dumps on all instances that are running
including the base instance.  I don't have a multi-instance install of
CF on me right now, so I can't quite remember if you have a jrun.exe
process in windows for each of the instances.

 The supervisor also asked if there was something readidly available that 
 would just take regualar dumps of the threads so that we can just run 
 that for a period of time and build up some historical information. 

Hmm, that's an interesting question.  I know SeeFusion's E-mail alerts
include a thread dump, but you can't trigger an alert based on CPU
usage.
I'm not sure how useful random thread dumps would be from throughout the
day while the server is running fine.
I would start by trying to get thread dumps on every running instance.  

You aren't by chance using JRun clustering with session replication are
you?  (Just a random thought)

~Brad



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330112
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: What is the best way to design a grid system?

2010-01-25 Thread Josh Nathanson

I have no idea...you'll have to look at the Spry docs to find that out.

-- Josh

-Original Message-
From: Kamru Miah [mailto:k.m...@csl.gov.uk] 
Sent: Monday, January 25, 2010 7:21 AM
To: cf-talk
Subject: Re: What is the best way to design a grid system?


Many thanks for your suggestions. Since SPRY is part of CF8, does it have
any equivalent table-edit plugin to do the same as jEditatble?

Regarding the editable table cells, there is a nifty jQuery plugin called
jEditable that can help you accomplish that.

-- Josh 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330113
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: language for mailer

2010-01-25 Thread Qing Xia

I'd be the first to admit that I am a die-hard CF fan, but if you want an
off-the-shelf software solution, check out Campaign Enterprise:
http://www.arialsoftware.com/enterprise.htm

http://www.arialsoftware.com/enterprise.htmIt gives average users the
ability to create simple HTML email messages, where the recipient list can
be defined by a query pulling from your own backend database like SQL
server.

We have it at work, and for the most part, it gives us what we want.

On Mon, Jan 25, 2010 at 4:40 AM, Maureen mamamaur...@gmail.com wrote:


 I would question why you would want to build it at all when so many
 already exist - in all languages.

 On Sun, Jan 24, 2010 at 11:39 PM, Carey  Duryea
 ca...@keepingitgreen.net wrote:
 
  i was positive there was some hook into creating more efficiency.  just
 like building a dragster, you basically can only go straight, but thats all
 you really wanna do!  i am sort of a beginning developer in CF and a few
 other technologies, but non such as java or C,  i have a potiential contract
 to build such a server device with a web application interface for control
 of these mailing actions.
  i know myself very well, that if i decide to contract this sort of work,
 i'll probably end up reading three books on java.  the more ya knwo, the
 less you pay, i wonder who coined that phrase.  so its like, build java
 application mail server, that exploits resourses, build flex cf web
 application as interface to server applicati

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330114
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion CPU Spinning|Spiking Problem week two.

2010-01-25 Thread Ian Skinner

On 1/25/2010 9:45 AM, b...@bradwood.com wrote:
 I think you might want to get dumps on all instances that are running
 including the base instance.  I don't have a multi-instance install of
 CF on me right now, so I can't quite remember if you have a jrun.exe
 process in windows for each of the instances.


Yes each ColdFusion instance is a separate jrun.exe running.
 Hmm, that's an interesting question.  I know SeeFusion's E-mail alerts
 include a thread dump, but you can't trigger an alert based on CPU
 usage.
 I'm not sure how useful random thread dumps would be from throughout the
 day while the server is running fine.
 I would start by trying to get thread dumps on every running instance.

 You aren't by chance using JRun clustering with session replication are
 you?  (Just a random thought)


Nope, nothing nearly that sophisticated.

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330115
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: regex

2010-01-25 Thread Peter Boughton

The only punctuation that \w matches is underscore.

To match hyphen also, use [\w-], which then gives the expression /[\w-]+/

(To match hyphen but not underscore [a-zA-Z0-9-] is what you want)

NOTE: The hyphen must be first/last in the class, or be escaped with a 
backslash.

To specifically ignore /images/filename.jpg you need to ensure the second 
slash is at the end of the string, (and the opening slash at the start), so use:

^/[\w-]+/$ 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330116
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Not Able to Get Trim Function to Work

2010-01-25 Thread Peter Boughton

What Justin should have put was this:

WHERE somefield = cfqueryparam value=#trim(form.field)# 
cfsqltype=cf_sql_varchar/

Always use cfqueryparam for user-supplied query values!


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330117
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


(ot) Adobe error messages

2010-01-25 Thread Qing Xia

I wonder how long it is going to take Adobe to replace all the
[Macromedia] in CF error messages to [Adobe].  Completely irrelevant
maybe, but nice to have so new CF people don't have to wonder.


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330118
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Adobe error messages

2010-01-25 Thread Eric Cobb

Considering that I still get Allaire errors all along, it's probably 
going to be a while.  ;-)

Thanks,

Eric Cobb
http://www.cfgears.com



Qing Xia wrote:
 I wonder how long it is going to take Adobe to replace all the
 [Macromedia] in CF error messages to [Adobe].  Completely irrelevant
 maybe, but nice to have so new CF people don't have to wonder.


 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330119
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Adobe error messages

2010-01-25 Thread Cameron Childress

On Mon, Jan 25, 2010 at 2:05 PM, Qing Xia txiasum...@gmail.com wrote:
 I wonder how long it is going to take Adobe to replace all the
 [Macromedia] in CF error messages to [Adobe].  Completely irrelevant
 maybe, but nice to have so new CF people don't have to wonder.

I can think of plenty of other things I would prefer Adobe engineers
spend their time doing.

-Camero

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330120
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: (ot) Adobe error messages

2010-01-25 Thread Andy Matthews

You only get Allaire errors because you code is really sucky.

Minor code problems get you Adobe messages.
Major code problems get you Macromedia errors.
Quit your day job code problems give you Allaire errors. 


andy

-Original Message-
From: Eric Cobb [mailto:cft...@ecartech.com] 
Sent: Monday, January 25, 2010 1:11 PM
To: cf-talk
Subject: Re: (ot) Adobe error messages


Considering that I still get Allaire errors all along, it's probably going
to be a while.  ;-)

Thanks,

Eric Cobb
http://www.cfgears.com



Qing Xia wrote:
 I wonder how long it is going to take Adobe to replace all the 
 [Macromedia] in CF error messages to [Adobe].  Completely 
 irrelevant maybe, but nice to have so new CF people don't have to wonder.


 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330121
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: (ot) Adobe error messages

2010-01-25 Thread DURETTE, STEVEN J (ATTASIAIT)

LOL!

-Original Message-
From: Andy Matthews [mailto:li...@commadelimited.com] 
Sent: Monday, January 25, 2010 2:51 PM
To: cf-talk
Subject: RE: (ot) Adobe error messages


You only get Allaire errors because you code is really sucky.

Minor code problems get you Adobe messages.
Major code problems get you Macromedia errors.
Quit your day job code problems give you Allaire errors. 


andy

-Original Message-
From: Eric Cobb [mailto:cft...@ecartech.com] 
Sent: Monday, January 25, 2010 1:11 PM
To: cf-talk
Subject: Re: (ot) Adobe error messages


Considering that I still get Allaire errors all along, it's probably
going
to be a while.  ;-)

Thanks,

Eric Cobb
http://www.cfgears.com



Qing Xia wrote:
 I wonder how long it is going to take Adobe to replace all the 
 [Macromedia] in CF error messages to [Adobe].  Completely 
 irrelevant maybe, but nice to have so new CF people don't have to
wonder.


 





~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330122
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Adobe error messages

2010-01-25 Thread Dave Watts

 I can think of plenty of other things I would prefer Adobe engineers
 spend their time doing.

I agree completely.

 -Camero

who?

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330123
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: (ot) Adobe error messages

2010-01-25 Thread DURETTE, STEVEN J (ATTASIAIT)

I don't know about that...  I think it would be a perfect project for
Junior Engineers just starting in the group to get into.

Gets them deep into the code without having them do anything too complex
to begin with!

Steve


-Original Message-
From: Dave Watts [mailto:dwa...@figleaf.com] 
Sent: Monday, January 25, 2010 3:18 PM
To: cf-talk
Subject: Re: (ot) Adobe error messages


 I can think of plenty of other things I would prefer Adobe engineers
 spend their time doing.

I agree completely.

 -Camero

who?

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330124
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: (ot) Adobe error messages

2010-01-25 Thread brad

Macromedia JRun for instance was never re-branded as an Adobe product. 
I kind of figured that had something to do with some of the Macromedia
errors I still see.

~Brad


 Original Message 
Subject: (ot) Adobe error messages
From: Qing Xia txiasum...@gmail.com
Date: Mon, January 25, 2010 1:05 pm
To: cf-talk cf-talk@houseoffusion.com


I wonder how long it is going to take Adobe to replace all the
[Macromedia] in CF error messages to [Adobe]. Completely irrelevant
maybe, but nice to have so new CF people don't have to wonder.




~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330125
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Email blast product to replace iMS

2010-01-25 Thread Kris Jones

What are folks using for blasting hundreds of thousands of emails a day?

We've been using iMS, but the product needs attention and the
company/support is unreachable (website is nonfunctional).

We need to be able to integrate w/ ColdFusion. Speed is an essential
requirement.

Cheers,
Kris

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330126
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Adobe error messages

2010-01-25 Thread Cameron Childress

On Mon, Jan 25, 2010 at 3:17 PM, Dave Watts dwa...@figleaf.com wrote:
 -Camero

 who?

Freakin line monster ate my name.

-Cameron

...

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330127
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Adobe error messages

2010-01-25 Thread Qing Xia

Kind of like tacit advertising if it can be fixed... But then on the other
hand, I agree this wouldn't be on the top of my wish list for Adobe.

I'd rather they fix the problem of not checking NULL=#YesNoFormat(NOT
isDefined('form.someFromField'))# in the CFQueryParam tag first.

On Mon, Jan 25, 2010 at 3:20 PM, DURETTE, STEVEN J (ATTASIAIT) 
sd1...@att.com wrote:


 I don't know about that...  I think it would be a perfect project for
 Junior Engineers just starting in the group to get into.

 Gets them deep into the code without having them do anything too complex
 to begin with!

 Steve


 -Original Message-
 From: Dave Watts [mailto:dwa...@figleaf.com]
 Sent: Monday, January 25, 2010 3:18 PM
 To: cf-talk
 Subject: Re: (ot) Adobe error messages


  I can think of plenty of other things I would prefer Adobe engineers
  spend their time doing.

 I agree completely.

  -Camero

 who?

 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 http://training.figleaf.com/

 Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
 GSA Schedule, and provides the highest caliber vendor-authorized
 instruction at our training centers, online, or onsite.



 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330128
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: language for mailer

2010-01-25 Thread Carey Duryea

well the more obvious reason is someone has offered a considerable amount of 
money for a version of this type of software.  Reason for this is, they can 
install it on as many servers as they would like without costing them 
additional monies, they can control the analytics produced because they have 
source code (or i would) They could have a controling interface for many server 
resources.  currently no one i have seen is giving you ANYTHING but a bill on a 
regular basis for alot of money.  i am in the position of being the developer 
potiential for this project. i wouldn't wanna go to the client and say,  hey 
here is a half baked solution that you don't own , that you would pay 5,000 a 
month for , but you can use three servers with one server instance.  and just 
sort of tell them its to hard to do.  whatever the number is to build the 
software i have to come up with. I know there are alot of companies doing 
something similar and extending licenses for the use of the software.  This is 
not a taylored solution that will work




I'd be the first to admit that I am a die-hard CF fan, but if you want an
off-the-shelf software solution, check out Campaign Enterprise:
http://www.arialsoftware.com/enterprise.htm

http://www.arialsoftware.com/enterprise.htmIt gives average users the
ability to create simple HTML email messages, where the recipient list can
be defined by a query pulling from your own backend database like SQL
server.

We have it at work, and for the most part, it gives us what we want.





~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330129
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Adobe error messages

2010-01-25 Thread Eric Cobb

Hey, if you're going to break something, do it right! 

Thanks,

Eric Cobb
http://www.cfgears.com



Andy Matthews wrote:
 You only get Allaire errors because you code is really sucky.

 Minor code problems get you Adobe messages.
 Major code problems get you Macromedia errors.
 Quit your day job code problems give you Allaire errors. 


 andy

 -Original Message-
 From: Eric Cobb [mailto:cft...@ecartech.com] 
 Sent: Monday, January 25, 2010 1:11 PM
 To: cf-talk
 Subject: Re: (ot) Adobe error messages


 Considering that I still get Allaire errors all along, it's probably going
 to be a while.  ;-)

 Thanks,

 Eric Cobb
 http://www.cfgears.com



 Qing Xia wrote:
   
 I wonder how long it is going to take Adobe to replace all the 
 [Macromedia] in CF error messages to [Adobe].  Completely 
 irrelevant maybe, but nice to have so new CF people don't have to wonder.



 



 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330130
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: regex

2010-01-25 Thread Mik Muller

Thanks. 

I'm using it in ISAPI-ReWrite to rewrite URLs. Although it works in the 
built-in regex tester (which is handy) it's not working on the server:

RewriteRule (^/[\w-]+/$) index.cfm\?name=$1 [NC,L]

Could be something else I think.  I'm working with the support guy.

Mik


At 01:29 PM 1/25/2010, you wrote:

The only punctuation that \w matches is underscore.

To match hyphen also, use [\w-], which then gives the expression /[\w-]+/

(To match hyphen but not underscore [a-zA-Z0-9-] is what you want)

NOTE: The hyphen must be first/last in the class, or be escaped with a 
backslash.

To specifically ignore /images/filename.jpg you need to ensure the second 
slash is at the end of the string, (and the opening slash at the start), so 
use:

^/[\w-]+/$ 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330131
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Error attempting to process PDF form...

2010-01-25 Thread Rick Faircloth

Hi, all.

 

This is my first foray into the use of PDF forms.

 

I'm getting this error:

 

An Exception has occurred in the processing of PDF forms.



The error occurred in D:\Inetpub\webroot\wsm-dev\misc\pdfTest.cfm: line 24
Called from D:\Inetpub\webroot\wsm-dev\misc\pdfTest.cfm: line 24
Called from D:\Inetpub\webroot\wsm-dev\misc\pdfTest.cfm: line 24
Called from D:\Inetpub\webroot\wsm-dev\misc\pdfTest.cfm: line 24

22 :cfpdfformparam name = lastName   value=Brown 

23 :cfpdfformparam name = firstName  value=Billy 

24 :cfpdfformparam name = middleName value=Bob   

25 : 

26 :/cfpdfform

 

When trying to run this code:

 

   cfpdfform  source  =  d:\clients\holtzman
rentals\documents\2010_0118_RentalApplication.pdf

   destination =  d:\clients\holtzman
rentals\documents\test.pdf

   action  =  populate 

 

   cfpdfformparam name =  rentalProperty  value=418 Club
Drive, Hinesville, GA 31313 

   cfpdfformparam name =  datevalue=Jan 25,
2010 

   cfpdfformparam name =  emailAddress
value=r...@whitestonemedia.com 

   cfpdfformparam name =  lastNamevalue=Faircloth


   cfpdfformparam name =  firstName   value=Carl


   cfpdfformparam name =  middleName  value=Richard


 

   /cfpdfform

 

There's more code after this, but I can't get past this code without the
error.

 

I created the PDF form using Nitro PDF Professional.  I'm imported a Word
doc and converted it into

a PDF which I'm populating with form fields.

 

One question I had was whether or not the CF 8 PDF tags would work with
anything not created by

Acrobat or LiveCycle.

 

If it will, what's the problem with the code above?

 

Thanks,

 

Rick

 

 

 


---

Those who hammer their guns into plows will plow for those who do not.  -
Thomas Jefferson

 




~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330132
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4