HomeSite

2012-10-07 Thread Richard Colman

Hate to bring this up again, but I have used Homesite for many years and 
do like it.

I need to transfer the application to a new computer, and the original 
install disks are long gone.

Does anyone know of a source to obtain or purchase?

TNX,

signed ... the dinosaur ...

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


Coldfusion and @query

2012-10-07 Thread Terry Troxel

I am trying to get my head around some of this CSS3 and @media queries.
Is there a way to incorporate a css media query to say change the template
name in a cfinclude?

I am really liking the Responsive fluid layout scenarios in
Dreamweaver CS6 , but would like to also change page content as well.

Any links, suggestions would be greatly appreciated.
Terry


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


Re: Coldfusion and @query

2012-10-07 Thread Raymond Camden

CSS is executed on the client. cfinclude on the server. So... no.

On Sun, Oct 7, 2012 at 10:40 AM, Terry Troxel terry.tro...@gmail.com wrote:

 I am trying to get my head around some of this CSS3 and @media queries.
 Is there a way to incorporate a css media query to say change the template
 name in a cfinclude?

 I am really liking the Responsive fluid layout scenarios in
 Dreamweaver CS6 , but would like to also change page content as well.

 Any links, suggestions would be greatly appreciated.
 Terry


 

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


Re: Coldfusion and @query

2012-10-07 Thread Terry Troxel

Raymond,
Thank you.
It sure seems like we could use a way to capture the way media query doesw
it so we could use it to our needs in CF.
How about javascript?

Tweet

On Sun, Oct 7, 2012 at 12:00 PM, Raymond Camden raymondcam...@gmail.comwrote:


 CSS is executed on the client. cfinclude on the server. So... no.

 On Sun, Oct 7, 2012 at 10:40 AM, Terry Troxel terry.tro...@gmail.com
 wrote:
 
  I am trying to get my head around some of this CSS3 and @media queries.
  Is there a way to incorporate a css media query to say change the
 template
  name in a cfinclude?
 
  I am really liking the Responsive fluid layout scenarios in
  Dreamweaver CS6 , but would like to also change page content as well.
 
  Any links, suggestions would be greatly appreciated.
  Terry
 
 
 

 

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


Re: Coldfusion and @query

2012-10-07 Thread .jonah

You can get browser width with JavaScript, then add it to a hidden form 
field, URL parameter, or cookie to send it back to the server where you 
can do whatever you want with it.

On 10/7/12 1:30 PM, Terry Troxel wrote:
 Raymond,
 Thank you.
 It sure seems like we could use a way to capture the way media query doesw
 it so we could use it to our needs in CF.
 How about javascript?

 Tweet

 On Sun, Oct 7, 2012 at 12:00 PM, Raymond Camden 
 raymondcam...@gmail.comwrote:

 CSS is executed on the client. cfinclude on the server. So... no.

 On Sun, Oct 7, 2012 at 10:40 AM, Terry Troxel terry.tro...@gmail.com
 wrote:
 I am trying to get my head around some of this CSS3 and @media queries.
 Is there a way to incorporate a css media query to say change the
 template
 name in a cfinclude?

 I am really liking the Responsive fluid layout scenarios in
 Dreamweaver CS6 , but would like to also change page content as well.

 Any links, suggestions would be greatly appreciated.
 Terry




 

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


Re: HomeSite

2012-10-07 Thread Bobby

I believe it was in the CFWACK for version 4.5 or 5. Maybe you have that
book or know someone who does?

On 10/7/12 10:27 AM, Richard Colman col...@uci.edu wrote:


Hate to bring this up again, but I have used Homesite for many years and
do like it.

I need to transfer the application to a new computer, and the original
install disks are long gone.

Does anyone know of a source to obtain or purchase?

TNX,

signed ... the dinosaur ...



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


Re: Coldfusion and @query

2012-10-07 Thread Raymond Camden

Or just do an XHR hit too. :)

On Sun, Oct 7, 2012 at 6:19 PM, .jonah jonah@creori.com wrote:

 You can get browser width with JavaScript, then add it to a hidden form
 field, URL parameter, or cookie to send it back to the server where you
 can do whatever you want with it.

 On 10/7/12 1:30 PM, Terry Troxel wrote:
 Raymond,
 Thank you.
 It sure seems like we could use a way to capture the way media query doesw
 it so we could use it to our needs in CF.
 How about javascript?

 Tweet

 On Sun, Oct 7, 2012 at 12:00 PM, Raymond Camden 
 raymondcam...@gmail.comwrote:

 CSS is executed on the client. cfinclude on the server. So... no.

 On Sun, Oct 7, 2012 at 10:40 AM, Terry Troxel terry.tro...@gmail.com
 wrote:
 I am trying to get my head around some of this CSS3 and @media queries.
 Is there a way to incorporate a css media query to say change the
 template
 name in a cfinclude?

 I am really liking the Responsive fluid layout scenarios in
 Dreamweaver CS6 , but would like to also change page content as well.

 Any links, suggestions would be greatly appreciated.
 Terry






 

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


In-use connections equal max-pool-size and expired max-wait-time.

2012-10-07 Thread Duane Burke

Hello,
We have an application that is connecting to a sql server database by 
initiating pool connections through the app server.  The connections are idle, 
but not being released and causing the following error:

javax.enterprise.resource.resourceadapter|_ThreadID=20;_ThreadName=httpSSLWorkerThread-38120-2;able;In-use
 connections equal max-poo l-size and expired max-wait-time. Cannot allocate 
more connections.;_RequestID=6cc19083-f20a-4501-b3af-3045dddbdc42;|RAR5117 : 
Failed to obtain/create connection from connection pool [ able  ]. Reason : 
In-use connections equal max-pool-size and expired max-wait-time. Cannot 
allocate more connections.|

Does anyone know why this happens and how we can address the issue? 
.


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