Friday, October 10, 2008    
Home My Books Blog ColdFusion About Me Back    

Calendar
<< Nov 2006 >>
S M T W T F S
      1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30    

Search

Categories
 • Acrobat (2) [RSS]
 • Adobe (68) [RSS]
 • AdobeMAX06 (45) [RSS]
 • AdobeMAX07 (59) [RSS]
 • AdobeMAX08 (25) [RSS]
 • AIR (134) [RSS]
 • Appearances (122) [RSS]
 • Books (69) [RSS]
 • CFEclipse (14) [RSS]
 • ColdFusion (1154) [RSS]
 • Data Services (13) [RSS]
 • Fish Tank (2) [RSS]
 • Flash (106) [RSS]
 • Flex (372) [RSS]
 • Home Automation (3) [RSS]
 • Jobs (96) [RSS]
 • JRun (13) [RSS]
 • Labs (27) [RSS]
 • LiveCycle (22) [RSS]
 • MAX (160) [RSS]
 • Regular Expressions (13) [RSS]
 • RIA (11) [RSS]
 • SQL (38) [RSS]
 • Stuff (505) [RSS]
 • Tips (CF Studio) (80) [RSS]
 • Tips (CF) (795) [RSS]
 • Tips (Dreamweaver) (91) [RSS]
 • Tips (Flex Builder) (2) [RSS]
 • Using CF (137) [RSS]
 • Wireless (99) [RSS]

Other BLOGs
 • Charlie Arehart
 • Lee Brimelow
 • Ray Camden
 • Christophe Coenraets
 • Sean Corfield
 • Mihai Corlan
 • Cornel Creanga
 • John Dowdell
 • Danny Dura
 • Enrique Duvos
 • Steven Erat
 • Kevin Hoyt
 • Serge Jespers
 • Adam Lehman
 • Duane Nickull
 • Miti Pricope
 • Andrew Shorten
 • Ryan Stewart
 • James Ward
 • Greg Wilson
 • Full As A Goog

RSS Feeds
 • Feed
 • Subscribe

Join my mailing list and find out about new books and other topics of interest.

Thoughts, ideas, tips, musings, and pontifications (not necessarily in that order) by Ben Forta ...
NOTE: This is my personal blog, and the opinions and statements voiced here are my own.

Viewing By Day : November 18, 2006 / Main
November 18, 2006

Three Recent ColdFusion Hot Fixes

The ColdFusion team released three hot fixes recently:

TrackBacks
There are no trackbacks for this entry.

No trackback URL. Trackbacks are only allowed via interactive form.

Comments
Nice. I missed this and I especially need the log rotation one. Is there not an email service for CF Hot Fixes?
# Posted By Raymond Camden | 11/19/06 4:18 PM
So they deprecated the dbvarname attribute and then un-depriacted it? Fun.
# Posted By Joe Mastroianni | 11/20/06 10:55 AM
Ray: I've formally requested this be setup. I agree a proactive notification service would be good (we have ot for security hotfixes, but not for general hotfixes/updaters

Joe: yeah, it was a regression from CF5, and I felt bad about it.... :) Hoipefully you'll find it useful.

Damon
# Posted By Damon Cooper | 11/20/06 4:40 PM
I just tried out hot fix hf702-52712 and I'm getting an error now when calling stored procedures because I use the free open source JTDS (v1.2) JDBC drivers.

The error I get is:

java.util.MissingResourceException -
Can't find resource for base name coldfusion/tagext/sql/StoredProcTag.FoundDbVarNameException.properties

I've manually extracted the hf702-52712.jar file to examine it and indeed there is no StoredProcTag.FoundDbVarNameException.properties file.

I know I could use the Macromedia JDBC drivers, but I prefer JTDS. I'm crossing my fingers that named parameters will work for me and I hope there is a solution to fix this hotfix so it atleast does not crippled their functionality (or possibly other JDBC drivers)

Thanks, Jordan Clark
# Posted By Jordan Clark | 11/20/06 5:35 PM
Hi.
Macromedia XML News Aggregator has ColdFusion Product Notification.

RSS is
http://www.macromedia.com/go/rss_coldfusion

Site is
http://weblogs.macromedia.com/mxna/index.cfm?query...
# Posted By Shigeru | 11/21/06 10:39 AM
To be anal - this isn't the exact same. For example, the top entry is an article, not a product notification.
# Posted By Raymond Camden | 11/21/06 10:49 AM
can someone guess why ?

i have posted this on Adobe forumes and many other locations , and NOBODY knows how to fix this , then it must be a BUG in coldfusion 7.0.2 !!!!!!!!1
BEN , please Mr Ben Forta , if anyone knows what to do it must be you ...
what is the grid not working as expected ?!

Below is a page that has a cfgrid when i submit the page the grid data is lost ? why ?????????
the data i am talking about is the ones i add using
the "refresh data" button not manually inserted row by row !!!

your help is greatly appretiated ...

thanx
*************************************************************************************************************************
*************************************************************************************************************************
<cfif isDefined("form.oncethrough")>
<cfdump var="#form#">
<cfabort>
</cfif>

<cfform method="post" name="slushForm" preloader="no" format="flash" width="600" timeout="500" onload="formOnLoad()">
<cfinput type = "hidden" name="oncethrough" value = "Yes">
<cfformitem type="script"> //Drag Drop enable for grids var overSourceItem:Boolean = false;
var overTargetItem:Boolean = false;
function addData()
{
//Add some data to the source grid gridSource.removeAll();
gridDestination.removeAll();
gridSource.addItem({lastName:"Smith",firstName:"Jane",phone:"(555) 555-1234"});
gridSource.addItem({lastName:"Jones",firstName:"Jen",phone:"(555) 555-5678"});
}
function formOnLoad()
{
gridSource.dragEnabled=true;
gridSource.multipleSelection=true;
gridSource.addEventListener('dragEnter', doDragEnter);
gridSource.addEventListener('dragDrop', doDragDropDGSource);
gridSource.addEventListener('dragComplete', doDragCompleteDGSource);
gridSource.addEventListener('dragOver', doDragOverSource);
gridSource.addEventListener('dragExit', doDragExitSource);

gridDestination.dragEnabled=true;
gridDestination.multipleSelection=true;
gridDestination.addEventListener('dragEnter', doDragEnter);
gridDestination.addEventListener('dragOver', doDragOverDest);
gridDestination.addEventListener('dragExit', doDragExitDest);
gridDestination.addEventListener('dragDrop', doDragDropDGDest);
gridDestination.addEventListener('dragComplete', doDragCompleteDGDest);
}

function doDragEnter(event) {
event.handled = true;
}
function doDragExitSource(event) {
_root.overSourceItem = false;
event.target.hideDropFeedback();
}

function doDragExitDest(event) {
_root.overTargetItem = false;
event.target.hideDropFeedback();
}

function doDragOverSource(event) {
_root.gridSource = event.target;
if (_root.gridDestination.dataProvider.length > 0)
{
_root.overSourceItem = true;
event.target.showDropFeedback();
if (Key.isDown(Key.CONTROL))
event.action = mx.managers.DragManager.COPY;
else if (Key.isDown(Key.SHIFT))
event.action = mx.managers.DragManager.LINK;
else
event.action = mx.managers.DragManager.MOVE;
}
}

function doDragOverDest(event) {
_root.gridDestination = event.target;
if (_root.gridSource.dataProvider.length > 0)
{
_root.overTargetItem = true;
event.target.showDropFeedback();
if (Key.isDown(Key.CONTROL))
event.action = mx.managers.DragManager.COPY;
else if (Key.isDown(Key.SHIFT))
event.action = mx.managers.DragManager.LINK;
else
event.action = mx.managers.DragManager.MOVE;
}
}

function doDragDropDGSource(event) {
doDragExitDest(event);
var dragItems = event.dragSource.dataForFormat('items');
var dest = event.target;
var dropLoc = dest.getDropLocation();
var destParentNode = dest.getDropParent();
//var dropNode = dest.getNodeDisplayedAt(dropLoc);
dest.addItemsAt(dropLoc,dragItems);
}

function doDragDropDGDest(event) {
doDragExitSource(event);
var dragItems = event.dragSource.dataForFormat('items');
var dest = event.target;
var dropLoc = dest.getDropLocation();
var destParentNode = dest.getDropParent();
//var dropNode = dest.getNodeDisplayedAt(dropLoc);
dest.addItemsAt(dropLoc,dragItems);
}

function doDragCompleteDGSource(event){
var dest = event.target;
var dropLoc = dest.getDropLocation();
var destParentNode = dest.getDropParent();
var selectedIn:Array = event.target.selectedIndices;
//descending sort to remove items that have been dropped into target grid
selectedIn.sort(16|2);

if (_root.overTargetItem)
{
for(var i = 0; i < selectedIn.length; i++){
//add the selected items
_root.gridDestination.addItem(event.target.selectedItems);
}

for(var i = 0; i < selectedIn.length; i++){
//remove this item
event.target.dataProvider.removeItemAt(selectedIn)
}
}
_root.overTargetItem = false;
_root.gridDestination.hideDropFeedback();
}

function doDragCompleteDGDest(event){
var dest = event.target;
var dropLoc = dest.getDropLocation();
var destParentNode = dest.getDropParent();
var selectedIn:Array = event.target.selectedIndices;
//descending sort to remove items that have been dropped into target grid
selectedIn.sort(16|2);
if (_root.overSourceItem)
{
for(var i = 0; i < selectedIn.length; i++){
//add the selected items
_root.gridSource.addItem(event.target.selectedItems);
}
for(var i = 0; i < selectedIn.length; i++){
//remove this item
event.target.dataProvider.removeItemAt(selectedIn)
}
}
_root.overTargetItem = false;
_root.gridSource.hideDropFeedback();
} </cfformitem>
<cfformitem type="text" height="15" style="font-weight:bold">Source Grid</cfformitem>
<cfgrid name="gridSource" height="85" insert="yes" delete="yes" sort="yes" appendkey="yes" griddataalign="left" gridlines="yes" rowheaderalign="left" colheaderalign="left" selectmode="edit" enabled="yes" visible="yes" format="flash" autowidth="true">
<cfgridcolumn name="lastName" header="Last" bold="no">
<cfgridcolumn name="firstName" header="First" bold="no">
<cfgridcolumn name="phone" header="Phone" bold="no">
</cfgrid>
<cfformitem type="text" height="15" style="font-weight:bold">Destination Grid</cfformitem>
<cfgrid name="gridDestination" height="85" insert="yes" delete="yes" sort="yes" appendkey="yes" griddataalign="left" gridlines="yes" rowheaderalign="left" colheaderalign="left" selectmode="edit" enabled="yes" visible="yes" format="flash" autowidth="true">
<cfgridcolumn name="lastName" header="Last" bold="no">
<cfgridcolumn name="firstName" header="First" bold="no">
<cfgridcolumn name="phone" header="Phone" bold="no">
</cfgrid>
<cfinput type="button" name="btnAddData" value="Refresh Data" onClick="addData();">
<cfinput type="submit" name="submit" value="SUBMIT" width="200">
</cfform>
*************************************************************************************************************************
# Posted By janet | 2/10/07 4:34 AM
I submitted both a security report to Adobe and a Feature Request/Bug form about the upcoming certificate expiration for CFForm b9c2d61c. I was never contacted by Adobe by email, phone etc for the submissions, and just found out about the patch by searching.

Adobe / ColdFusion team, please follow up when these reports are filed, and setup an email notification program for patches and fixes.
# Posted By Dan | 9/28/07 2:29 PM

  © Copyright 1997-2008 Ben Forta, All Rights Reserved