andrew,
Thanks for the push here is what I ended up with:
<cfif f.getChangedPaths().size() gt 0>
<cfset changedPathsSet =
f.getChangedPaths().keySet()>
<cfset changedPaths =
changedPathsSet.iterator()>
<cfloop
condition="changedPaths.hasNext()">
<cfset
t=changedPaths.next()>
<cfset QueryAddRow(Q)>
<cfset
Q.Message[Q.RecordCount]=f.getMessage()>
<cfset
Q.Date[Q.RecordCount]=f.getDate()>
<cfset
Q.Author[Q.RecordCount]=f.getAuthor()>
<cfset
Q.Revision[Q.RecordCount]=f.getRevision()>
<cfset
Q.Path[Q.RecordCount]=t>
</cfloop>
</cfif>
>Duncan,
>
>This is off the top of my head, but you would be best to do it this way, and
>remember cfdump is your friend here too.
>
><script>
> for ( Iterator entries = logEntries.iterator( ); entries.hasNext( )
>; ) {
> logEntry = entries.next( );
> WriteOutput( "---------------------------------------------" );
> WriteOutput("revision: " + logEntry.getRevision( ) );
> WriteOutput( "author: " + logEntry.getAuthor( ) );
> WriteOutput( "date: " + logEntry.getDate( ) );
> WriteOutput( "log message: " + logEntry.getMessage( ) );
>
> if ( logEntry.getChangedPaths( ).size( ) > 0 ) {
> WriteOutput( );
> WriteOutput( "changed paths:" );
>
></script>
>
>
>
>
>On 3/9/07, Duncan <[EMAIL PROTECTED]> wrote:
>>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Create Web Applications With ColdFusion MX7 & Flex 2.
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/
Archive:
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272329
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe:
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4