RE: Can't get 301 permanent redirect to work properly

2008-12-11 Thread Hugo Ahlenius
| Why is that? And, more importantly, does this matter? It 
| seems it has moved it isn't a 302 Found but it isn't a 
| 301 either... I'm confused. Why is it ignoring my cfheader statuscode?

cURL is such a handy tool:
curl -I http://www.example.net/test.cfm?page=4

Get it here, if it is not in your linux distro or cygwin installation already:
http://curl.haxx.se/

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316598
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Help with consuming .NET complex datatype webservice

2008-12-11 Thread John M Bliss
What do you see when you cfdump YourWebserviceReturnVar.get_any() ?

On Thu, Dec 11, 2008 at 12:21 AM, Sebastian Powell [EMAIL PROTECTED] wrote:

 I am trying to consume a .NET webservice from coldfusion. When I cfinvoke
 the webservice it returns a complex object which has the get_any() method. I
 am trying to access the data but am not sure where it is located or how to
 consume the returned object.

 I have run the wsdl2java and got the following java response file code and
 been using cfdump on the methods returned to try an find where the xml data
 is contained within the object, but no luck.

 Hoping for some guidance on where the find the data, or what i should try
 for next steps.

 Thanks,

 Bas.

 /**
  * MeetingSummaryResponseMeetingSummaryResult.java
  *
  * This file was auto-generated from WSDL
  * by the Apache Axis 1.2.1 Jun 14, 2005 (09:15:57 EDT) WSDL2Java emitter.
  */


 public class MeetingSummaryResponseMeetingSummaryResult  implements
 java.io.Serializable, org.apache.axis.encoding.AnyContentType {
private org.apache.axis.message.MessageElement [] _any;

public MeetingSummaryResponseMeetingSummaryResult() {
}

public MeetingSummaryResponseMeetingSummaryResult(
   org.apache.axis.message.MessageElement [] _any) {
   this._any = _any;
}


/**
 * Gets the _any value for this
 MeetingSummaryResponseMeetingSummaryResult.
 *
 * @return _any
 */
public org.apache.axis.message.MessageElement [] get_any() {
return _any;
}


/**
 * Sets the _any value for this
 MeetingSummaryResponseMeetingSummaryResult.
 *
 * @param _any
 */
public void set_any(org.apache.axis.message.MessageElement [] _any) {
this._any = _any;
}

private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof MeetingSummaryResponseMeetingSummaryResult))
 return false;
MeetingSummaryResponseMeetingSummaryResult other =
 (MeetingSummaryResponseMeetingSummaryResult) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = true 
((this._any==null  other.get_any()==null) ||
 (this._any!=null 
  java.util.Arrays.equals(this._any, other.get_any(;
__equalsCalc = null;
return _equals;
}

private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = 1;
if (get_any() != null) {
for (int i=0;
 ijava.lang.reflect.Array.getLength(get_any());
 i++) {
java.lang.Object obj =
 java.lang.reflect.Array.get(get_any(), i);
if (obj != null 
!obj.getClass().isArray()) {
_hashCode += obj.hashCode();
}
}
}
__hashCodeCalc = false;
return _hashCode;
}

// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new
 org.apache.axis.description.TypeDesc(MeetingSummaryResponseMeetingSummaryResult.class,
 true);

static {
typeDesc.setXmlType(new javax.xml.namespace.QName(
 http://direct.tab.com.au/LiveOdds/;,
 MeetingSummaryResponseMeetingSummaryResult));
}

/**
 * Return type metadata object
 */
public static org.apache.axis.description.TypeDesc getTypeDesc() {
return typeDesc;
}

/**
 * Get Custom Serializer
 */
public static org.apache.axis.encoding.Serializer getSerializer(
   java.lang.String mechType,
   java.lang.Class _javaType,
   javax.xml.namespace.QName _xmlType) {
return
  new  org.apache.axis.encoding.ser.BeanSerializer(
_javaType, _xmlType, typeDesc);
}

/**
 * Get Custom Deserializer
 */
public static org.apache.axis.encoding.Deserializer getDeserializer(
   java.lang.String mechType,
   java.lang.Class _javaType,
   javax.xml.namespace.QName _xmlType) {
return
  new  org.apache.axis.encoding.ser.BeanDeserializer(
_javaType, _xmlType, typeDesc);
}

 }


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316599
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Creating a Policy Manager Feature in Coldfusion?

2008-12-11 Thread Ian Vaughan
Hi

I would be interested to hear if this is feasible in Coldfusion or would
it be better delivered via Sharepoint.

I have a list of documents, as part of an induction program that a user
must read from our Intranet site.

How can I in Coldfusion check that a document has been opened? Once read
the user has to click a checkbox that they have read the document.
(Similar to an e-learning course website)

Next to this document it will display 'Read' with this information
stored in the database for that user. If the user has opened the doc and
not clicked the checkbox it will display 'Doc Opened' next to that
document on the webpage, and if they have not opened it, it will display
'Not Read'.

Any ideas on the right approach for this? 

Or am I making this more complicated than it should be?

I would be interested to hear your views

Kind Regards,

Ian


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316600
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Creating a Policy Manager Feature in Coldfusion?

2008-12-11 Thread Adrian Lynch
One way, serve the document up with a .cfm page and track it that way.

Adrian

 -Original Message-
 From: Ian Vaughan [mailto:[EMAIL PROTECTED]
 Sent: 11 December 2008 11:21
 To: cf-talk
 Subject: Creating a Policy Manager Feature in Coldfusion?
 
 Hi
 
 I would be interested to hear if this is feasible in Coldfusion or
 would
 it be better delivered via Sharepoint.
 
 I have a list of documents, as part of an induction program that a user
 must read from our Intranet site.
 
 How can I in Coldfusion check that a document has been opened? Once
 read
 the user has to click a checkbox that they have read the document.
 (Similar to an e-learning course website)
 
 Next to this document it will display 'Read' with this information
 stored in the database for that user. If the user has opened the doc
 and
 not clicked the checkbox it will display 'Doc Opened' next to that
 document on the webpage, and if they have not opened it, it will
 display
 'Not Read'.
 
 Any ideas on the right approach for this?
 
 Or am I making this more complicated than it should be?
 
 I would be interested to hear your views
 
 Kind Regards,
 
 Ian
 
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316601
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Creating a Policy Manager Feature in Coldfusion?

2008-12-11 Thread Will Tomlinson
How can I in Coldfusion check that a document has been opened? Once read
the user has to click a checkbox that they have read the document.
(Similar to an e-learning course website)

Yeah, my first thought would be to use cfcontent to serve up the document in 
a .cfm, and log it to your db right before the cfcontent. Sounds easy 
enough...

Will 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316602
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Creating a Policy Manager Feature in Coldfusion?

2008-12-11 Thread Ian Vaughan
Thanks All

Can this (loading word, pdf docs in cfcontent) be done in CF 7?

Any code snippets about?

Also the users would need to be logged in for the application to track
who has read what documents etc

With Coldfusion can you pass through the Active Directory/Windows login
details like what happens with sharepoint? so the user does not have to
log in again with their windows login to access these pages.

Ian


-Original Message-
From: Will Tomlinson [mailto:[EMAIL PROTECTED] 
Sent: 11 December 2008 11:32
To: cf-talk
Subject: Re: Creating a Policy Manager Feature in Coldfusion?

How can I in Coldfusion check that a document has been opened? Once
read
the user has to click a checkbox that they have read the document.
(Similar to an e-learning course website)

Yeah, my first thought would be to use cfcontent to serve up the
document in a .cfm, and log it to your db right before the cfcontent.
Sounds easy enough...

Will 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316603
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Create PDF from hyperlink

2008-12-11 Thread Mike Chabot
Make sure it is valid HTML, specifically looking for unclosed tags.
The PDF creation engine doesn't work with a bunch of CSS. If you are
able to reformat the code into more simple HTML then it might behave
better.

-Mike Chabot

On Wed, Dec 10, 2008 at 11:27 PM, Steve Sequenzia [EMAIL PROTECTED] wrote:
 Gerald - Thanks for this info. I works but I am having another issue with it.

 For some reason any div tags that are floated left in the savecontent are not 
 showing up when the pdf is created. All of the data in the div tag is just 
 not there.

 Any idea or anyone else have any ideas.

 Any help would be great.

 Thanks.

Put this on the page you are working on. Put the content that you want in
the pdf in the cfsavecontent block.

cfoutput
a href=#Script_Name#?action=gimmie/a
/cfoutput

cfsavecontent variable=MyContent
Your content goes here
/cfsavecontent

cfoutput
   #MyContent#
/cfoutput



cfif URL.Action EQ gimmie
cfdocument
 format = PDF
 overwrite = yes
 encryption = none
 fontembed = yes
 backgroundvisible = no
 margintop =0.20
 marginleft=0.20
 marginright=0.20
 #MyContent#
/cfdocument
/cfif




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316604
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Creating a Policy Manager Feature in Coldfusion?

2008-12-11 Thread Randy
Yes, you can use the cgi.auth_user to obtain the userid from the GAL.
Then when a user clicks to read a document send them to a link such as:
document.cfm?docid={document identifier}
then you can use the cgi.auth_user and the document identifier to indicate
that the user has read the document.

the document.cfm file will server the DOC/PDF file up to the user for
downloading. This would constitute the user reading the document. Now,
whether or not they truly read it is up to them.

Within the document, you can put a LINK (A HREF) back to the site such as:
document_confirmation.cfm
and have it pass the identifier back to that page. Within that page, you can
pull the document identifier and the cgi.auth_user to record the transaction
that the user has CONFIRMED they have read the document.




On Thu, Dec 11, 2008 at 7:00 AM, Ian Vaughan 
[EMAIL PROTECTED] wrote:

 Thanks All

 Can this (loading word, pdf docs in cfcontent) be done in CF 7?

 Any code snippets about?

 Also the users would need to be logged in for the application to track
 who has read what documents etc

 With Coldfusion can you pass through the Active Directory/Windows login
 details like what happens with sharepoint? so the user does not have to
 log in again with their windows login to access these pages.

 Ian


 -Original Message-
 From: Will Tomlinson [mailto:[EMAIL PROTECTED]
 Sent: 11 December 2008 11:32
 To: cf-talk
 Subject: Re: Creating a Policy Manager Feature in Coldfusion?

 How can I in Coldfusion check that a document has been opened? Once
 read
 the user has to click a checkbox that they have read the document.
 (Similar to an e-learning course website)

 Yeah, my first thought would be to use cfcontent to serve up the
 document in a .cfm, and log it to your db right before the cfcontent.
 Sounds easy enough...

 Will



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316605
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Chart and CF Report Builder

2008-12-11 Thread Shirin Toosi
I have some questions regarding the ColdFusion Report builder that I’m hoping 
you can help me.  Or maybe you can point me in the direction of someone who 
might. 

The report I’m trying to build has the header area which contains summary and 
the graph contains the detail.   There can be many summaries with their 
details.   We used different approaches to build the report, but the one that 
got us closer to the results we wanted was to build the report I used 2 
queries. I’m trying to pass my variable (id) to the 2nd query to get the 
related graph. When the report is for 1 single summary/graph, I pass the id to 
my 2nd query and it works.  But when the report is for multiple summary/graph, 
only the first row selected from the 1st query will pass to the 2nd query.   
Therefore I have 1 graph with all the data retrieved for all the summaries.  It 
seams like the cfloop doesn’t do anything(??!!)  Another approach I tried 
was to put my graph in a subreport and pass the id as param.id, didn’t work 
either.

In case it helps, here is the code on my cfm page: 

cfloop query=GetRpt  
cfset request.getGraph = getGraph()
cfreport format=pdf template= payment_Detail.cfr
permissions=AllowPrinting Query=GetRpt  overwrite=yes/
cffunction name=getGraph returntype=query
   cfset var GraphQuery = ''
  cfquery name=GraphQuery datasource=#request.dsn# 
  SELECTid , to_char(invoice_dt, 'MM/DD/') as invoice_dt
  , to_char(invoice_dt, '/MM/DD') as sort_invoice_dt
  , TO_NUMBER(payment_line_amt,'') as payment_line_amt
  , INVOICE_LINE_AMT
  FROM PAYMENT_DETAIL 
  WHEREID =#GetRpt.ID#
  ORDER BY sort_invoice_dt
  /cfquery  
cfreturn GraphQuery
/cffunction
/cfloop



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316606
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Chart and CF Report Builder

2008-12-11 Thread Shirin Toosi
I have some questions regarding the ColdFusion Report builder that I’m hoping 
you can help me.  Or maybe you can point me in the direction of someone who 
might. 

The report I’m trying to build has the header area which contains summary and 
the graph contains the detail.   There can be many summaries with their 
details.   We used different approaches to build the report, but the one that 
got us closer to the results we wanted was to build the report I used 2 
queries. I’m trying to pass my variable (id) to the 2nd query to get the 
related graph. When the report is for 1 single summary/graph, I pass the id to 
my 2nd query and it works.  But when the report is for multiple summary/graph, 
only the first row selected from the 1st query will pass to the 2nd query.   
Therefore I have 1 graph with all the data retrieved for all the summaries.  It 
seams like the cfloop doesn’t do anything(??!!)  Another approach I tried 
was to put my graph in a subreport and pass the id as param.id, didn’t work 
either.

In case it helps, here is the code on my cfm page: 

cfloop query=GetRpt  
cfset request.getGraph = getGraph()
cfreport format=pdf template= payment_Detail.cfr
permissions=AllowPrinting Query=GetRpt  overwrite=yes/
cffunction name=getGraph returntype=query
   cfset var GraphQuery = ''
  cfquery name=GraphQuery datasource=#request.dsn# 
  SELECTid , to_char(invoice_dt, 'MM/DD/') as invoice_dt
  , to_char(invoice_dt, '/MM/DD') as sort_invoice_dt
  , TO_NUMBER(payment_line_amt,'') as payment_line_amt
  , INVOICE_LINE_AMT
  FROM PAYMENT_DETAIL 
  WHEREID =#GetRpt.ID#
  ORDER BY sort_invoice_dt
  /cfquery  
cfreturn GraphQuery
/cffunction
/cfloop



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316607
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Chart and CF Report Builder

2008-12-11 Thread Shirin Toosi
I have some questions regarding the ColdFusion Report builder that I’m hoping 
you can help me.  Or maybe you can point me in the direction of someone who 
might. 

The report I’m trying to build has the header area which contains summary and 
the graph contains the detail.   There can be many summaries with their 
details.   We used different approaches to build the report, but the one that 
got us closer to the results we wanted was to build the report I used 2 
queries. I’m trying to pass my variable (id) to the 2nd query to get the 
related graph. When the report is for 1 single summary/graph, I pass the id to 
my 2nd query and it works.  But when the report is for multiple summary/graph, 
only the first row selected from the 1st query will pass to the 2nd query.   
Therefore I have 1 graph with all the data retrieved for all the summaries.  It 
seams like the cfloop doesn’t do anything(??!!)  Another approach I tried 
was to put my graph in a subreport and pass the id as param.id, didn’t work 
either.

In case it helps, here is the code on my cfm page: 

cfloop query=GetRpt  
cfset request.getGraph = getGraph()
cfreport format=pdf template= payment_Detail.cfr
permissions=AllowPrinting Query=GetRpt  overwrite=yes/
cffunction name=getGraph returntype=query
   cfset var GraphQuery = ''
  cfquery name=GraphQuery datasource=#request.dsn# 
  SELECTid , to_char(invoice_dt, 'MM/DD/') as invoice_dt
  , to_char(invoice_dt, '/MM/DD') as sort_invoice_dt
  , TO_NUMBER(payment_line_amt,'') as payment_line_amt
  , INVOICE_LINE_AMT
  FROM PAYMENT_DETAIL 
  WHEREID =#GetRpt.ID#
  ORDER BY sort_invoice_dt
  /cfquery  
cfreturn GraphQuery
/cffunction
/cfloop
In the query builder of my chart series I call the request.getGraph so the 
chart can see the query. As I said when I pass one id then it’s ok but when 
more than 1 id is passed it shows the graph based on the 1st selected row of 
data for all other data retrieved by the 1st query. 

I want to be able to show the first summary followed by it’s detail graph, 
then the second summary followed by it’s detail graph, etc. 

Any help or suggestions will be greatly appreciated. 

Thank you in advance

 




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316608
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Dreamweaver question

2008-12-11 Thread Dawson, Michael
and have the focus. 

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, December 10, 2008 10:46 PM
To: cf-talk
Subject: Re: Dreamweaver question

Nope, the file just needs to be open.

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/



2008/12/11 Aaron Rouse [EMAIL PROTECTED]:
 But to use those then the file(s) themselves need to be highlighted in

 the file pane, correct?

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316609
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: java package name on cfinvoke of web service

2008-12-11 Thread Adam Haskell
FYI Axis that is shipped with ColdFusion is 1.2.X the latest is 1.4 the one
in CF is markedly older regardless of the creation or modified date...

Adam


On Thu, Dec 11, 2008 at 12:17 AM, sam Detweiler [EMAIL PROTECTED] wrote:

 Before heading down that route, I've found (especially with .NET services)
 that updating to the latest version of axis 1.4 (do not get axis 2) has
 fixed the majority of the issues.
 
 Adam
 
 

 Thanks.. the latest axis code is dated 4/22/06, while the code in the cf
 8.01 lib is dated 2/27/07. I recreated the problem (and the solution) with
 the latest axis code before posting, sorry I didn't add that note.

 this is basically a design flaw in the cfinvoke implementation for web
 services and complex data objects.  web services explorer handled it
 perfectly.  I can write my own cfc wrappers for the generated classes, but
 what a pain. One parm is all it takes.. and use that on the object creation
 under the covers.. (same as I will have to do to reimplement the cfinvoke
 code)..


 Sam


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316610
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: REreplace function for special characters

2008-12-11 Thread Peter Boughton
better then just do something like

rereplace(left(filename, len(filename)-len(listlast(filename, .)-1),
\W, , all)

Eugh. Ugly!

And doesn't restore the extension afterwards, so my-image-name.png would 
become myimagename instead of myimagename.png.



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316611
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Adobe's CF IDE, Bolt

2008-12-11 Thread Larry Lyons
No, Andy's Eclipse is always jacked up. I'm convinced, though, that it's 
a PEBKAC issue. Or he needs to stop looking at porn on his laptop;)

Steve Cutter Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer


I was thinking he needs to get a computer that wasn't build when flint knives 
and stone arrowheads were cutting edge technology.

larry 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316612
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Adobe's CF IDE, Bolt

2008-12-11 Thread Eric Cobb
Actually, he just got a brand new, high-end HP laptop 3 or 4 weeks ago.

Cutter's right, it's all the porn.


Larry Lyons wrote:
 No, Andy's Eclipse is always jacked up. I'm convinced, though, that it's 
 a PEBKAC issue. Or he needs to stop looking at porn on his laptop;)

 Steve Cutter Blades
 Adobe Certified Professional
 Advanced Macromedia ColdFusion MX 7 Developer

 
 I was thinking he needs to get a computer that wasn't build when flint knives 
 and stone arrowheads were cutting edge technology.
 
 larry 
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316613
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Source Control Method

2008-12-11 Thread Torrent Girl
Hello All

I need to set up a source control solution and am not familiar with doing this.

Doesn't Dreamweaver allow you to manage code?

Also can someone suggest a free, easy to implement solution?

Thanks


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316614
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Source Control Method

2008-12-11 Thread John M Bliss
I like http://www.visualsvn.com/server/

On Thu, Dec 11, 2008 at 10:48 AM, Torrent Girl [EMAIL PROTECTED]wrote:

 Hello All

 I need to set up a source control solution and am not familiar with doing
 this.

 Doesn't Dreamweaver allow you to manage code?

 Also can someone suggest a free, easy to implement solution?

 Thanks


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316615
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Dreamweaver question

2008-12-11 Thread Aaron Rouse
Ok, so it is just the exact same thing as using ctrl+shift+u  I always end
up editing a few files and then just using the synchronize feature.

On Thu, Dec 11, 2008 at 8:20 AM, Dawson, Michael [EMAIL PROTECTED]wrote:

 and have the focus.

 -Original Message-
 From: James Holmes [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, December 10, 2008 10:46 PM
 To: cf-talk
 Subject: Re: Dreamweaver question

 Nope, the file just needs to be open.

 mxAjax / CFAjax docs and other useful articles:
 http://www.bifrost.com.au/blog/



 2008/12/11 Aaron Rouse [EMAIL PROTECTED]:
  But to use those then the file(s) themselves need to be highlighted in

  the file pane, correct?

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316616
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Source Control Method

2008-12-11 Thread Rob Parkhill
I use tortise SVN, and find it quite simple and straight forward.
http://tortoisesvn.tigris.org/

Rob

On Thu, Dec 11, 2008 at 11:53 AM, John M Bliss [EMAIL PROTECTED] wrote:

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

 On Thu, Dec 11, 2008 at 10:48 AM, Torrent Girl [EMAIL PROTECTED]
 wrote:

  Hello All
 
  I need to set up a source control solution and am not familiar with doing
  this.
 
  Doesn't Dreamweaver allow you to manage code?
 
  Also can someone suggest a free, easy to implement solution?
 
  Thanks
 
 
 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316617
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Source Control Method

2008-12-11 Thread Paul Kukiel
I user Smart SVN because its the same on Mac OS and Windows:

http://www.syntevo.com/smartsvn/index.html

Paul

On Thu, Dec 11, 2008 at 11:53 AM, John M Bliss [EMAIL PROTECTED] wrote:

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

 On Thu, Dec 11, 2008 at 10:48 AM, Torrent Girl [EMAIL PROTECTED]
 wrote:

  Hello All
 
  I need to set up a source control solution and am not familiar with doing
  this.
 
  Doesn't Dreamweaver allow you to manage code?
 
  Also can someone suggest a free, easy to implement solution?
 
  Thanks



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316618
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CF7 to CF8 Encrpt Problem

2008-12-11 Thread Lee
We are having a problem upgrading from CF7 to CF8. It 
appears as though encrypted values stored in the database 
using CF7 are storing characters that are not playing well 
with the CF8 decrypt process. One example is the greater 
than sign (). If that character exists in the stored 
encrypted value, the decrypt process returns a null. 
Others include the question mark and parenthesis. We are 
using the following code.

cfreturn encrypt(trim(arguments.string), 
request.encryption,'CFMX_COMPAT','Hex') /

cfreturn decrypt(arguments.string, 
request.encryption,'CFMX_COMPAT','Hex') /

Any thoughts on this?

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316620
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Source Control Method

2008-12-11 Thread Phillip M. Vector
Instead of source control... Is there a program that replicates 
dreamweavers checkin-checkout system so I don't need to load it to check 
files in or out of the server?

Paul Kukiel wrote:
 I user Smart SVN because its the same on Mac OS and Windows:
 
 http://www.syntevo.com/smartsvn/index.html
 
 Paul
 
 On Thu, Dec 11, 2008 at 11:53 AM, John M Bliss [EMAIL PROTECTED] wrote:
 
 I like http://www.visualsvn.com/server/

 On Thu, Dec 11, 2008 at 10:48 AM, Torrent Girl [EMAIL PROTECTED]
 wrote:
 Hello All

 I need to set up a source control solution and am not familiar with doing
 this.

 Doesn't Dreamweaver allow you to manage code?

 Also can someone suggest a free, easy to implement solution?

 Thanks
 
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316619
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Source Control Method

2008-12-11 Thread Shannon Peevey
On Thu, Dec 11, 2008 at 11:23 AM, Phillip M. Vector 
[EMAIL PROTECTED] wrote:

 Instead of source control... Is there a program that replicates
 dreamweavers checkin-checkout system so I don't need to load it to check
 files in or out of the server?

 
  On Thu, Dec 11, 2008 at 10:48 AM, Torrent Girl [EMAIL PROTECTED]
  wrote:
  Hello All
 
  I need to set up a source control solution and am not familiar with
 doing
  this.
 
  Doesn't Dreamweaver allow you to manage code?
 
  Also can someone suggest a free, easy to implement solution?
 
  Thanks
 
 
 


Source control is usually used for keep historical records on the source, as
well as handling more complicated workgroup programming tasks, (ie
branching, merging, tagging, etc).  If you just need to lock files to keep
others from working on them at the same time, then I would stay with the
Dreamweaver method, and allow it to handle your locks, (I have only used
Dreamweaver with webDAV publishing, so am not sure if it works the same in
other protocols).

If you need source control, Subversion (http://subversion.tigris.org/) is a
great solution.

speeves


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316621
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Dreamweaver Locking

2008-12-11 Thread Phillip M. Vector
Yeah. I know. I realize I was kind of hijacking the thread, so I'm 
starting another. :)

I don't like Dreamweaver. At all. I loathe it.

However, my boss likes it. So he wants to use it's checkin/checkout 
function.

I hate the idea of loading it up JUST to check in and out files.

What I'm asking is.. Does anyone know of any program that allows me to 
check in and out files on the server, but not actually use dreamweaver.

Shannon Peevey wrote:
  Source control is usually used for keep historical records on the 
source, as
  well as handling more complicated workgroup programming tasks, (ie
  branching, merging, tagging, etc).  If you just need to lock files to 
keep
  others from working on them at the same time, then I would stay with the
  Dreamweaver method, and allow it to handle your locks, (I have only used
  Dreamweaver with webDAV publishing, so am not sure if it works the 
same in
  other protocols).
 
  If you need source control, Subversion 
(http://subversion.tigris.org/) is a
  great solution.


 On Thu, Dec 11, 2008 at 11:23 AM, Phillip M. Vector 
 [EMAIL PROTECTED] wrote:
 
 Instead of source control... Is there a program that replicates
 dreamweavers checkin-checkout system so I don't need to load it to check
 files in or out of the server?

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316622
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Dreamweaver Locking

2008-12-11 Thread Casey Dougall
On Thu, Dec 11, 2008 at 12:46 PM, Phillip M. Vector 
[EMAIL PROTECTED] wrote:


 What I'm asking is.. Does anyone know of any program that allows me to
 check in and out files on the server, but not actually use dreamweaver.


I don't personally know of anyway to do that except to use Dreamweaver.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316623
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Dreamweaver Locking

2008-12-11 Thread Rob Parkhill
well Tortise SVN has a lock and release lock function, however, being the
only one developing here, I just use it for Version Control.  However you
could look into it, I am sure that there are docs on it.
HTH

Rob

On Thu, Dec 11, 2008 at 12:51 PM, Casey Dougall 
[EMAIL PROTECTED] wrote:

 On Thu, Dec 11, 2008 at 12:46 PM, Phillip M. Vector 
 [EMAIL PROTECTED] wrote:

 
  What I'm asking is.. Does anyone know of any program that allows me to
  check in and out files on the server, but not actually use dreamweaver.
 
 
 I don't personally know of anyway to do that except to use Dreamweaver.


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316624
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Dreamweaver Locking

2008-12-11 Thread Sonny Savage
It was my impression that Dreamweaver creates an .lck file or something...
If you were using Eclipse/CFEclipse is seems like you could write an Ant
script to replicate this behavior.


On Thu, Dec 11, 2008 at 12:59 PM, Rob Parkhill [EMAIL PROTECTED]wrote:

 well Tortise SVN has a lock and release lock function, however, being the
 only one developing here, I just use it for Version Control.  However you
 could look into it, I am sure that there are docs on it.
 HTH

 Rob

 On Thu, Dec 11, 2008 at 12:51 PM, Casey Dougall 
 [EMAIL PROTECTED] wrote:

  On Thu, Dec 11, 2008 at 12:46 PM, Phillip M. Vector 
  [EMAIL PROTECTED] wrote:
 
  
   What I'm asking is.. Does anyone know of any program that allows me to
   check in and out files on the server, but not actually use dreamweaver.
  
  
  I don't personally know of anyway to do that except to use Dreamweaver.
 
 
 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316625
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Dreamweaver Locking

2008-12-11 Thread Phillip M. Vector
Ok.. I don't know Ant.. Can someone point me to someplace that might 
have some beginning lessons on ant?

Sonny Savage wrote:
 It was my impression that Dreamweaver creates an .lck file or something...
 If you were using Eclipse/CFEclipse is seems like you could write an Ant
 script to replicate this behavior.
 
 
 On Thu, Dec 11, 2008 at 12:59 PM, Rob Parkhill [EMAIL PROTECTED]wrote:
 
 well Tortise SVN has a lock and release lock function, however, being the
 only one developing here, I just use it for Version Control.  However you
 could look into it, I am sure that there are docs on it.
 HTH

 Rob

 On Thu, Dec 11, 2008 at 12:51 PM, Casey Dougall 
 [EMAIL PROTECTED] wrote:

 On Thu, Dec 11, 2008 at 12:46 PM, Phillip M. Vector 
 [EMAIL PROTECTED] wrote:

 What I'm asking is.. Does anyone know of any program that allows me to
 check in and out files on the server, but not actually use dreamweaver.


 I don't personally know of anyway to do that except to use Dreamweaver.




 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316626
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Dreamweaver question

2008-12-11 Thread s. isaac dealey
Speaking of Dreamweaver, has anybody heard anything about when they're
going to fix the problem with SVN support in CS4? I'd really like to use
it, but I've got all my repositories updated to the latest client
version via Tortoise and I really don't want to have to keep converting
the repository back and forth between versions (as is the recommendation
on Adobe's site -- which also iirc requires that I install Python). 

Thanks,

-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 781.769.0723

http://onTap.riaforge.org/blog



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316627
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Dreamweaver Locking

2008-12-11 Thread s. isaac dealey
 well Tortise SVN has a lock and release lock function, however, being
 the only one developing here, I just use it for Version Control. 
 However you could look into it, I am sure that there are docs on it.
 HTH

Yeah I don't think that will work though because Dreamweaver's
check-in/check-out is its own system - it's not related to and as far as
I know doesn't integrate with any other kinds of locking or versioning
systems. 

-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 781.769.0723

http://onTap.riaforge.org/blog



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316628
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: java package name on cfinvoke of web service

2008-12-11 Thread sam Detweiler
FYI Axis that is shipped with ColdFusion is 1.2.X the latest is 1.4 the one
in CF is markedly older regardless of the creation or modified date...

Adam

ok, odd that the date matches exactly the 1.4 release..

regardless.. there IS a way around this problem, use CreateObject, which allows 
one to pass the additional parameters. 

cfscript
  wsparm = StructNew();
  wsparm[refreshWSDL]=no;
  wsparm[saveJava]=yes;
  wsparm[wsdl2javaArgs]=-p com.xxx.yyy.webservice; 
  wsparm[port]=DSMWebServiceAPIService;
  ws=CreateObject(webservice,wsdl_url,wsparm);
/cfscript

Sam 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316629
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Dreamweaver question

2008-12-11 Thread Massimo Foti
 Speaking of Dreamweaver, has anybody heard anything about when they're
 going to fix the problem with SVN support in CS4? 

I would not expect it to be fixed before CS 5... But I may be wrong.

  
Massimo Foti, web-programmer for hire
Tools for ColdFusion, JavaScript and Dreamweaver:
http://www.massimocorner.com
  


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316630
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Dreamweaver question

2008-12-11 Thread Dawson, Michael
Rather than trusting DW's synchronize feature, I use Beyond Compare.
It's well worth the cost $30-$50.

Mike

-Original Message-
From: Aaron Rouse [mailto:aaron.ro...@gmail.com] 
Sent: Thursday, December 11, 2008 11:09 AM
To: cf-talk
Subject: Re: Dreamweaver question

Ok, so it is just the exact same thing as using ctrl+shift+u  I always
end up editing a few files and then just using the synchronize feature.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316631
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Dreamweaver Locking

2008-12-11 Thread s. isaac dealey
 Ok.. I don't know Ant.. Can someone point me to someplace that might 
 have some beginning lessons on ant?

Back yard? ;) 

-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 781.769.0723

http://onTap.riaforge.org/blog



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316632
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Dreamweaver Locking

2008-12-11 Thread Dawson, Michael
Picnics? 

-Original Message-
From: s. isaac dealey [mailto:i...@turnkey.to] 
Sent: Thursday, December 11, 2008 12:26 PM
To: cf-talk
Subject: Re: Dreamweaver Locking

 Ok.. I don't know Ant.. Can someone point me to someplace that might 
 have some beginning lessons on ant?

Back yard? ;) 


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316633
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Dreamweaver question

2008-12-11 Thread Aaron Rouse
Since I am the only one who touches the files in both locations,
a synchronization tool that goes just off the file dates is more than enough
for me and going to assume after 3-4 years of using the one in DW that is
all it does.  Because really all I am doing with it is copying up the newly
edited files.

On Thu, Dec 11, 2008 at 12:21 PM, Dawson, Michael m...@evansville.eduwrote:

 Rather than trusting DW's synchronize feature, I use Beyond Compare.
 It's well worth the cost $30-$50.

 Mike

 -Original Message-
 From: Aaron Rouse [mailto:aaron.ro...@gmail.com]
 Sent: Thursday, December 11, 2008 11:09 AM
 To: cf-talk
 Subject: Re: Dreamweaver question

 Ok, so it is just the exact same thing as using ctrl+shift+u  I always
 end up editing a few files and then just using the synchronize feature.


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316634
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Dreamweaver Locking

2008-12-11 Thread Dave Watts
 I don't like Dreamweaver. At all. I loathe it.

 However, my boss likes it. So he wants to use it's checkin/checkout
 function.

 I hate the idea of loading it up JUST to check in and out files.

 What I'm asking is.. Does anyone know of any program that allows me to
 check in and out files on the server, but not actually use dreamweaver.

The only two programs which work with Dreamweaver's file-based locking
scheme are Dreamweaver and Contribute. As others have mentioned, it's
probably pretty easy to figure out how to write a .lck file, but I
haven't tried. If you're going to use tools other than Dreamweaver, I
strongly recommend the use of a standard version control server like
Subversion - Dreamweaver can certainly work with that.

Even if you're just going to use Dreamweaver, I'd still generally
recommend that, since Dreamweaver's checkin/checkout is not really a
substitute for version control - not by a long shot. The only thing it
does is prevent multiple developers from editing a file
simultaneously. If you're also using Contribute, you'll have to use
it, though, since Contribute relies on it pretty heavily if I recall
correctly.

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

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316635
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Source Control Method

2008-12-11 Thread Torrent Girl
Thanks All!


On Thu, Dec 11, 2008 at 11:23 AM, Phillip M. Vector 
vec...@mostdeadlygame.com wrote:


Source control is usually used for keep historical records on the source, as
well as handling more complicated workgroup programming tasks, (ie
branching, merging, tagging, etc).  If you just need to lock files to keep
others from working on them at the same time, then I would stay with the
Dreamweaver method, and allow it to handle your locks, (I have only used
Dreamweaver with webDAV publishing, so am not sure if it works the same in
other protocols).

If you need source control, Subversion (http://subversion.tigris.org/) is a
great solution.

speeves 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316636
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread Rick Faircloth
I noticed that the chatter around DW CS4 has increased a lot lately.

Isaac, Aaron, Massimo, Michael, et al, are discussing it, and, Isaac,
you stated that you want to use it.

And for those of you, like Isaac, who would really like to use it,
my question is, why use DW CS4 instead of say, CFEclipse, when DW is $400
and CFE is free?  (Also especially since Adobe's IDE is right around the 
corner...)

It's a sincere question, because although I like CFE, it's lacking some
features, such as FTP connectivity and manual (saved!) code folding, that
I really want.  So I'm considering DW.

I've considered downloading it and giving it a shot, but I've done that since
before it was called Drumbeat and I've never found it appealing, especially
not at $400.

So, what makes it so good in you who are using it?  Is it's feature set, or
stability, or whatever, the selling point for you?

Thanks for the feedback...

Rick


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316637
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread Dawson, Michael
DW CS4 (WinXP) is very stable.  I have not yet had any lockups or
errors.

I use it strictly as a code editor.  I have a few snippets and quite a
few keyboard shortcuts.

As another few people have stated, a sweet timesaver is the smart-close
tag feature.

Basically, if you type:

table
tr
td/td
/tr

Then, when you type /, DW will smartly close the table tag.

Some other great new features are the CSS enhancements and the related
files/code navigator.

YouTube has some videos on the new DW CS4 features.

Mike

-Original Message-
From: Rick Faircloth [mailto:r...@whitestonemedia.com] 
Sent: Thursday, December 11, 2008 1:05 PM
To: cf-talk
Subject: Is Dreamweaver CS4 taking off as an IDE?

I noticed that the chatter around DW CS4 has increased a lot lately.

Isaac, Aaron, Massimo, Michael, et al, are discussing it, and, Isaac,
you stated that you want to use it.

And for those of you, like Isaac, who would really like to use it,
my question is, why use DW CS4 instead of say, CFEclipse, when DW is
$400 and CFE is free?  (Also especially since Adobe's IDE is right
around the corner...)

It's a sincere question, because although I like CFE, it's lacking some
features, such as FTP connectivity and manual (saved!) code folding,
that I really want.  So I'm considering DW.

I've considered downloading it and giving it a shot, but I've done that
since before it was called Drumbeat and I've never found it appealing,
especially not at $400.

So, what makes it so good in you who are using it?  Is it's feature set,
or stability, or whatever, the selling point for you?

Thanks for the feedback...

Rick

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316638
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread John M Bliss
I like the built-in Spry support in DW.

On Thu, Dec 11, 2008 at 1:05 PM, Rick Faircloth r...@whitestonemedia.comwrote:

 I noticed that the chatter around DW CS4 has increased a lot lately.

 Isaac, Aaron, Massimo, Michael, et al, are discussing it, and, Isaac,
 you stated that you want to use it.

 And for those of you, like Isaac, who would really like to use it,
 my question is, why use DW CS4 instead of say, CFEclipse, when DW is $400
 and CFE is free?  (Also especially since Adobe's IDE is right around the
 corner...)

 It's a sincere question, because although I like CFE, it's lacking some
 features, such as FTP connectivity and manual (saved!) code folding, that
 I really want.  So I'm considering DW.

 I've considered downloading it and giving it a shot, but I've done that
 since
 before it was called Drumbeat and I've never found it appealing,
 especially
 not at $400.

 So, what makes it so good in you who are using it?  Is it's feature set, or
 stability, or whatever, the selling point for you?

 Thanks for the feedback...

 Rick


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316639
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread s. isaac dealey
 Isaac, Aaron, Massimo, Michael, et al, are discussing it, and, Isaac,
 you stated that you want to use it.

I am using it actually... I'm just frustrated by the broken SVN support.
It's the biggest highlight of the what's new for me... I don't want to
have to install Python and regress my local file versions to use it. 

 And for those of you, like Isaac, who would really like to use it,
 my question is, why use DW CS4 instead of say, CFEclipse, when DW is
 $400 and CFE is free?  (Also especially since Adobe's IDE is right
 around the corner...)

I haven't had to pay for either of the versions of Dreamweaver I've
owned. I got a copy of CS2 w/ DW8 a while back as one of the perks for
being an Adobe Community Expert and then the copy of CS4 that I have now
I won in a raffle at the local CFUG. It's still not perfect for me and
honestly until CS2 I couldn't stand Dreamweaver. But currently DW is a
lot easier for me to use than the last version of Eclipse that I had for
a while when I was working for a copmany in Portland OR. 

Personally, if I had the money to keep all my hardware and software
updated (without freebies), I think I would still give serious
consideration to paying for Dreamweaver because in spite of its
imperfections, it gets in my way a lot less than Eclipse or really any
of the other free IDEs I've tried off and on like jEdit (which
admittedly was a pretty neat and powerful editor for the while that I
used it). I forget the reason I stopped using jEdit actually... there
was something that was causing me enough problems to abandon it in spite
of liking it, I just can't remember now what it was. 

I would still love to see them expand the upload to server on save
feature to include other file operations (move, delete, rename and paste).
But nobody else seems interested in having that feature enhancement (or
at least not within Adobe), so... 

As far as features go I have to say the find/search/replace feature is
the best I've found. Eclipse was horrid on that front last I used it.
I've heard that it's improved. I don't use the code folding feature much
(I tend to make sure my working files are pretty small to begin with),
so I can't really tell you how that stacks up to CF-Studio/Homesite+.
And for that matter whenever I create a new project there's a handful of
things I have to manually turn off (because they're dumb and turned on
by default), like cloaking and design notes. Cloaking could be okay, but
imo it would need to be changed. I guess the honest truth is that I use
very few of Dreamweaver's actual features, so I guess as I said, I
consider it doesn't get in my way a feature. Eclipse was constantly
making it difficult for me to do my job one way or another. 



-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 781.769.0723

http://onTap.riaforge.org/blog



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316640
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread s. isaac dealey
 As another few people have stated, a sweet timesaver is the
 smart-close tag feature.

Oh yeah, I forget about that one... it's become second nature, so I take
it for granted. But I'm sure I would notice if I started using another
editor again. :) I use the insight some too, although possibly not as
much as other folks do. I type pretty fast and I can remember a few
years ago when I first saw code insight in an IDE thinking I should
take advantage of that but then there were lots of times that by the
time I realized that I had an insight menu, I'd basically already filled
in the text. That's also partly memory -- for tags I use less often it's
more helpful, because I actually pause after entering the tag name or
the attribute name to see what it suggests. Tags I use often I don't
typically pause, because I'm not really thinking about typing, I'm just
thinking about the tag I want there and then BAM it's there. That's what
happens when something becomes habituated/automaticized. 


-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 781.769.0723

http://onTap.riaforge.org/blog



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316641
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread s. isaac dealey
 I like the built-in Spry support in DW.

shudder

Ajax can be so agile if it's not spry. 

-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 781.769.0723

http://onTap.riaforge.org/blog



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316642
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread John M Bliss
I've been a CFML dev for 12 years and I still use insight (and/or
right-click tag  left-click Edit Tag) because I *absolutely do not trust my
memory and hate to make mistakes*.  I know, I know: slightly anal/OCD.  But
I swear I'm wicked-fast.  :-)

On Thu, Dec 11, 2008 at 1:39 PM, s. isaac dealey i...@turnkey.to wrote:

  As another few people have stated, a sweet timesaver is the
  smart-close tag feature.

 Oh yeah, I forget about that one... it's become second nature, so I take
 it for granted. But I'm sure I would notice if I started using another
 editor again. :) I use the insight some too, although possibly not as
 much as other folks do. I type pretty fast and I can remember a few
 years ago when I first saw code insight in an IDE thinking I should
 take advantage of that but then there were lots of times that by the
 time I realized that I had an insight menu, I'd basically already filled
 in the text. That's also partly memory -- for tags I use less often it's
 more helpful, because I actually pause after entering the tag name or
 the attribute name to see what it suggests. Tags I use often I don't
 typically pause, because I'm not really thinking about typing, I'm just
 thinking about the tag I want there and then BAM it's there. That's what
 happens when something becomes habituated/automaticized.


 --
 s. isaac dealey  ^  new epoch
  isn't it time for a change?
 ph: 781.769.0723

 http://onTap.riaforge.org/blog



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316643
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread Rob Parkhill
I like the built in tag reference, so if I am trying to do something that I
haven't done in a while (or perhaps never) there is the built in tag
reference, which gives usage examples.  And since I got the CS4 demo
installed and working, my RDS is actually RDSing which I had not been able
to get to work before, and I am finding that I am referencing that quite a
bit now too... course now I have to convince someone to pay for the
upgrade
Rob

On Thu, Dec 11, 2008 at 2:39 PM, s. isaac dealey i...@turnkey.to wrote:

  As another few people have stated, a sweet timesaver is the
  smart-close tag feature.

 Oh yeah, I forget about that one... it's become second nature, so I take
 it for granted. But I'm sure I would notice if I started using another
 editor again. :) I use the insight some too, although possibly not as
 much as other folks do. I type pretty fast and I can remember a few
 years ago when I first saw code insight in an IDE thinking I should
 take advantage of that but then there were lots of times that by the
 time I realized that I had an insight menu, I'd basically already filled
 in the text. That's also partly memory -- for tags I use less often it's
 more helpful, because I actually pause after entering the tag name or
 the attribute name to see what it suggests. Tags I use often I don't
 typically pause, because I'm not really thinking about typing, I'm just
 thinking about the tag I want there and then BAM it's there. That's what
 happens when something becomes habituated/automaticized.


 --
 s. isaac dealey  ^  new epoch
  isn't it time for a change?
 ph: 781.769.0723

 http://onTap.riaforge.org/blog



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316644
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Using Coldfusion with Filemaker

2008-12-11 Thread cfcom
I'll take a look at them, thank you Mike

-Original Message-
From: Mike Chabot [mailto:mcha...@gmail.com] 
Sent: 2008-12-10 4:49 PM
To: cf-talk
Subject: Re: Using Coldfusion with Filemaker

The list archives have a good discussion on this topic.

-Mike Chabot

On Tue, Dec 9, 2008 at 6:10 PM, cfcom cf...@aceligent.com wrote:
 Does any one have any experience using CF with Filemaker... good, bad, etc


 Thanks



 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316645
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread Rick Faircloth
Question about a feature... does DW CS4 let you set manual code folding points
and then save those folds when the file is closed?

And from what I glean from the conversations, SVN is *not* working?!?!


 -Original Message-
 From: John M Bliss [mailto:bliss.j...@gmail.com]
 Sent: Thursday, December 11, 2008 2:46 PM
 To: cf-talk
 Subject: Re: Is Dreamweaver CS4 taking off as an IDE?
 
 I've been a CFML dev for 12 years and I still use insight (and/or
 right-click tag  left-click Edit Tag) because I *absolutely do not trust my
 memory and hate to make mistakes*.  I know, I know: slightly anal/OCD.  But
 I swear I'm wicked-fast.  :-)
 
 On Thu, Dec 11, 2008 at 1:39 PM, s. isaac dealey i...@turnkey.to wrote:
 
   As another few people have stated, a sweet timesaver is the
   smart-close tag feature.
 
  Oh yeah, I forget about that one... it's become second nature, so I take
  it for granted. But I'm sure I would notice if I started using another
  editor again. :) I use the insight some too, although possibly not as
  much as other folks do. I type pretty fast and I can remember a few
  years ago when I first saw code insight in an IDE thinking I should
  take advantage of that but then there were lots of times that by the
  time I realized that I had an insight menu, I'd basically already filled
  in the text. That's also partly memory -- for tags I use less often it's
  more helpful, because I actually pause after entering the tag name or
  the attribute name to see what it suggests. Tags I use often I don't
  typically pause, because I'm not really thinking about typing, I'm just
  thinking about the tag I want there and then BAM it's there. That's what
  happens when something becomes habituated/automaticized.
 
 
  --
  s. isaac dealey  ^  new epoch
   isn't it time for a change?
  ph: 781.769.0723
 
  http://onTap.riaforge.org/blog
 
 
 
 
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316646
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread s. isaac dealey
 I've been a CFML dev for 12 years and I still use insight (and/or
 right-click tag  left-click Edit Tag) because I *absolutely do not
 trust my memory and hate to make mistakes*.  I know, I know: slightly
 anal/OCD.  But I swear I'm wicked-fast.  :-)

That oddly reminds me of my relationship to SQL. I've seen job listings
where the guy writing the ad said you have to be able to write your own
SQL by hand - if you use the wysiwyg in enterprise manager, don't bother
On the other side I was working for companies where someone would ask me
to help them with a query and I'd go over to their desk, pop open query
analyzer and have typed out the whole thing with joins and whatnot in a
few seconds. It was natural for me, but the response from the guys I was
working with was how do you do that? They were the guys who used the
wysiwyg mostly. I never went to QA to write it by hand out of any kind
of elitism or any attempt to impress people. It was just the way I
learned, so it was easier. Although I will admit it was flattering. :)
These days I do a lot of my own work where I'm not really writing SQL
anymore because it's wrapped up in DataFaucet's object-based abstraction. 


-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 781.769.0723

http://onTap.riaforge.org/blog



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316647
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread John M Bliss
 Question about a feature... does DW CS4 let you set manual code folding
points
and then save those folds when the file is closed?

Just tested this and, yes, it seems to work.

 And from what I glean from the conversations, SVN is *not* working?!?!

Works for me: DW CS4 and http://www.visualsvn.com/server/

On Thu, Dec 11, 2008 at 2:04 PM, Rick Faircloth r...@whitestonemedia.comwrote:

 Question about a feature... does DW CS4 let you set manual code folding
 points
 and then save those folds when the file is closed?

 And from what I glean from the conversations, SVN is *not* working?!?!


  -Original Message-
  From: John M Bliss [mailto:bliss.j...@gmail.com]
  Sent: Thursday, December 11, 2008 2:46 PM
  To: cf-talk
  Subject: Re: Is Dreamweaver CS4 taking off as an IDE?
 
  I've been a CFML dev for 12 years and I still use insight (and/or
  right-click tag  left-click Edit Tag) because I *absolutely do not trust
 my
  memory and hate to make mistakes*.  I know, I know: slightly anal/OCD.
  But
  I swear I'm wicked-fast.  :-)
 
  On Thu, Dec 11, 2008 at 1:39 PM, s. isaac dealey i...@turnkey.to
 wrote:
 
As another few people have stated, a sweet timesaver is the
smart-close tag feature.
  
   Oh yeah, I forget about that one... it's become second nature, so I
 take
   it for granted. But I'm sure I would notice if I started using another
   editor again. :) I use the insight some too, although possibly not as
   much as other folks do. I type pretty fast and I can remember a few
   years ago when I first saw code insight in an IDE thinking I should
   take advantage of that but then there were lots of times that by the
   time I realized that I had an insight menu, I'd basically already
 filled
   in the text. That's also partly memory -- for tags I use less often
 it's
   more helpful, because I actually pause after entering the tag name or
   the attribute name to see what it suggests. Tags I use often I don't
   typically pause, because I'm not really thinking about typing, I'm just
   thinking about the tag I want there and then BAM it's there. That's
 what
   happens when something becomes habituated/automaticized.
  
  
   --
   s. isaac dealey  ^  new epoch
isn't it time for a change?
   ph: 781.769.0723
  
   http://onTap.riaforge.org/blog
  
  
  
  
 
 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316648
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread John M Bliss
I've been asked to do this (notepad coding) in interviews with
CFML/SQL/HTML/JS/etc and I can usually pull it out.

My methods allow me to spend almost zero time fixing typos/syntax errors/etc
where I've helped colleagues track down insidious bugs caused by errant
keystrokes.

On Thu, Dec 11, 2008 at 2:13 PM, s. isaac dealey i...@turnkey.to wrote:

  I've been a CFML dev for 12 years and I still use insight (and/or
  right-click tag  left-click Edit Tag) because I *absolutely do not
  trust my memory and hate to make mistakes*.  I know, I know: slightly
  anal/OCD.  But I swear I'm wicked-fast.  :-)

 That oddly reminds me of my relationship to SQL. I've seen job listings
 where the guy writing the ad said you have to be able to write your own
 SQL by hand - if you use the wysiwyg in enterprise manager, don't bother
 On the other side I was working for companies where someone would ask me
 to help them with a query and I'd go over to their desk, pop open query
 analyzer and have typed out the whole thing with joins and whatnot in a
 few seconds. It was natural for me, but the response from the guys I was
 working with was how do you do that? They were the guys who used the
 wysiwyg mostly. I never went to QA to write it by hand out of any kind
 of elitism or any attempt to impress people. It was just the way I
 learned, so it was easier. Although I will admit it was flattering. :)
 These days I do a lot of my own work where I'm not really writing SQL
 anymore because it's wrapped up in DataFaucet's object-based abstraction.


 --
 s. isaac dealey  ^  new epoch
  isn't it time for a change?
 ph: 781.769.0723

 http://onTap.riaforge.org/blog



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316649
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Source Control Method

2008-12-11 Thread Larry Lyons
Hello All

I need to set up a source control solution and am not familiar with doing this.

Doesn't Dreamweaver allow you to manage code?

Also can someone suggest a free, easy to implement solution?

Thanks

On the PC at work I use TortoiseSVN. It works just fine. At home I use a 
MacBook. Versions SVN (mac only) is about the best SVN client I've run across. 
http://www.versionsapp.com/ 

There are a variety of SVN setups around, one of the best I've come across is 
SVN-1Clicksetup, http://svn1clicksetup.tigris.org/ Its a single installer for 
setting up an SVN on the PC of your choice.

hth,
larry 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316650
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread Aaron Rouse
Well I did not have to pay for the copy on my work laptop.  When I started
doing contract work for this group about 4.5 years ago they said we had to
use DW, I think it was version 8 or MX not sure because used both of those
versions for this group.  At the time I had only used CFStudio or Homesite
so I forced myself to switch and for a long time disliked certain things but
eventually got over them and never even think about them, I think it was
just specific hotkeys that I could not get to setup in DW.  That manager
since left here which is why we never went to CS3, the new manager had no
preference but we just stuck with what we had.  I ran into a specific bug in
DW8 so put out the request to upgrade once CS4 was out.  I waited because
CS4 was in beta when I found the bug and figured best to wait to get the
latest since the bug was far from a show stopper.
In that time I have used CFE on a few projects and while it is free I have
found I am not near as efficient with it.  It takes more of my time and my
time is money.  There are specific things about it that I do not like.  The
only one that comes to mind right now is the searching which has greatly
improved in Eclipse although still somethings about it that I do not like
and hurt my performance when another tool works how I need it too.  Now if
my complaints/problems are specific to Eclipse then it does not instill a
lot of confidence in me that I will like Bolt, not enough to hold out for
lord knows how long until I can test drive it and see.  So there is my
reason for not using something free or waiting to use something that is
destined to come out.  I also have my hesitations about Bolt and how well
it's feature set will work with past versions of CF.

Also with all that said, I did buy CS4 for my home workstation.  I actually
bought the entire Master Collection due to having a need for several of the
products it gives me.  So do not look at my laptop example and think oh it
is because I got it for free because I did end up buying it for my other
working environment.

Another thing to note since people always seem to think if someone uses DW
then they use the GUI.  I use and have always used DW only as a code editor
for my work.  Very recently I had to use DW CS4 for its WSYWIG stuff during
a class I had to take.  I was rather impressed with how easy it is to use
but will not be using it for my work since there is no need for the type of
work I do.

You need to figure out what works best for you and then go with it.

On Thu, Dec 11, 2008 at 1:05 PM, Rick Faircloth r...@whitestonemedia.comwrote:

 I noticed that the chatter around DW CS4 has increased a lot lately.

 Isaac, Aaron, Massimo, Michael, et al, are discussing it, and, Isaac,
 you stated that you want to use it.

 And for those of you, like Isaac, who would really like to use it,
 my question is, why use DW CS4 instead of say, CFEclipse, when DW is $400
 and CFE is free?  (Also especially since Adobe's IDE is right around the
 corner...)

 It's a sincere question, because although I like CFE, it's lacking some
 features, such as FTP connectivity and manual (saved!) code folding, that
 I really want.  So I'm considering DW.

 I've considered downloading it and giving it a shot, but I've done that
 since
 before it was called Drumbeat and I've never found it appealing,
 especially
 not at $400.

 So, what makes it so good in you who are using it?  Is it's feature set, or
 stability, or whatever, the selling point for you?

 Thanks for the feedback...

 Rick


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316651
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread Rick Faircloth
So, is it just TortoiseSVN that's not working with DW CS4?

 -Original Message-
 From: John M Bliss [mailto:bliss.j...@gmail.com]
 Sent: Thursday, December 11, 2008 3:24 PM
 To: cf-talk
 Subject: Re: Is Dreamweaver CS4 taking off as an IDE?
 
  Question about a feature... does DW CS4 let you set manual code folding
 points
 and then save those folds when the file is closed?
 
 Just tested this and, yes, it seems to work.
 
  And from what I glean from the conversations, SVN is *not* working?!?!
 
 Works for me: DW CS4 and http://www.visualsvn.com/server/
 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316652
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: REreplace function for special characters

2008-12-11 Thread Don L
My follow-up posted last night didn't show up.  So, I'm re-doing it now.
Execellent, Peter, thank you very much.
I'll use 

rereplace( FileName , '\W' , '' , 'all' )

On the extension stuff I have a way to address it.

Don

 rereplace(foo, '[^\w]', '', 'all')
 will replace any non-alphanumeric character

No need to complicate things with an inverted character class.
\W is same as [^\w]

Also, this bugs me immensely:
 assuming 'foo' is the file name

JUST USE THE VARIABLE FILENAME THEN!

So:
rereplace( FileName , '\W' , '' , 'all' ) 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316653
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread jonese
I have CS4 trial on my mac and i have not been able to get SVN to work at
all. I think i read somewhere that if you have 3rd party SVN software and
upgrade that above a 1.4.3 version then it boinks the DW codebase
to me that is an EPIC fail and something i've always hated about Adobe (and
macromedia) products. They use 3rd party stuff BUT never make it easy to
upgrade or to stay current. I mean 1.4.3 really? we're already into the
1.5 branch

other than that i am a DW fanboy. (my acfug peeps are always hating on me).
 I spend 80% in code and he other 15% in split and only 5% in design. I love
the code completion, the right click to edit tags. the site management
features are by far my favorite (auto save to 2 other servers) and
probably so many other things that my days (i've used it since ultra dev!)
of use have caused it to be second nature

love it. can't wait till i can afford it. (using CS3 at work)
___
Eric Jones aka jonese
http://www.jonese.us
http://twitter.com/jonese


On Thu, Dec 11, 2008 at 3:53 PM, Rick Faircloth r...@whitestonemedia.comwrote:

 So, is it just TortoiseSVN that's not working with DW CS4?

  -Original Message-
  From: John M Bliss [mailto:bliss.j...@gmail.com]
  Sent: Thursday, December 11, 2008 3:24 PM
  To: cf-talk
  Subject: Re: Is Dreamweaver CS4 taking off as an IDE?
 
   Question about a feature... does DW CS4 let you set manual code folding
  points
  and then save those folds when the file is closed?
 
  Just tested this and, yes, it seems to work.
 
   And from what I glean from the conversations, SVN is *not* working?!?!
 
  Works for me: DW CS4 and http://www.visualsvn.com/server/
 



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316654
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Dynamic menu system

2008-12-11 Thread erik tom
I got a little problem here. I am using cfform format flash and I cfgrid which 
list menu items. Also have dynamic set of drop downs (access Levels). What i am 
trying to is by selecting menu item preload the appropriate drop down. 
Since it a flash form i need to use Action Script. Also in the list of menu 
items i only want to list the menu item once , but i get as many listings as 
diff menu accesses menu have. 

Here is my query to pull menu items 

cfquery name=mainmenu datasource=cfelsunrise dbtype=ODBC
select 
a.label,a.menuID,a.link,b.foundOn,m.accessType,m.AccessValue
from menu a 
inner join menufoundon b on a.menuId=b.menUId
inner join menuAccesstable m on 
m.menuID=a.menuID
order by a.label
/cfquery

And here is my action script 
cfsavecontent variable=getComboBoxValue
cfloop query=menuQuery


//Set a temp variable to hold 
the current comboBox value 
var temp;
//Loop through all the comboBox 
values

for(var i = 1; i  
access#accessType#.length; i++){

if 
(access#accessType#.getItemAt([i]).accessValue 
==myGrid.selectedItem.accessValue) {
//set the comboBox to the 
current index

access#accessType#.selectedIndex=i;
//set temp to the value of the 
comboBox

//if temp equals the selected 
clientID then stop looping through the comboBox

}
}

/cfloop
/cfsavecontent
Please help prepopulate the drop downs. This is very URGENT 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316655
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread s. isaac dealey
 And from what I glean from the conversations, SVN is *not* working?!?!

SVN maintains a working copy in your local directories, which is where
it stores the latest repo version for comparisons to provide the status
that indicates which files have changed. A recent update to the format
of the metadata that's stored in the working copy was incompatible with
previous versions. Not a problem as long as you're using a client that
knows how to automatically update the local copy to the new version
(TortoiseSVN for example). 

Dreamweaver doesn't know how to do that and also doesn't know how to
work with the newer version. So the only way to use DW's SVN features is
to make sure that you don't use any of the recent versions of Tortoise
or any other newer SVN clients that perform the update. I was already
using Tortoise and keep up to date on it. Once you've updated, there's
no simple way to go back. 

There *is* a way to go back, but it involves installing Python, which
I'm not keen on doing. I suppose I could probably just blow away my
working directories and start over from scratch in Dreamweaver, that
might be easier. I would still have to go fetch an older version of
Tortoise (or uninstall it) to make sure that my working copies don't get
automatically updated by accident. It's just a big PITA really.

So yes it works, but it's a big frustration because it doesn't work the
way it ought to. Was the only feature I was really looking forward to in
CS4, that's why I'm so frustrated by it. 


-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 781.769.0723

http://onTap.riaforge.org/blog



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316657
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


SmarterStats API

2008-12-11 Thread Jeff Becker
Hello everyone,
I am having trouble with the SmarterStats API and utilizing ColdFusion to 
gather stats.  I have successfully made the call and am getting the results 
back.  However, I think because my return of complex type(??), I'm not sure how 
to interpret/display the results.  Based on the minimal documentation, I was 
hoping to get back.

QueryItem   Visits
 id=123  89
 id=124  52
 id=125  5


The code I have is below.  The cfdumps give back just ugly object of 
com.smartertools.smarterstats.query.ExecuteQueryResponseExecuteQueryResult 
OBJECTS.. not very useful.  The attempt below is what I tried in traversing 
these objects.

See code below.  Any ideas?



cfset query=select * from 
ftopqueriesbypage(1,'2008-09-08T00:00:00','2008-09-09T00:00:00',20,'/viewArticle.cfm')
 order by Visits desc

cfinvoke
  webservice =http://MYSITE.com:/services/query.asmx?wsdl;
  method =ExecuteQuery
  returnVariable = getinfo 
cfinvokeargument name=authUserName value=USERNAME/
cfinvokeargument name=authPassword value=PASSWORD/
cfinvokeargument name=AuthorizationCode value=WEBSERVICES_AUTH_CODE/
cfinvokeargument name=SiteID value=1/
cfinvokeargument name=query value=#query#/
/cfinvoke


!---cfdump var=#getinfo#---

cfset a = getinfo.get_any()

!---cfdump var=#a#---

cfloop index=x from=1 to=#arrayLen(a)#
cfoutput#x# - #a[x].toString()# - - BRBR/cfoutput
/cfloop 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316658
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: SmarterStats API

2008-12-11 Thread Burns, John D
Try cfdump var=#getinfo#

-Original Message-
From: Jeff Becker [mailto:jpbec...@yahoo.com] 
Sent: Thursday, December 11, 2008 4:12 PM
To: cf-talk
Subject: SmarterStats API

Hello everyone,
I am having trouble with the SmarterStats API and utilizing ColdFusion
to gather stats.  I have successfully made the call and am getting the
results back.  However, I think because my return of complex type(??),
I'm not sure how to interpret/display the results.  Based on the minimal
documentation, I was hoping to get back.

QueryItem   Visits
 id=123  89
 id=124  52
 id=125  5


The code I have is below.  The cfdumps give back just ugly object of
com.smartertools.smarterstats.query.ExecuteQueryResponseExecuteQueryResu
lt OBJECTS.. not very useful.  The attempt below is what I tried in
traversing these objects.

See code below.  Any ideas?



cfset query=select * from
ftopqueriesbypage(1,'2008-09-08T00:00:00','2008-09-09T00:00:00',20,'/vie
wArticle.cfm') order by Visits desc

cfinvoke
  webservice =http://MYSITE.com:/services/query.asmx?wsdl;
  method =ExecuteQuery
  returnVariable = getinfo 
cfinvokeargument name=authUserName value=USERNAME/
cfinvokeargument name=authPassword value=PASSWORD/
cfinvokeargument name=AuthorizationCode
value=WEBSERVICES_AUTH_CODE/
cfinvokeargument name=SiteID value=1/
cfinvokeargument name=query value=#query#/
/cfinvoke


!---cfdump var=#getinfo#---

cfset a = getinfo.get_any()

!---cfdump var=#a#---

cfloop index=x from=1 to=#arrayLen(a)#
cfoutput#x# - #a[x].toString()# - - BRBR/cfoutput
/cfloop 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316659
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread s. isaac dealey
 So, is it just TortoiseSVN that's not working with DW CS4?

I posted a longer answer to this a minute ago, but the thumbnail
synopsuis is that DW's SVN support is not current and that support for
the current format is not backward compatible. So it's not just a
TortoiseSVN+Dreamweaver thing, it's just a Dreamweaver thing... but
whether or not it works may depend on your needs. If you aren't
already using or don't have any need to use a separate and current
client, then you may never even run into the problem I have. 

-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 781.769.0723

http://onTap.riaforge.org/blog



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316660
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SmarterStats API

2008-12-11 Thread Jeff Becker
Yes. Tried that. It is currently commented out in the code... among other 
things.

That just gives the object methods all printed out, not much help as I try to 
get at the data located SOMEWHERE!??? 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316661
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread s. isaac dealey
 other than that i am a DW fanboy. (my acfug peeps are always hating
 on me). I spend 80% in code and he other 15% in split and only 5% in
 design.

Yeah, I don't use split or design at all. I was pretty happy when
someone else on this list mentioned a way to prevent the split view from
popping open randomly without my asking. Turns out there's a place where
you can specify the file extensions that open in code view and that
disables the design view all-together for those file formats. So I just
added every extension I could think of. .htm .html .cfm .cfc .cfr .php
..asp (which I never use, but what the heck). That tip resolved my
biggest long-term gripe with Dreamweaver. :) 


-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 781.769.0723

http://onTap.riaforge.org/blog



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316662
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread Massimo Foti
 So, is it just TortoiseSVN that's not working with DW CS4?

http://kb.adobe.com/selfservice/viewContent.do?externalId=kb406661sliceId=1


Massimo Foti, web-programmer for hire
Tools for ColdFusion, JavaScript and Dreamweaver:
http://www.massimocorner.com



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316656
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread s. isaac dealey
 I've been asked to do this (notepad coding) in interviews with
 CFML/SQL/HTML/JS/etc and I can usually pull it out.
 
 My methods allow me to spend almost zero time fixing typos/syntax
 errors/etc where I've helped colleagues track down insidious bugs
 caused by errant keystrokes.

Yeah, I've definitely had that happen to me. Just not often enough to
inspire me to change my coding habits. ;) It happens maybe once or twice
a year in my case. But I can certainly appreciate why you might prefer a
style of development that mostly prevents it, because it's really
frustrating to realize you just spent a few hours debugging a typo. 


-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 781.769.0723

http://onTap.riaforge.org/blog



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316663
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread Raymond Camden
This discussion was on DW, not Spry, but I've got to stand up for it
here. I find Spry to be -very- nice to use, and pretty powerful. It
may not be jQuery, but for getting and displaying AJAX-based data on
page, no framework can beat it for simplicity (especially for folks
who may not have a lot of JS experience.)


On Thu, Dec 11, 2008 at 1:43 PM, s. isaac dealey i...@turnkey.to wrote:
 I like the built-in Spry support in DW.

 shudder

 Ajax can be so agile if it's not spry.

 --
 s. isaac dealey  ^  new epoch
  isn't it time for a change?
 ph: 781.769.0723

 http://onTap.riaforge.org/blog



-- 
===
Raymond Camden, VP of Software Dev, Broadchoice

Email: r...@camdenfamily.com
Blog  : www.coldfusionjedi.com
AOL IM : cfjedimaster

Keep up to date with the community: http://www.coldfusionbloggers.org

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316664
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SmarterStats API

2008-12-11 Thread Jeff Becker
This is the same issue Sebastian is having as well.  I too get the get_any() 
method and am just uncertain how to access data.

Related:  http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:58292 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316665
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread Raymond Camden
I've been using it, off and on, for about 3 months now. I was asked by
the DW team (well the ADC/DW people) to update some older DW/CF
articles, therefore, I had to use. I told them right out that I was a
DW Hater, but since this would help folks who were using CF, I agreed
to it.

Surprisingly, I've found DW to be very nice. It is very responsive and
while it may be known as a RAM hogger, I have to say that DW performs
FAR better on my system then Eclipse does. For about 6 months now
Eclipse has just been crap in regards to performance. Not all the time
of course, but a few times a week it decides to just slow down to a
halt. This isn't CFE's fault since my latest Eclipse build doesn't
even have CFE in it. Rather I believe it is one of the Groovy/Java/etc
plugins I've added for my day to day work.

Anyway, the point is - DW screams on my system and I've been enjoying
using it. I'd probably move to it full time for my CF work if I had an
easy way to import the projects I've set up in my CFE.

Going back to JS, folks should check out some of the features that
were added in CS4. They added some _incredibly_ powerful code
rewriters for JS work.

On Thu, Dec 11, 2008 at 1:05 PM, Rick Faircloth
r...@whitestonemedia.com wrote:
 I noticed that the chatter around DW CS4 has increased a lot lately.

 Isaac, Aaron, Massimo, Michael, et al, are discussing it, and, Isaac,
 you stated that you want to use it.

 And for those of you, like Isaac, who would really like to use it,
 my question is, why use DW CS4 instead of say, CFEclipse, when DW is $400
 and CFE is free?  (Also especially since Adobe's IDE is right around the 
 corner...)

 It's a sincere question, because although I like CFE, it's lacking some
 features, such as FTP connectivity and manual (saved!) code folding, that
 I really want.  So I'm considering DW.

 I've considered downloading it and giving it a shot, but I've done that since
 before it was called Drumbeat and I've never found it appealing, especially
 not at $400.

 So, what makes it so good in you who are using it?  Is it's feature set, or
 stability, or whatever, the selling point for you?

 Thanks for the feedback...

 Rick


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:31
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread Rick Faircloth
My current TortoiseSVN version is 1.4.5... is that compatible with DW?

 -Original Message-
 From: s. isaac dealey [mailto:i...@turnkey.to]
 Sent: Thursday, December 11, 2008 4:18 PM
 To: cf-talk
 Subject: Re: Is Dreamweaver CS4 taking off as an IDE?
 
  So, is it just TortoiseSVN that's not working with DW CS4?
 
 I posted a longer answer to this a minute ago, but the thumbnail
 synopsuis is that DW's SVN support is not current and that support for
 the current format is not backward compatible. So it's not just a
 TortoiseSVN+Dreamweaver thing, it's just a Dreamweaver thing... but
 whether or not it works may depend on your needs. If you aren't
 already using or don't have any need to use a separate and current
 client, then you may never even run into the problem I have.
 
 --
 s. isaac dealey  ^  new epoch
  isn't it time for a change?
  ph: 781.769.0723



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316667
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread Rob Parkhill
yes

On Thu, Dec 11, 2008 at 4:57 PM, Rick Faircloth r...@whitestonemedia.comwrote:

 My current TortoiseSVN version is 1.4.5... is that compatible with DW?

  -Original Message-
  From: s. isaac dealey [mailto:i...@turnkey.to]
  Sent: Thursday, December 11, 2008 4:18 PM
  To: cf-talk
  Subject: Re: Is Dreamweaver CS4 taking off as an IDE?
 
   So, is it just TortoiseSVN that's not working with DW CS4?
 
  I posted a longer answer to this a minute ago, but the thumbnail
  synopsuis is that DW's SVN support is not current and that support for
  the current format is not backward compatible. So it's not just a
  TortoiseSVN+Dreamweaver thing, it's just a Dreamweaver thing... but
  whether or not it works may depend on your needs. If you aren't
  already using or don't have any need to use a separate and current
  client, then you may never even run into the problem I have.
 
  --
  s. isaac dealey  ^  new epoch
   isn't it time for a change?
   ph: 781.769.0723



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316668
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread s. isaac dealey
Ray Camden said: 
 This discussion was on DW, not Spry, but I've got to stand up for it
 here. I find Spry to be -very- nice to use, and pretty powerful. It
 may not be jQuery, but for getting and displaying AJAX-based data on
 page, no framework can beat it for simplicity (especially for folks
 who may not have a lot of JS experience.)

I actually wrote a whole article about how much nicer Spry *could* be,
if the authors (Dreamweaver team I believe) had chosen different design
principals, and why it actually doesn't do a very good job of living up
to its stated intent. Or... well on reviewing my blog I've actually
written several articles on that subject... I didn't realize how much
I'd written about it actually... 

http://ontap.riaforge.org/blog/index.cfm/2008/4/10/Spry-is-Inaptly-Named
http://ontap.riaforge.org/blog/index.cfm/2008/5/11/Learning-Curves

These other two are just about some issues I've run into with it: 

http://ontap.riaforge.org/blog/index.cfm/2008/5/20/Spry-Date-Hints-COLLIDE-With-Dynarch-Calendar-Widget

http://ontap.riaforge.org/blog/index.cfm/2008/6/5/Spry-Phone-Number-Validation

Overall I just find it to be highly coupled with a big learning curve. 


-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 781.769.0723

http://onTap.riaforge.org/blog



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316669
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread Rick Faircloth
Great!  I'm glad I hesitated updating TSVN every time it prompted me to!

 -Original Message-
 From: Rob Parkhill [mailto:robert.parkh...@gmail.com]
 Sent: Thursday, December 11, 2008 5:01 PM
 To: cf-talk
 Subject: Re: Is Dreamweaver CS4 taking off as an IDE?
 
 yes
 
 On Thu, Dec 11, 2008 at 4:57 PM, Rick Faircloth 
 r...@whitestonemedia.comwrote:
 
  My current TortoiseSVN version is 1.4.5... is that compatible with DW?
 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316670
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread Raymond Camden
Interesting. I'm replying on your blog. I can say from my experience
teaching Spry that most folks who aren't too familiar with JS or Ajax
find it quite easy to use. Personally I found Spry a heck of a lot
easier to learn than jQuery. Of course, not every style of development
will work for every developer.


On Thu, Dec 11, 2008 at 4:19 PM, s. isaac dealey i...@turnkey.to wrote:
 Ray Camden said:
 This discussion was on DW, not Spry, but I've got to stand up for it
 here. I find Spry to be -very- nice to use, and pretty powerful. It
 may not be jQuery, but for getting and displaying AJAX-based data on
 page, no framework can beat it for simplicity (especially for folks
 who may not have a lot of JS experience.)

 I actually wrote a whole article about how much nicer Spry *could* be,
 if the authors (Dreamweaver team I believe) had chosen different design
 principals, and why it actually doesn't do a very good job of living up
 to its stated intent. Or... well on reviewing my blog I've actually
 written several articles on that subject... I didn't realize how much
 I'd written about it actually...

 http://ontap.riaforge.org/blog/index.cfm/2008/4/10/Spry-is-Inaptly-Named
 http://ontap.riaforge.org/blog/index.cfm/2008/5/11/Learning-Curves

 These other two are just about some issues I've run into with it:

 http://ontap.riaforge.org/blog/index.cfm/2008/5/20/Spry-Date-Hints-COLLIDE-With-Dynarch-Calendar-Widget

 http://ontap.riaforge.org/blog/index.cfm/2008/6/5/Spry-Phone-Number-Validation

 Overall I just find it to be highly coupled with a big learning curve.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316671
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread s. isaac dealey
 Great!  I'm glad I hesitated updating TSVN every time it prompted me
 to!

Lol... you know you can turn those off, right? :)

-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 781.769.0723

http://onTap.riaforge.org/blog



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316672
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Nested Paired Custom Tags

2008-12-11 Thread Brad Haas
I've got a problem I've never run into before with nested custom tags.  I'm 
using nested paired tags:

cf_parent
   cf_child
   ...some text here
   /cf_child

   cf_child
   ...more text
   /cf_child 
/cf_parent

When I dump #ThisTag# all the AssocAttribs are doubled.  I belive I'm taking 
steps to prevent this but here is some code to look over:

parent.cfm
==

cfset ThisTag.GeneratedContent = 

cfswitch expression=#ThisTag.ExecutionMode#

cfcase value=Start

cfif NOT ThisTag.HasEndTag
cfabort showerror=This tag requires a closing tag
/cfif

/cfcase

cfcase value=End

cfdump var=#ThisTag#

/cfcase
/cfswitch
  
===
child.cfm
===

cfparam name=Attributes.childData default=
cfassociate baseTag=cf_parent

cfset LocalContent = ThisTag.GeneratedContent
cfset ThisTag.GeneratedContent = 

cfswitch expression=#ThisTag.ExecutionMode#

cfcase value=Start

cfif NOT ThisTag.HasEndTag
cfabort showerror=This tag requires a closing tag
/cfif

/cfcase

cfcase value=End


!--- TAKE TEXT BETWEEN THE TAGS AND PUT IT INTO A DIV STORED AS AN ATTRIBUTE 
VARIABLE ---
cfsavecontent variable=Attributes.childData
div
cfoutput
#LocalContent#
/cfoutput
/div
/cfsavecontent


/cfcase
/cfswitch



Any ideas why I'm getting the duplication.

Thanks,
ColdFused


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316673
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Dreamweaver question

2008-12-11 Thread Al Musella, DPM
thanks!

It may have sounded like a stupid question, but that tip will come in 
handy. I never clicked that button before!


At 07:50 PM 12/10/2008, you wrote:
It's the one that says file management when you mouse over it; it's
two arrows next to each other (one pointing up and one pointing down).
It's right next to the browser preview button.

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316674
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Nested Paired Custom Tags

2008-12-11 Thread Dave Watts
 I've got a problem I've never run into before with nested custom tags.  I'm 
 using nested
 paired tags:

 cf_parent
   cf_child
   ...some text here
   /cf_child

   cf_child
   ...more text
   /cf_child
 /cf_parent

 When I dump #ThisTag# all the AssocAttribs are doubled.  I belive I'm taking 
 steps to
 prevent this but here is some code to look over:

I don't think you can do anything to prevent that. For each child tag
executed, you will get an entry in AssocAttribs. If you have an
opening and closing child tag, that's executing twice, and you will
get two entries.

If you know that you're going to get two entries per child, just
disregard every other entry.

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

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316675
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread Rick Faircloth
I wanted to update...it just always asked at the wrong time,
which turned out to be the right time... :o)

 -Original Message-
 From: s. isaac dealey [mailto:i...@turnkey.to]
 Sent: Thursday, December 11, 2008 6:39 PM
 To: cf-talk
 Subject: Re: Is Dreamweaver CS4 taking off as an IDE?
 
  Great!  I'm glad I hesitated updating TSVN every time it prompted me
  to!
 
 Lol... you know you can turn those off, right? :)
 
 --
 s. isaac dealey  ^  new epoch
  isn't it time for a change?
  ph: 781.769.0723
 
 http://onTap.riaforge.org/blog
 
 
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316676
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SmarterStats API

2008-12-11 Thread James Holmes
Is that a different call to the one in their docs?

http://www.smartertools.com/portal/KB/a161/how-to-use-web-services-to-get-viewshitsvisitsbandwidth.aspx

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/



2008/12/12 Jeff Becker jpbec...@yahoo.com:
 Hello everyone,
 I am having trouble with the SmarterStats API and utilizing ColdFusion to 
 gather stats.  I have successfully made the call and am getting the results 
 back.  However, I think because my return of complex type(??), I'm not sure 
 how to interpret/display the results.  Based on the minimal documentation, I 
 was hoping to get back.

 QueryItem   Visits
  id=123  89
  id=124  52
  id=125  5


 The code I have is below.  The cfdumps give back just ugly object of 
 com.smartertools.smarterstats.query.ExecuteQueryResponseExecuteQueryResult 
 OBJECTS.. not very useful.  The attempt below is what I tried in traversing 
 these objects.

 See code below.  Any ideas?



 cfset query=select * from 
 ftopqueriesbypage(1,'2008-09-08T00:00:00','2008-09-09T00:00:00',20,'/viewArticle.cfm')
  order by Visits desc

 cfinvoke
  webservice =http://MYSITE.com:/services/query.asmx?wsdl;
  method =ExecuteQuery
  returnVariable = getinfo 
cfinvokeargument name=authUserName value=USERNAME/
cfinvokeargument name=authPassword value=PASSWORD/
cfinvokeargument name=AuthorizationCode value=WEBSERVICES_AUTH_CODE/
cfinvokeargument name=SiteID value=1/
cfinvokeargument name=query value=#query#/
 /cfinvoke


 !---cfdump var=#getinfo#---

 cfset a = getinfo.get_any()

 !---cfdump var=#a#---

 cfloop index=x from=1 to=#arrayLen(a)#
cfoutput#x# - #a[x].toString()# - - BRBR/cfoutput
 /cfloop

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316677
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Dreamweaver Locking

2008-12-11 Thread James Holmes
Yes, DW's locking scheme is a simple text file named after the locked
file with an extra .LCK extension. It contains the following:

Some Name||some.em...@somewhere.com

That's it; all that's necessary is an FTP based utility that can
get/put the file that's being checked in/out and create or delete the
related .LCK file.

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/



2008/12/12 Sonny Savage sonnysav...@gmail.com:
 It was my impression that Dreamweaver creates an .lck file or something...
 If you were using Eclipse/CFEclipse is seems like you could write an Ant
 script to replicate this behavior.


 On Thu, Dec 11, 2008 at 12:59 PM, Rob Parkhill 
 robert.parkh...@gmail.comwrote:

 well Tortise SVN has a lock and release lock function, however, being the
 only one developing here, I just use it for Version Control.  However you
 could look into it, I am sure that there are docs on it.
 HTH

 Rob

 On Thu, Dec 11, 2008 at 12:51 PM, Casey Dougall 
 ca...@uberwebsitesolutions.com wrote:

  On Thu, Dec 11, 2008 at 12:46 PM, Phillip M. Vector 
  vec...@mostdeadlygame.com wrote:
 
  
   What I'm asking is.. Does anyone know of any program that allows me to
   check in and out files on the server, but not actually use dreamweaver.
  
  
  I don't personally know of anyway to do that except to use Dreamweaver.
 
 
 



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316678
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Need help with Ajax-ColdFusion-Modal Login...

2008-12-11 Thread Rick Faircloth
I just can't seem to get my head around the processing
flow for an ColdFusion and Ajax-based login using a Shadowbox modal window...

Does anyone know of any tutorials that show how to use
ColdFusion, jQuery, and a modal window (doesn't have to be a Shadowbox)
for login?

I found a tutorial by Ray Camden, but Ray's tutorial uses CF's built-in Ajax
functions, and I'm trying to use jQuery...

Uses something like the following pages:

- index.cfm
- login.cfm (opens inside modal window if user not logged in)
- process_login.cfm (uses something like the following code)

cfset mdata = createObject(component,manager_data)
cfset thedata = mdata.getmanagerData(form.email_address, 
form.password)
cfset ojson = createObject(component,cfjson)
cfset results = ojson.encode(thedata)

cfoutput#results#/cfoutput

- manager_data.cfc (runs query to check login info)
- cfjson.cfc

I've been trying to figure out how to do this, but I've been working from
two different tutorials that take different approaches to Ajax usage and I can't
make sense of them together.

Is there anything out there that I could turn to?  I've been all over Google and
elsewhere.  All the examples I've found use PHP!!!

HLLP!  I want to understand Ajax!  I want to be smart! (please :o)

Rick
  
  


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316679
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Need help with Ajax-ColdFusion-Modal Login...

2008-12-11 Thread Yves Arsenault
Hi Rick,
Not sure if you checked the presentations out on Charlie Arehart's site...

Here's a couple of presentations on using jQuery with ColdFusion

http://mmusergroup.adobe.acrobat.com/p27388312/

http://adobechats.adobe.acrobat.com/p26314451/

Hope this helps!

Yves Arsenault

Love is the only force capable of transforming an enemy into a friend.
--Martin Luther King, Jr.


On Thu, Dec 11, 2008 at 9:36 PM, Rick Faircloth r...@whitestonemedia.comwrote:

 I just can't seem to get my head around the processing
 flow for an ColdFusion and Ajax-based login using a Shadowbox modal
 window...

 Does anyone know of any tutorials that show how to use
 ColdFusion, jQuery, and a modal window (doesn't have to be a Shadowbox)
 for login?

 I found a tutorial by Ray Camden, but Ray's tutorial uses CF's built-in
 Ajax
 functions, and I'm trying to use jQuery...

 Uses something like the following pages:

 - index.cfm
 - login.cfm (opens inside modal window if user not logged in)
 - process_login.cfm (uses something like the following code)

cfset mdata = createObject(component,manager_data)
cfset thedata = mdata.getmanagerData(form.email_address,
 form.password)
cfset ojson = createObject(component,cfjson)
cfset results = ojson.encode(thedata)

cfoutput#results#/cfoutput

 - manager_data.cfc (runs query to check login info)
 - cfjson.cfc

 I've been trying to figure out how to do this, but I've been working from
 two different tutorials that take different approaches to Ajax usage and I
 can't
 make sense of them together.

 Is there anything out there that I could turn to?  I've been all over
 Google and
 elsewhere.  All the examples I've found use PHP!!!

 HLLP!  I want to understand Ajax!  I want to be smart! (please :o)

 Rick




 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316680
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Need help with Ajax-ColdFusion-Modal Login...

2008-12-11 Thread Rick Faircloth
Thanks, Yves!  I'll check them out!

Rick

 -Original Message-
 From: Yves Arsenault [mailto:yves.arsena...@gmail.com]
 Sent: Thursday, December 11, 2008 9:10 PM
 To: cf-talk
 Subject: Re: Need help with Ajax-ColdFusion-Modal Login...
 
 Hi Rick,
 Not sure if you checked the presentations out on Charlie Arehart's site...
 
 Here's a couple of presentations on using jQuery with ColdFusion
 
 http://mmusergroup.adobe.acrobat.com/p27388312/
 
 http://adobechats.adobe.acrobat.com/p26314451/
 
 Hope this helps!
 
 Yves Arsenault
 
 Love is the only force capable of transforming an enemy into a friend.
 --Martin Luther King, Jr.
 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316681
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Need help with Ajax-ColdFusion-Modal Login...

2008-12-11 Thread Yves Arsenault
No prob Rick
And... just in case there might be some other stuff that could be helpful...
and there is a ton of presentations on the site...

Charlie's UGTV is here:
http://www.carehart.org/ugtv/index.cfm

I love browsing through them and watching some when I have some time.

I really enjoyed the Hack-Proofing your ColdFusion Powered Sites by Scott
Stroz. lot's of stuff I knew... but I also learned a few things in
there.

I think UGTV is a great resource.

Thanks,

Yves Arsenault

Love is the only force capable of transforming an enemy into a friend.
--Martin Luther King, Jr.


On Thu, Dec 11, 2008 at 10:16 PM, Rick Faircloth
r...@whitestonemedia.comwrote:

 Thanks, Yves!  I'll check them out!

 Rick

  -Original Message-
  From: Yves Arsenault [mailto:yves.arsena...@gmail.com]
  Sent: Thursday, December 11, 2008 9:10 PM
  To: cf-talk
  Subject: Re: Need help with Ajax-ColdFusion-Modal Login...
 
  Hi Rick,
  Not sure if you checked the presentations out on Charlie Arehart's
 site...
 
  Here's a couple of presentations on using jQuery with ColdFusion
 
  http://mmusergroup.adobe.acrobat.com/p27388312/
 
  http://adobechats.adobe.acrobat.com/p26314451/
 
  Hope this helps!
 
  Yves Arsenault
 
  Love is the only force capable of transforming an enemy into a friend.
  --Martin Luther King, Jr.
 



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316682
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Need help with Ajax-ColdFusion-Modal Login...

2008-12-11 Thread Rick Faircloth
Yeah, I missed the Hack-Proofing... presentation.
Charlie does provide some great resources for the community.

 -Original Message-
 From: Yves Arsenault [mailto:yves.arsena...@gmail.com]
 Sent: Thursday, December 11, 2008 9:22 PM
 To: cf-talk
 Subject: Re: Need help with Ajax-ColdFusion-Modal Login...
 
 No prob Rick
 And... just in case there might be some other stuff that could be helpful...
 and there is a ton of presentations on the site...
 
 Charlie's UGTV is here:
 http://www.carehart.org/ugtv/index.cfm
 
 I love browsing through them and watching some when I have some time.
 
 I really enjoyed the Hack-Proofing your ColdFusion Powered Sites by Scott
 Stroz. lot's of stuff I knew... but I also learned a few things in
 there.
 
 I think UGTV is a great resource.
 
 Thanks,
 
 Yves Arsenault
 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316683
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Nested Paired Custom Tags

2008-12-11 Thread Raymond Camden
Remove the cfparam and move the cf_associate to the end portion of
child. Here is my child.cfm:


cfset LocalContent = ThisTag.GeneratedContent
cfset ThisTag.GeneratedContent = 

cfswitch expression=#ThisTag.ExecutionMode#

cfcase value=Start

cfif NOT ThisTag.HasEndTag
   cfabort showerror=This tag requires a closing tag
/cfif

/cfcase

cfcase value=End

cfassociate baseTag=cf_parent


!--- TAKE TEXT BETWEEN THE TAGS AND PUT IT INTO A DIV STORED AS AN
ATTRIBUTE VARIABLE ---
cfsavecontent variable=Attributes.childData
   div
   cfoutput
   #LocalContent#
   /cfoutput
   /div
/cfsavecontent


/cfcase
/cfswitch

On Thu, Dec 11, 2008 at 6:09 PM, Dave Watts dwa...@figleaf.com wrote:
 I've got a problem I've never run into before with nested custom tags.  I'm 
 using nested
 paired tags:

 cf_parent
   cf_child
   ...some text here
   /cf_child

   cf_child
   ...more text
   /cf_child
 /cf_parent

 When I dump #ThisTag# all the AssocAttribs are doubled.  I belive I'm taking 
 steps to
 prevent this but here is some code to look over:

 I don't think you can do anything to prevent that. For each child tag
 executed, you will get an entry in AssocAttribs. If you have an
 opening and closing child tag, that's executing twice, and you will
 get two entries.

 If you know that you're going to get two entries per child, just
 disregard every other entry.

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

 Fig Leaf Software provides the highest caliber vendor-authorized
 instruction at our training centers in Washington DC, Atlanta,
 Chicago, Baltimore, Northern Virginia, or on-site at your location.
 Visit http://training.figleaf.com/ for more information!

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316684
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Nested Paired Custom Tags

2008-12-11 Thread Brad Haas
Thanks Ray. That worked.  The only problem now is I don't understand why.  
Anyone care to fill me in on why this little shuffle around of code prevented 
the double execution.

Thanks again,
ColdFused

Remove the cfparam and move the cf_associate to the end portion of
child. Here is my child.cfm:


cfset LocalContent = ThisTag.GeneratedContent
cfset ThisTag.GeneratedContent = 

cfswitch expression=#ThisTag.ExecutionMode#

cfcase value=Start

cfif NOT ThisTag.HasEndTag
   cfabort showerror=This tag requires a closing tag
/cfif

/cfcase

cfcase value=End

cfassociate baseTag=cf_parent


!--- TAKE TEXT BETWEEN THE TAGS AND PUT IT INTO A DIV STORED AS AN
ATTRIBUTE VARIABLE ---
cfsavecontent variable=Attributes.childData
   div
   cfoutput
   #LocalContent#
   /cfoutput
   /div
/cfsavecontent


/cfcase
/cfswitch

On Thu, Dec 11, 2008 at 6:09 PM, Dave Watts dwa...@figleaf.com wrote:
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316685
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Nested Paired Custom Tags

2008-12-11 Thread Matt Quackenbush
By moving the cfassociate/ inside of the executionMode check, you're only
executing it once.  If you have it outside of that check, it executes on
both executionMode=start and executionMode=end.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316686
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4