Re: For those who present at conferences (or want to)

2010-10-13 Thread Michael Grant

So it clearly has more awesome!

On Wed, Oct 13, 2010 at 1:29 AM, Sean Corfield seancorfi...@gmail.comwrote:


 On Mon, Oct 11, 2010 at 11:55 AM, Jeff Gladnick jeff.gladn...@gmail.com
 wrote:
  Consider using www.prezi.com instead of powerpoint/etc for your next
 presentation.  I've recently started experimenting with it (you can see my
 first attempt to convert my resume to a prezi here:
 http://www.jeffgladnick.com/).
 
  It allows for some really dynamic, interested presentation styles.  What
 I did is barely scratching the surface.

 I've seen a couple of examples of prezi.com stuff and it seems even
 more ADHD than PowerPoint. It's the blink tag of presentations,
 IMO...
 --
 Sean A Corfield -- (904) 302-SEAN
 Railo Technologies, Inc. -- http://getrailo.com/
 An Architect's View -- http://corfield.org/

 If you're not annoying somebody, you're not really alive.
 -- Margaret Atwo

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338109
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: jQuery and cfcontent

2010-10-13 Thread enigment

+1 for Dan's approach.

Dave

On Tue, Oct 12, 2010 at 10:12 PM, Dan G. Switzer, II
dswit...@pengoworks.com wrote:

 On Tuesday, October 12, 2010, Dave Watts dwa...@figleaf.com wrote:

 You can't prompt the user to download a file if you're invoking the
 URL with standard jQuery AJAX calls. You have to basically just fetch
 the URL into a new or blank window.

 I'd recommend posting to an iframe. You can even build the iframe
 dynamically if you want, it doesn't have to be visible on the page.
 I've used this technique in the past with great success.

 -Dan

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338110
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Detecting Mobile Devices

2010-10-13 Thread Steve LaBadie

I have just finished the development of a mobile site for our
university. I have placed a redirect script on the home page and
everything seems to be working. I was wondering if there is a more
streamlined approach to detecting the different devices. Right now I am
checking for specific brands. I can see this list expanding as more
devices come on the market. Any thoughts.

 

 

cfif findNoCase('blackberry', CGI.HTTP_USER_AGENT)

cflocation url=http://esu.mpill.me; addtoken=no

cfelseif findNoCase('iphone', CGI.HTTP_USER_AGENT)

cflocation url=http://esu.mpill.me; addtoken=no

cfelseif findNoCase('droid', CGI.HTTP_USER_AGENT)

cflocation url=http://esu.mpill.me; addtoken=no

cfelseif CGI.HTTP_ACCEPT CONTAINS text/vnd.wap.wml

cflocation url=http://esu.mpill.me; addtoken=no

/cfif

 

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 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338111
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Detecting Mobile Devices

2010-10-13 Thread Andy Matthews

I'd put all this in a function, and run the user agent string through it.
Then use the function call to return a boolean. Also, I found this function
on CFLib.org. 

http://cflib.org/index.cfm?event=page.udfbyidudfid=1887

Might be worth giving it a try.



andy


-Original Message-
From: Steve LaBadie [mailto:slaba...@po-box.esu.edu] 
Sent: Wednesday, October 13, 2010 8:16 AM
To: cf-talk
Subject: Detecting Mobile Devices


I have just finished the development of a mobile site for our university. I
have placed a redirect script on the home page and everything seems to be
working. I was wondering if there is a more streamlined approach to
detecting the different devices. Right now I am checking for specific
brands. I can see this list expanding as more devices come on the market.
Any thoughts.

 

 

cfif findNoCase('blackberry', CGI.HTTP_USER_AGENT)

cflocation url=http://esu.mpill.me; addtoken=no

cfelseif findNoCase('iphone', CGI.HTTP_USER_AGENT)

cflocation url=http://esu.mpill.me; addtoken=no

cfelseif findNoCase('droid', CGI.HTTP_USER_AGENT)

cflocation url=http://esu.mpill.me; addtoken=no

cfelseif CGI.HTTP_ACCEPT CONTAINS text/vnd.wap.wml

cflocation url=http://esu.mpill.me; addtoken=no

/cfif

 

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 





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338112
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Detecting Mobile Devices

2010-10-13 Thread Dave Watts

 I have just finished the development of a mobile site for our
 university. I have placed a redirect script on the home page and
 everything seems to be working. I was wondering if there is a more
 streamlined approach to detecting the different devices. Right now I am
 checking for specific brands. I can see this list expanding as more
 devices come on the market. Any thoughts.

 cfif findNoCase('blackberry', CGI.HTTP_USER_AGENT)
 cflocation url=http://esu.mpill.me; addtoken=no
 cfelseif findNoCase('iphone', CGI.HTTP_USER_AGENT)
 cflocation url=http://esu.mpill.me; addtoken=no
 cfelseif findNoCase('droid', CGI.HTTP_USER_AGENT)
 cflocation url=http://esu.mpill.me; addtoken=no
 cfelseif CGI.HTTP_ACCEPT CONTAINS text/vnd.wap.wml
 cflocation url=http://esu.mpill.me; addtoken=no
 /cfif

Well, my first recommendation might have been to use mobile
stylesheets instead of creating a separate site, but it's probably too
late for that.

My second recommendation might be to use the scripts here:

http://detectmobilebrowser.com/

Click on the Download Scripts link in the middle of the page, then
choose ColdFusion.

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.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338113
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Detecting Mobile Devices

2010-10-13 Thread James Holmes

Try WURFL:

http://wurfl.sourceforge.net/

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 13 October 2010 21:16, Steve LaBadie slaba...@po-box.esu.edu wrote:

 I have just finished the development of a mobile site for our
 university. I have placed a redirect script on the home page and
 everything seems to be working. I was wondering if there is a more
 streamlined approach to detecting the different devices. Right now I am
 checking for specific brands. I can see this list expanding as more
 devices come on the market. Any thoughts.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338114
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Best practice for backup of CF Application server?

2010-10-13 Thread Chuck Wyatt

We're running ColdFusion 9, and I understand we can backup the XML files in 
Web-INF to get the datasource meta data for a less troublesome restore, God 
forbid we'd have to do that at any point.

Aside from CFM templates of the site itself, should we also backup the CFIDE 
tree? Anything else that would be a good practice in the event we'd need to 
recover a site on short notice?

Thanks so much,

Chuck 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338115
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Best practice for backup of CF Application server?

2010-10-13 Thread Dave Watts

 We're running ColdFusion 9, and I understand we can backup the XML files in 
 Web-INF to get the datasource meta data for a
 less troublesome restore, God forbid we'd have to do that at any point.

 Aside from CFM templates of the site itself, should we also backup the CFIDE 
 tree? Anything else that would be a good practice
 in the event we'd need to recover a site on short notice?

You might want to back up your web server configuration also - there's
typically a bunch of important details in there. If you're using
Apache, this is typically very easy to do. If you're using IIS, you
can explicitly back up the entire metabase (or whatever they call it
now) or specific items.

If you're using SSL certificates, you want to make sure you have the
certificate files (including CSRs) backed up somewhere also.

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.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338116
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Best practice for backup of CF Application server?

2010-10-13 Thread Russ Michaels

actually you can take a copy of the whole coldfusion install folder, and if
you have to reinstall CF, you can just copy it over the top and everything
will be restored.
Stopping the services first of course.
We have also used this method to roll back after a failed cf 9.0.1 upgrade.


Russ


On Wed, Oct 13, 2010 at 3:23 PM, Chuck Wyatt cwy...@clarku.edu wrote:


 We're running ColdFusion 9, and I understand we can backup the XML files in
 Web-INF to get the datasource meta data for a less troublesome restore,
 God forbid we'd have to do that at any point.

 Aside from CFM templates of the site itself, should we also backup the
 CFIDE tree? Anything else that would be a good practice in the event we'd
 need to recover a site on short notice?

 Thanks so much,

 Chuck

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338117
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


cfquery and carriage return

2010-10-13 Thread Richard White

Hi,

i have data stored in the database with a carriage return. however, when 
coldfusion pulls the data out with cfquery it seems to lose the carriage 
return, i dump out the query and it doesnt show the carriage return. i tried 
looping through each character in the string and outputting the ascii value and 
none show the character 13 for carriage return

does anyone know why this happens and how to get around it.

thanks  

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338118
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Best practice for backup of CF Application server?

2010-10-13 Thread Justin Scott

 You might want to back up your web server configuration also

For IIS6, here is the batch file we use to perform a scheduled backup of the
metabase as well as an XML export.  Hopefully it can benefit anyone else out
there who isn't backing up their metabase regularly.  (Note: gf-bigmama is a
file server which holds our initial backups before they get shipped
off-site, so replace that with a path you're comfortable with)

@echo off
md \\gf-bigmama\metabases\%computername%
cd %SystemRoot%\system32
cscript.exe iisback.vbs /backup /b SchedBackup /v 0 /overwrite
del \\gf-bigmama\metabases\%computername%\%computername%.xml
cscript iiscnfg.vbs /export /f
\\gf-bigmama\metabases\%computername%\%computername%.xml /sp /lm /inherited
/children
MOVE %SystemRoot%\system32\inetsrv\MetaBack\SchedBackup.*
\\gf-bigmama\metabases\%computername%


My understanding for IIS7 is that any configuration changes made to a site
are written to web.config in the site's root folder, so backing up that file
along with the rest of the site brings its settings along with it.  I'm not
familiar with where IIS7 stores its actual site listing though, I'm fairly
certain they did away with the metabase itself though.  I suspect there's
some XML file hanging out somewhere that would just need to be copied.


-Justin



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338119
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfquery and carriage return

2010-10-13 Thread Richard White

alternatively could the problem be before the data is put into mysql. basically 
we are using an extjs text area to collect data, that passes the data over to a 
form which we put straight in the database. should we be doing anything with 
that data such as escaping it? 

 Hi,
 
 i have data stored in the database with a carriage return. however, 
 when coldfusion pulls the data out with cfquery it seems to lose the 
 carriage return, i dump out the query and it doesnt show the carriage 
 return. i tried looping through each character in the string and 
 outputting the ascii value and none show the character 13 for carriage 
 return
 
 does anyone know why this happens and how to get around it.
 
 thanks  


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338120
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Best practice for backup of CF Application server?

2010-10-13 Thread Jacob

For CF application... I backup the XML files and custom tags when I make
changes.

All of our templates are on a separate hard drive in the server and that is
backed up every night.

-Original Message-
From: Chuck Wyatt [mailto:cwy...@clarku.edu] 
Sent: Wednesday, October 13, 2010 7:23 AM
To: cf-talk
Subject: Best practice for backup of CF Application server?


We're running ColdFusion 9, and I understand we can backup the XML files in
Web-INF to get the datasource meta data for a less troublesome restore,
God forbid we'd have to do that at any point.

Aside from CFM templates of the site itself, should we also backup the CFIDE
tree? Anything else that would be a good practice in the event we'd need to
recover a site on short notice?

Thanks so much,

Chuck 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338121
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


gamma correction in CF9 images

2010-10-13 Thread Bert Dawson

Does anyone know if its possible to do gamma correction using the built in
image processing in CF9?

Cheers
Bert


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338122
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


architecture mismatch

2010-10-13 Thread steve ebeling

new CF8 student. One project used Apache Derby Embedded drivers and all was 
well. On the second it called for Microsoft Access drivers and I get this 
issue.  I am using a Gateway w/ Windows7 Home Premium 64bit sys. I have read of 
32/64bit issues and understand the idea, but would not know how to implement a 
change.
thanks 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338123
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Java/.NET based SWF to EXE conversion

2010-10-13 Thread Eric Roberts

In the absebce of a workaround for the 64bit COM object issue, does anyone
know of any Java or .NET solutions for take a flash SWF file and turning it
into an executable (essentially making a screen saver)?  I found a .Net
one,but the documentation was extremely lacking and I don;t know .Net and
have never accessed .Net classes in CF before. It's located here...
http://www.thesilentgroup.com/fluorine/projector.htm  If anyone has any
insight on how to implement this, I could use the advice.  Thanks!

Eric


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338124
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: architecture mismatch

2010-10-13 Thread Russ Michaels

there is no 64bit ODBC drivers, however if you use 32bit mode it will work
fine.

On Wed, Oct 13, 2010 at 6:30 PM, steve ebeling stephen.ebel...@gmail.comwrote:


 new CF8 student. One project used Apache Derby Embedded drivers and all was
 well. On the second it called for Microsoft Access drivers and I get this
 issue.  I am using a Gateway w/ Windows7 Home Premium 64bit sys. I have read
 of 32/64bit issues and understand the idea, but would not know how to
 implement a change.
 thanks

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338125
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: architecture mismatch

2010-10-13 Thread Dave Watts

 new CF8 student. One project used Apache Derby Embedded drivers and all was 
 well. On the second it called for Microsoft
 Access drivers and I get this issue.  I am using a Gateway w/ Windows7 Home 
 Premium 64bit sys. I have read of 32/64bit issues
 and understand the idea, but would not know how to implement a change.

This looks like it answers your questions in detail.

http://www.cfexecute.com/post/access-dsns-in-64bit-coldfusion

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

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338126
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: architecture mismatch

2010-10-13 Thread Eric Cobb

We ran into this just a couple of weeks ago on Win 7 64bit.  I had to 
run this to set up 32bit drivers:  c:\windows\sysWOW64\odbcad32.exe.

Thanks,

Eric Cobb
ECAR Technologies, LLC
http://www.ecartech.com
http://www.cfgears.com



steve ebeling wrote:
 new CF8 student. One project used Apache Derby Embedded drivers and all was 
 well. On the second it called for Microsoft Access drivers and I get this 
 issue.  I am using a Gateway w/ Windows7 Home Premium 64bit sys. I have read 
 of 32/64bit issues and understand the idea, but would not know how to 
 implement a change.
 thanks 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338127
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: 32-bit / 64-bit COM object issues in ColdFusion 9

2010-10-13 Thread Cameron Childress

On Tue, Oct 12, 2010 at 5:24 PM, Eric Roberts
ow...@threeravensconsulting.com wrote:
 We don't do auto updates...so I doubt there was anything updated.

It might be worth looking at the server's update history just to make
sure.  Even an old update may not have taken effect till a restart (if
you restarted lately).  Other than that, I don't have anything else
useful to add...

-Cameron

-- 
Cameron Childress
Sumo Consulting Inc
http://www.sumoc.com
---
cell:  678.637.5072
aim:   cameroncf
email: camer...@gmail.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338128
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: 32-bit / 64-bit COM object issues in ColdFusion 9

2010-10-13 Thread Eric Roberts

No it gets restarted often as we are doing a lot of testing on it before it 
becomes a real production server.  Thanks anyway man ;-)

I think I just need to find a Java or .Net solution as I don't think i am 
getting anywhere with COM objects.

Eric

 We don't do auto updates...so I doubt there was anything updated.

It might be worth looking at the server's update history just to make
sure.  Even an old update may not have taken effect till a restart (if
you restarted lately).  Other than that, I don't have anything else
useful to add...

-Cameron

-- 
Cameron Childress
Sumo Consulting Inc
http://www.sumoc.com
---
cell:  678.637.5072
aim:   cameroncf
email: camer...@gmail.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338129
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Problem with funky wsdl

2010-10-13 Thread Rick Root

Okay, I've been handled a WSDL for a service that our SAP folks have
built for me.

http://www.it.dev.duke.edu/public/wsdl.txt

#1 - I had to comment all the wsp: tags because coldfusion wouldn't
read the WSDL at all.  I don't know what they're for so that's one of
my issues.

#2 - I'm having some trouble with the input/output stuff.

For example, I'm able to call the service with this statement:

cfinvoke
webservice = https://SERVER/path/to/file.wsdl;
method = ZAdvWebServOptOut
username = Z_ADV_OPTOUT
password = ma1l0ptout
returnVariable = foo
refreshWSDL = yes
cfinvokeargument name=email value=rick.r...@gmail.com
cfinvokeargument name=optcode value=AAA21
cfinvokeargument name=msgtab value=
cfinvokeargument name=_return value=
/cfinvoke 

This is odd because the service has input and outputs which are
complex types, and each has two elements in the complex types, but It
works only if I pass in four variables.

Problem #3 is that although the web service call executes and does not
fail (I don't know if it works or not), the output, which I've defined
to go to foo is not defined.  I'm guessing because the service is
somehow designed to put its response into the 3rd and 4th arguments
but.. hell if I know how to get to them after i've executed the call!

Rick

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338130
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CF8 32bit on Win Server 2008 64bit issues

2010-10-13 Thread Wil Genovese

Has anyone noticed slow downs or pauses when running CF8 32bit on Win Server 
2008 64bit?  I'm trying to figure out a weird issue with this.  


Wil Genovese

One man with courage makes a majority.
-Andrew Jackson

A fine is a tax for doing wrong. A tax is a fine for doing well. 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338131
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Problem with funky wsdl

2010-10-13 Thread Russ Michaels

Rick,

the ws-policy elements in the metadata document is due to the security
setting (transport https + windows auth). Because WCF uses WS-POLICY
protocol for adding security related description info (together with the
WSDL for service endpoints and operations) in metadata document.
It may be that AXIS does not support this, you may have to check on the
apache  axis site.

This may enlighten you
http://msdn.microsoft.com/en-us/library/ms730294.aspx

Russ
-Original Message-
From: Rick Root [mailto:rick.r...@gmail.com] 
Sent: 13 October 2010 19:31
To: cf-talk
Subject: Problem with funky wsdl


Okay, I've been handled a WSDL for a service that our SAP folks have built
for me.

http://www.it.dev.duke.edu/public/wsdl.txt

#1 - I had to comment all the wsp: tags because coldfusion wouldn't read
the WSDL at all.  I don't know what they're for so that's one of my issues.

#2 - I'm having some trouble with the input/output stuff.

For example, I'm able to call the service with this statement:

cfinvoke
webservice = https://SERVER/path/to/file.wsdl;
method = ZAdvWebServOptOut
username = Z_ADV_OPTOUT
password = ma1l0ptout
returnVariable = foo
refreshWSDL = yes
cfinvokeargument name=email value=rick.r...@gmail.com
cfinvokeargument name=optcode value=AAA21
cfinvokeargument name=msgtab value=
cfinvokeargument name=_return value=
/cfinvoke 

This is odd because the service has input and outputs which are complex
types, and each has two elements in the complex types, but It works only if
I pass in four variables.

Problem #3 is that although the web service call executes and does not fail
(I don't know if it works or not), the output, which I've defined to go to
foo is not defined.  I'm guessing because the service is somehow designed
to put its response into the 3rd and 4th arguments but.. hell if I know how
to get to them after i've executed the call!

Rick



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338132
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Problem with funky wsdl

2010-10-13 Thread Rick Root

Thanks Russ...

I don't believe Axis supports ws-policy, though Axis2 does..

I've found some articles about using Apache CXF, and that does support
ws-policy so I guess if this ws-policy stuff is actually required I'll
might need to go that route.

Rick

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338133
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Subversion Software

2010-10-13 Thread Paul Alkema

Hey All,

I'm looking to set up a subversion server and was wondering what types of
subversion servers you all have set up and what software do you use to
manage it?

 

Paul Alkema



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338134
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Subversion Software

2010-10-13 Thread David McGraw

Honestly, save your self a ton of headache and worry and go with Beanstalk.
It's a hosted solution, for something like 15$ a month, allow a ton of
repositories, a super easy one click release and management interface on the
web... And I do not work for them, it's just a much better solution than
worrying about maintaining your own server.  http://www.beanstalkapp.com/

Regards,
David McGraw
Oyova Software, LLC http://www.oyova.com
Website Help, Design, and Development http://www.oyova.com

On Wed, Oct 13, 2010 at 3:08 PM, Paul Alkema paulalkemadesi...@gmail.comwrote:


 Hey All,

 I'm looking to set up a subversion server and was wondering what types of
 subversion servers you all have set up and what software do you use to
 manage it?



 Paul Alkema



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338135
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Subversion Software

2010-10-13 Thread Rick Root

I like VisualSVN because I'm lazy and windows based =)

http://www.visualsvn.com/server/


On Wed, Oct 13, 2010 at 3:08 PM, Paul Alkema
paulalkemadesi...@gmail.com wrote:

 Hey All,

 I'm looking to set up a subversion server and was wondering what types of
 subversion servers you all have set up and what software do you use to
 manage it?



 Paul Alkema



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338136
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Subversion Software

2010-10-13 Thread Eric Cobb

1998 model Dell Dimension, Pentium III with 750MB RAM and Apache.  Works 
great.  :)

Thanks,

Eric Cobb
ECAR Technologies, LLC
http://www.ecartech.com
http://www.cfgears.com



Paul Alkema wrote:
 Hey All,

 I'm looking to set up a subversion server and was wondering what types of
 subversion servers you all have set up and what software do you use to
 manage it?

  

 Paul Alkema



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338137
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Subversion Software

2010-10-13 Thread Rick Root

On Wed, Oct 13, 2010 at 3:14 PM, Rick Root rick.r...@gmail.com wrote:
 I like VisualSVN because I'm lazy and windows based =)

 http://www.visualsvn.com/server/

and it's free and super easy to install/setup.

Rick

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338138
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Subversion Software

2010-10-13 Thread Wil Genovese

I have a simple Linux server with Apache and the WebDav mod installed.

Centos or Ubuntu Server will let you do this very easily.  Otherwise, if you 
want a simple cheap full featured solution, including wiki, trak, ticketing, 
etc, try one of the many free or cheap hosted solutions.

Assembla.com is just one of many.

Wil Genovese
Sr. Web Application Developer/
Systems Administrator

wilg...@trunkful.com
www.trunkful.com

On Oct 13, 2010, at 2:08 PM, Paul Alkema wrote:

 
 Hey All,
 
 I'm looking to set up a subversion server and was wondering what types of
 subversion servers you all have set up and what software do you use to
 manage it?
 
 
 
 Paul Alkema
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338139
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Subversion Software

2010-10-13 Thread John M Bliss

+1 VisualSVN

On Wed, Oct 13, 2010 at 2:17 PM, Wil Genovese jugg...@trunkful.com wrote:


 I have a simple Linux server with Apache and the WebDav mod installed.

 Centos or Ubuntu Server will let you do this very easily.  Otherwise, if
 you want a simple cheap full featured solution, including wiki, trak,
 ticketing, etc, try one of the many free or cheap hosted solutions.

 Assembla.com is just one of many.

 Wil Genovese
 Sr. Web Application Developer/
 Systems Administrator

 wilg...@trunkful.com
 www.trunkful.com

 On Oct 13, 2010, at 2:08 PM, Paul Alkema wrote:

 
  Hey All,
 
  I'm looking to set up a subversion server and was wondering what types of
  subversion servers you all have set up and what software do you use to
  manage it?
 
 
 
  Paul Alkema
 
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338140
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Looping over Query that's contained in a structure.

2010-10-13 Thread Che Vilnonis

I have a structure, Q. In it, I have several vars and a query,
LINEITEMS. I'm having a brainfart, how can I loop over the query
LINEITEMS that's in my structure?

See link for screen dump of the structure:
http://www.asitv.com/images/dump_ss.jpg

Thanks, Che



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338141
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Looping over Query that's contained in a structure.

2010-10-13 Thread Leigh

cfloop query=structName.lineItems ..



  

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338142
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Looping over Query that's contained in a structure.

2010-10-13 Thread Che Vilnonis

I tried that. I get, The value of the attribute query, which is currently
q.lineitems, is invalid.
I also tried  cfloop query=q[lineItems] and cfloop
query=q[lineItems][resultset]... No luck with either.

-Original Message-
From: Leigh [mailto:cfsearch...@yahoo.com] 
Sent: Wednesday, October 13, 2010 4:03 PM
To: cf-talk
Subject: Re: Looping over Query that's contained in a structure.


cfloop query=structName.lineItems ..



  



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338143
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Looping over Query that's contained in a structure.

2010-10-13 Thread Cameron Childress

cfloop query=#q['lineItems']#

Pound signs, and single ticks to demote 'lineitems' is not a variable
name, but a string.

-Cameron

-- 
Cameron Childress
Sumo Consulting Inc
http://www.sumoc.com
---
cell:  678.637.5072
aim:   cameroncf
email: camer...@gmail.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338144
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Looping over Query that's contained in a structure.

2010-10-13 Thread David McGraw

Could be becuase your structure key is LineTEMS, not LineItems...   Spelling
is sometimes the worst bug to catch.

David McGraw
Oyova Software, LLC
http://www.oyova.com

On Wed, Oct 13, 2010 at 4:09 PM, Cameron Childress camer...@gmail.comwrote:


 cfloop query=#q['lineItems']#

 Pound signs, and single ticks to demote 'lineitems' is not a variable
 name, but a string.

 -Cameron

 --
 Cameron Childress
 Sumo Consulting Inc
 http://www.sumoc.com
 ---
 cell:  678.637.5072
 aim:   cameroncf
 email: camer...@gmail.

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338145
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Looping over Query that's contained in a structure.

2010-10-13 Thread Che Vilnonis

I dispise typos. Sorry to bother everyone. 

-Original Message-
From: David McGraw [mailto:david.mcg...@gmail.com] 
Sent: Wednesday, October 13, 2010 4:13 PM
To: cf-talk
Subject: Re: Looping over Query that's contained in a structure.


Could be becuase your structure key is LineTEMS, not LineItems...   Spelling
is sometimes the worst bug to catch.

David McGraw
Oyova Software, LLC
http://www.oyova.com



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338146
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Looping over Query that's contained in a structure.

2010-10-13 Thread Eric Cobb

You misspelled lineitems in your query.  The cfdump you showed us has 
it spelled LINETEMS (missing an I).

Thanks,

Eric Cobb
ECAR Technologies, LLC
http://www.ecartech.com
http://www.cfgears.com



Che Vilnonis wrote:
 I tried that. I get, The value of the attribute query, which is currently
 q.lineitems, is invalid.
 I also tried  cfloop query=q[lineItems] and cfloop
 query=q[lineItems][resultset]... No luck with either.

 -Original Message-
 From: Leigh [mailto:cfsearch...@yahoo.com] 
 Sent: Wednesday, October 13, 2010 4:03 PM
 To: cf-talk
 Subject: Re: Looping over Query that's contained in a structure.


 cfloop query=structName.lineItems ..



   



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338147
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Detecting Mobile Devices

2010-10-13 Thread Steve LaBadie

Thanks for the info everyone.

Steve LaBadie, Web Manager
East Stroudsburg University
200 Prospect St.
East Stroudsburg, Pa 18301
570-422-3999
http://www.esu.edu
slaba...@po-box.esu.edu
-Original Message-
From: James Holmes [mailto:james.hol...@gmail.com] 
Sent: Wednesday, October 13, 2010 9:57 AM
To: cf-talk
Subject: Re: Detecting Mobile Devices


Try WURFL:

http://wurfl.sourceforge.net/

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 13 October 2010 21:16, Steve LaBadie slaba...@po-box.esu.edu wrote:

 I have just finished the development of a mobile site for our
 university. I have placed a redirect script on the home page and
 everything seems to be working. I was wondering if there is a more
 streamlined approach to detecting the different devices. Right now I
am
 checking for specific brands. I can see this list expanding as more
 devices come on the market. Any thoughts.



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338148
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Gone Brain dead

2010-10-13 Thread Robert Harrison

I must have gone brain dead. Seem to me like I should be able to set field
names with a value but it's not working. Know I've done something like this
before (this is just a sample of function... not the code):


cfloop from=1 to=20 index=i
cfoutput
cfset column_#i#=#evaluate(post#i#_data)#
/cfoutput
/cfloop

I should get 20 fields, column_1 through column_20 but it's not liking the
#i# being used to build the column_X fields. 

What am I doing wrong?


Robert B. Harrison
Director of Interactive Services
Austin  Williams
125 Kennedy Drive, Suite 100 
Hauppauge NY 11788
P : 631.231.6600 Ext. 119 
F : 631.434.7022
http://www.austin-williams.com 

Great advertising can't be either/or.  It must be .

Plug in to our blog: AW Unplugged
http://www.austin-williams.com/unplugged

 

__ Information from ESET Smart Security, version of virus signature
database 5529 (20101013) __

The message was checked by ESET Smart Security.

http://www.eset.com
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338149
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Subversion Software

2010-10-13 Thread Nick Gleason

Hi there.  Codesion (used to be cvs dude) has worked well for us over the
years.

Nick



 -Original Message-
 From: John M Bliss [mailto:bliss.j...@gmail.com]
 Sent: Wednesday, October 13, 2010 12:22 PM
 To: cf-talk
 Subject: Re: Subversion Software
 
 
 +1 VisualSVN
 
 On Wed, Oct 13, 2010 at 2:17 PM, Wil Genovese jugg...@trunkful.com
 wrote:
 
 
  I have a simple Linux server with Apache and the WebDav mod
 installed.
 
  Centos or Ubuntu Server will let you do this very easily.  Otherwise,
 if
  you want a simple cheap full featured solution, including wiki, trak,
  ticketing, etc, try one of the many free or cheap hosted solutions.
 
  Assembla.com is just one of many.
 
  Wil Genovese
  Sr. Web Application Developer/
  Systems Administrator
 
  wilg...@trunkful.com
  www.trunkful.com
 
  On Oct 13, 2010, at 2:08 PM, Paul Alkema wrote:
 
  
   Hey All,
  
   I'm looking to set up a subversion server and was wondering what
 types of
   subversion servers you all have set up and what software do you use
 to
   manage it?
  
  
  
   Paul Alkema
  
  
  
  
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338150
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Gone Brain dead

2010-10-13 Thread John M Bliss

Why not use an array...?

cfset column = ArrayNew(1)
cfloop from=1 to=20 index=i
  cfset column[i] = Evaluate(post  i  _data)
/cfloop

On Wed, Oct 13, 2010 at 3:20 PM, Robert Harrison rob...@austin-williams.com
 wrote:


 I must have gone brain dead. Seem to me like I should be able to set field
 names with a value but it's not working. Know I've done something like this
 before (this is just a sample of function... not the code):


 cfloop from=1 to=20 index=i
cfoutput
cfset column_#i#=#evaluate(post#i#_data)#
/cfoutput
 /cfloop

 I should get 20 fields, column_1 through column_20 but it's not liking the
 #i# being used to build the column_X fields.

 What am I doing wrong?


 Robert B. Harrison
 Director of Interactive Services
 Austin  Williams
 125 Kennedy Drive, Suite 100
 Hauppauge NY 11788
 P : 631.231.6600 Ext. 119
 F : 631.434.7022
 http://www.austin-williams.com

 Great advertising can't be either/or.  It must be .

 Plug in to our blog: AW Unplugged
 http://www.austin-williams.com/unplugged



 __ Information from ESET Smart Security, version of virus signature
 database 5529 (20101013) __

 The message was checked by ESET Smart Security.

 http://www.eset.com


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338151
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Gone Brain dead

2010-10-13 Thread Dave Watts

 I must have gone brain dead. Seem to me like I should be able to set field
 names with a value but it's not working. Know I've done something like this
 before (this is just a sample of function... not the code):

 cfloop from=1 to=20 index=i
        cfoutput
        cfset column_#i#=#evaluate(post#i#_data)#
        /cfoutput
 /cfloop

 I should get 20 fields, column_1 through column_20 but it's not liking the
 #i# being used to build the column_X fields.

 What am I doing wrong?

Any time you have nested hash marks, that's a good sign things aren't
right. Replace

cfset column_#i#=#evaluate(post#i#_data)#

with

cfset column_#i# = evaluate(post  i  _data)

or

cfset Variables[column_#i#] = evaluate(post  i  _data)

or

cfset Variables[column_  i] = evaluate(post  i  _data)

Or consider using an array for your column values.

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

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338152
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Gone Brain dead

2010-10-13 Thread Eric Cobb

 Any time you have nested hash marks, that's a good sign things aren't 
right.

I like that.  I'm going to have to store it in my quote arsenal. 

Thanks,

Eric Cobb
ECAR Technologies, LLC
http://www.ecartech.com
http://www.cfgears.com



Dave Watts wrote:
 I must have gone brain dead. Seem to me like I should be able to set field
 names with a value but it's not working. Know I've done something like this
 before (this is just a sample of function... not the code):

 cfloop from=1 to=20 index=i
cfoutput
cfset column_#i#=#evaluate(post#i#_data)#
/cfoutput
 /cfloop

 I should get 20 fields, column_1 through column_20 but it's not liking the
 #i# being used to build the column_X fields.

 What am I doing wrong?
 

 Any time you have nested hash marks, that's a good sign things aren't
 right. Replace

 cfset column_#i#=#evaluate(post#i#_data)#

 with

 cfset column_#i# = evaluate(post  i  _data)

 or

 cfset Variables[column_#i#] = evaluate(post  i  _data)

 or

 cfset Variables[column_  i] = evaluate(post  i  _data)

 Or consider using an array for your column values.

 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

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338153
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Looping over Query that's contained in a structure.

2010-10-13 Thread Leigh

 I dispise typos. Sorry to bother everyone. 

ROFL. I can totally relate ;-)


  

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338154
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Gone Brain dead

2010-10-13 Thread Justin Scott

 #i# being used to build the column_X fields.

I think the only one Dave didn't mention was the setVariable() function:

cfset setVariable(column_#i#, evaluate(post  i  _data)) /


-Justin



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338155
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Subversion Software

2010-10-13 Thread Gerald Guido

 Assembla.com is just one of many.

2 gig free? Schweet. I am pretty close to pegging my free unfuddle accounts.

Nice call. Thanx Wil!

G!

On Wed, Oct 13, 2010 at 3:17 PM, Wil Genovese jugg...@trunkful.com wrote:


 I have a simple Linux server with Apache and the WebDav mod installed.

 Centos or Ubuntu Server will let you do this very easily.  Otherwise, if
 you want a simple cheap full featured solution, including wiki, trak,
 ticketing, etc, try one of the many free or cheap hosted solutions.



 Wil Genovese
 Sr. Web Application Developer/
 Systems Administrator

 wilg...@trunkful.com
 www.trunkful.com

 On Oct 13, 2010, at 2:08 PM, Paul Alkema wrote:

 
  Hey All,
 
  I'm looking to set up a subversion server and was wondering what types of
  subversion servers you all have set up and what software do you use to
  manage it?
 
 
 
  Paul Alkema
 
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338156
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Gone Brain dead

2010-10-13 Thread Brook Davies

Why use eval at all?

cfloop from=1 to=20 index=i
  cfif structKeyExists(form, 'post#i#_data')
cfset variables['column_#i#']  = form['post#i#_data']
  /cfif
/cfloop



-Original Message-
From: Dave Watts [mailto:dwa...@figleaf.com] 
Sent: October-13-10 1:28 PM
To: cf-talk
Subject: Re: Gone Brain dead


 I must have gone brain dead. Seem to me like I should be able to set field
 names with a value but it's not working. Know I've done something like
this
 before (this is just a sample of function... not the code):

 cfloop from=1 to=20 index=i
        cfoutput
        cfset column_#i#=#evaluate(post#i#_data)#
        /cfoutput
 /cfloop

 I should get 20 fields, column_1 through column_20 but it's not liking the
 #i# being used to build the column_X fields.

 What am I doing wrong?

Any time you have nested hash marks, that's a good sign things aren't
right. Replace

cfset column_#i#=#evaluate(post#i#_data)#

with

cfset column_#i# = evaluate(post  i  _data)

or

cfset Variables[column_#i#] = evaluate(post  i  _data)

or

cfset Variables[column_  i] = evaluate(post  i  _data)

Or consider using an array for your column values.

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



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338157
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Detecting Mobile Devices

2010-10-13 Thread Eric Roberts

That regex gave me a headache...wow! hehehehe

Eric

-Original Message-
From: Dave Watts [mailto:dwa...@figleaf.com] 
Sent: Wednesday, October 13, 2010 9:54 AM
To: cf-talk
Subject: Re: Detecting Mobile Devices


 I have just finished the development of a mobile site for our
 university. I have placed a redirect script on the home page and
 everything seems to be working. I was wondering if there is a more
 streamlined approach to detecting the different devices. Right now I am
 checking for specific brands. I can see this list expanding as more
 devices come on the market. Any thoughts.

 cfif findNoCase('blackberry', CGI.HTTP_USER_AGENT)
 cflocation url=http://esu.mpill.me; addtoken=no
 cfelseif findNoCase('iphone', CGI.HTTP_USER_AGENT)
 cflocation url=http://esu.mpill.me; addtoken=no
 cfelseif findNoCase('droid', CGI.HTTP_USER_AGENT)
 cflocation url=http://esu.mpill.me; addtoken=no
 cfelseif CGI.HTTP_ACCEPT CONTAINS text/vnd.wap.wml
 cflocation url=http://esu.mpill.me; addtoken=no
 /cfif

Well, my first recommendation might have been to use mobile
stylesheets instead of creating a separate site, but it's probably too
late for that.

My second recommendation might be to use the scripts here:

http://detectmobilebrowser.com/

Click on the Download Scripts link in the middle of the page, then
choose ColdFusion.

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.



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338158
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Looping over Query that's contained in a structure.

2010-10-13 Thread Michael Grant

I don't know what's funnier. Dispise being intentional or not.


On Wed, Oct 13, 2010 at 4:16 PM, Che Vilnonis ch...@asitv.com wrote:


 I dispise typos. Sorry to bother everyone.

 -Original Message-
 From: David McGraw [mailto:david.mcg...@gmail.com]
 Sent: Wednesday, October 13, 2010 4:13 PM
 To: cf-talk
 Subject: Re: Looping over Query that's contained in a structure.


 Could be becuase your structure key is LineTEMS, not LineItems...
 Spelling
 is sometimes the worst bug to catch.

 David McGraw
 Oyova Software, LLC
 http://www.oyova.com



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338159
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Subversion Software

2010-10-13 Thread Jochem van Dieten

On Thu, Oct 14, 2010 at 12:38 AM, Paul Alkema wrote:
 I'm looking to set up a subversion server and was wondering what types of
 subversion servers you all have set up and what software do you use to
 manage it?

Apache, SVN + Apache bindings, WebDAV. Everything is managed through vi :)

Jochem

-- 
Jochem van Dieten
http://jochem.vandieten.net/

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338160
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Gone Brain dead

2010-10-13 Thread Bobby Hartsfield

And on the right side of all those examples, variables[post#i#_data]
instead of evaluate()
 
.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
 
-Original Message-
From: Dave Watts [mailto:dwa...@figleaf.com] 
Sent: Wednesday, October 13, 2010 4:29 PM
To: cf-talk
Subject: Re: Gone Brain dead


 I must have gone brain dead. Seem to me like I should be able to set field
 names with a value but it's not working. Know I've done something like
this
 before (this is just a sample of function... not the code):

 cfloop from=1 to=20 index=i
        cfoutput
        cfset column_#i#=#evaluate(post#i#_data)#
        /cfoutput
 /cfloop

 I should get 20 fields, column_1 through column_20 but it's not liking the
 #i# being used to build the column_X fields.

 What am I doing wrong?

Any time you have nested hash marks, that's a good sign things aren't
right. Replace

cfset column_#i#=#evaluate(post#i#_data)#

with

cfset column_#i# = evaluate(post  i  _data)

or

cfset Variables[column_#i#] = evaluate(post  i  _data)

or

cfset Variables[column_  i] = evaluate(post  i  _data)

Or consider using an array for your column values.

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



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338161
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm