CFFM 1.32 Released

2010-09-16 Thread Rick Root

Okay, I've finished updating CFFM to version 1.32

- removed uploadify (flash based uploader), replaced with fileuploader
jquery plugin
- added context menus for file actions (delete, copy, download, etc)
- fixed a bug where CFFM didn't work in BlueDragon 7.1 becaue
bluedragon didn't auto-uppercase struct elements

Still compatible back to old versions of BD and CF (6.1) as far as I know ...

Demo: http://www.opensourcecf.com/cffm/demo
Download:  http://www.opensourcecf.com/cffm/download.cfm
Subversion:  http://svn.riaforge.org/cffm
Project Page: http://cffm.riaforge.org

Thanks.  Enjoy!

Rick

~|
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:337134
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFFM 1.32 Released

2010-09-16 Thread Will Tomlinson

Demo: http://www.opensourcecf.com/cffm/demo


Rick, the demo doesn't come up:

HTTP Status 404 - /cffm/demo/

Thanks,
Will 

~|
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:337140
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFFM 1.32 Released

2010-09-16 Thread Greg Luce

Works in chrome but broken js in IE 8.
-- 
Greg Luce
Luce Consulting Services, Inc.
www.luceconsulting.net
(863) 273-0289


On Thu, Sep 16, 2010 at 12:43 PM, Will Tomlinson w...@wtomlinson.comwrote:


 Demo: http://www.opensourcecf.com/cffm/demo


 Rick, the demo doesn't come up:

 HTTP Status 404 - /cffm/demo/

 Thanks,
 Will

 

~|
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:337144
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFFM 1.32 Released

2010-09-16 Thread Rick Root

I added the index.cfm =)

On Thu, Sep 16, 2010 at 12:43 PM, Will Tomlinson w...@wtomlinson.com wrote:

Demo: http://www.opensourcecf.com/cffm/demo


 Rick, the demo doesn't come up:

 HTTP Status 404 - /cffm/demo/

 Thanks,
 Will

 

~|
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:337145
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFFM 1.32 Released

2010-09-16 Thread Rick Root

On Thu, Sep 16, 2010 at 1:12 PM, Greg Luce luce...@gmail.com wrote:

 Works in chrome but broken js in IE 8.

Oh hell.

Forgot to test it in IE!  DAMN YOU IE!!

~|
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:337146
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFFM 1.32 Released

2010-09-16 Thread Rick Root

It's this line of javascript causing the problem in IE

for (var class in classes2) {

Here's test code that errors at that line:

script type=text/javascript
var classes = 'foo bar bar2 bar3 bar4';
var classes2 = classes.split(' ');
var actions = 
'download,delete,rename,copymove,editimage,unzip,editfile,viewsource';
var arrActions = actions.split(',');
alert(classes2.length);
for (class in classes2) {
for (var action in arrActions) {
if ( classes2[class] == 'cffm-menu-'+arrActions[action] ) {
alert('ok');
}
}
}
/script

Anyone know why IE is failing there?

~|
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:337147
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFFM 1.32 Released

2010-09-16 Thread Rick Root

D'oh.

It's class

I changed it to clazz and it worked.

Checked into subversion!

Rick


On Thu, Sep 16, 2010 at 1:26 PM, Rick Root rick.r...@gmail.com wrote:
 It's this line of javascript causing the problem in IE

 for (var class in classes2) {

 Here's test code that errors at that line:

 script type=text/javascript
 var classes = 'foo bar bar2 bar3 bar4';
 var classes2 = classes.split(' ');
 var actions = 
 'download,delete,rename,copymove,editimage,unzip,editfile,viewsource';
 var arrActions = actions.split(',');
 alert(classes2.length);
 for (class in classes2) {
        for (var action in arrActions) {
                if ( classes2[class] == 'cffm-menu-'+arrActions[action] ) {
                        alert('ok');
                }
        }
 }
 /script

 Any

~|
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:337149
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFFM 1.32 Released

2010-09-16 Thread Rick Root

On Thu, Sep 16, 2010 at 1:32 PM, Rick Root rick.r...@gmail.com wrote:
 D'oh.

 It's class

 I changed it to clazz and it worked.

 Checked into subversion!

updated the download file too

~|
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:337152
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm