RE: Anyone have experience running CyberSource Secure Acceptance

2014-09-30 Thread Sandra Clark

I got it working, thanks  Had to configure a Java Development VM, and get
their sample working.  It wasn't, figured out that problem and then re-wrote
a Security.cfc that basically just calls the Java.  

-Original Message-
From: Russ Michaels [mailto:r...@michaels.me.uk] 
Sent: Thursday, September 25, 2014 4:45 AM
To: cf-talk
Subject: Re: Anyone have experience running CyberSource Secure Acceptance


Have they given you code and an example hash?



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


Anyone have experience running CyberSource Secure Acceptance

2014-09-16 Thread Sandra Clark

 

I'm trying to take a sample that they have written and convert it to
ColdFusion.  I have the Java in the signature code which is creating the
HMAC exactly the same as their JSP code and I'm still getting rejected.  

 

Their technical help is less than stellar and I'm thinking it has less to do
with my hmac signature creation then it has to do with what is in it.   (The
error is that their hmac and my hmac don't match).

 

All the technical guy wants is for me to work in PHP which he is comfortable
in.  However that isn't going to happen since the code this has to work in
is ColdFusion.  



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


RE: Anyone have experience running CyberSource Secure Acceptance

2014-09-16 Thread Sandra Clark

Found that, used it.  Still using the basics of the javas.crypto library.  I
get the hmac issue now.  But getting the system to accept a test sample is
turning my hair gray.

-Original Message-
From: Captain Obvious [mailto:mr.happ...@gmail.com] 
Sent: Tuesday, September 16, 2014 1:58 PM
To: cf-talk
Subject: Re: Anyone have experience running CyberSource Secure Acceptance


http://www.bennadel.com/blog/2412-crypto-cfc-for-hmac-sha1-hmac-sha256-and-h
mac-md5-code-generation-in-coldfusion.htm


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


HMAC Algorithms and Encoding?

2014-09-09 Thread Sandra Clark

I'm working on a Cybersource Authorization form, which has a PHP sample
page.

 

I'm trying to use the hmac() function in CF10.  However, the documentation
on it is lacking to say the least.

Parameters


Parameter

Required\Optional

Description


message

Required

The message to transmit. The message can be a String or a byte array.


key

Required

The secret key to create HMAC. The key can be a String or a byte array.


algorithm

Optional

Algorithm used.


encoding

Optional

Encoding to be used.

 

 

No where can I find the algorithms or encoding options that can be used. The
example itself is of little use.  Anyone have any links, lists etc, where I
can find some?

 

Thanks

 

Sandy Clark

About Web

 

 



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


RE: HMAC Algorithms and Encoding?

2014-09-09 Thread Sandra Clark

Tried that, I am now getting an error telling me that  An error occurred
while generating HMAC.
Error: Algorithm SHA-256 not available.

HASH() documentation  is showing SHA-256
*sigh*

-Original Message-
From: Dean Lawrence [mailto:dean...@gmail.com] 
Sent: Tuesday, September 9, 2014 9:53 AM
To: cf-talk
Subject: Re: HMAC Algorithms and Encoding?


Sandy,

I do believe that you can use any algorithm that the hash function supports.
Take a look at the documentation for hash and you will see what options you
have.




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


RE: HMAC Algorithms and Encoding?

2014-09-09 Thread Sandra Clark

Thanks

I'm trying to encrypt payment information for a group using CyberSource.   
I found documentation on encrypt() that specified using HMAC-SHAx (where x
could be 256).  Got the same error.
http://help.adobe.com/livedocs/coldfusion/8/htmldocs/help.html?content=funct
ions_e-g_01.html.  CF10 documentation for encrypt is not as useful 

Since I don't have time to try every iteration that it could possibly be, I
finally gave up, found Ben Nadel's Crypto library and it worked out of the
box.

But really, Adobe do the documentation correctly.
HMAC 
Creates Hash-based Message Authentication Code for the given string based on
the algorithm and encoding. Hash-based Message Authentication Code (HMAC) is
used to verify the data integrity and authenticity of a message transmitted.
It involves a cryptographic hash function in combination with a secret key.
The cryptographic hash function can be Message Digest 5 (MD5), Secure Hash
Algorithm (SHA), and so on.

See also
SessionInvalidate, Session Rotate.

Example
h2HMAC Test/h2
cfset x=hmac(Hi There,key1,HMACRIPEMD160)
cfoutput#x#/cfoutput

None of this tells me anything. Especially since I can't find any reference
to HMACRIPEMD160 (hoping that would lead me to something) other than that
HMAC documentation or some PDF's that are generated from the Wiki Pages and
the above mentioned CF8 page, which again lists HMAC-SHA256.  
-Original Message-
From: Dean Lawrence [mailto:dean...@gmail.com] 
Sent: Tuesday, September 9, 2014 11:01 AM
To: cf-talk
Subject: Re: HMAC Algorithms and Encoding?


Sandy,

Looking at the example in the HMAC() docs, they prefixed the algorithm type
with HMAC. Maybe if you try HMACSHA-256, to see if it works?

On Tue, Sep 9, 2014 at 10:46 AM, Sandra Clark sclarkli...@gmail.com wrote:


 Tried that, I am now getting an error telling me that  An error 
 occurred while generating HMAC.
 Error: Algorithm SHA-256 not available.

 HASH() documentation  is showing SHA-256
 *sigh*

 -Original Message-
 From: Dean Lawrence [mailto:dean...@gmail.com]
 Sent: Tuesday, September 9, 2014 9:53 AM
 To: cf-talk
 Subject: Re: HMAC Algorithms and Encoding?


 Sandy,

 I do believe that you can use any algorithm that the hash function 
 supports.
 Take a look at the documentation for hash and you will see what 
 options you have.




 



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


RE: HMAC Algorithms and Encoding?

2014-09-09 Thread Sandra Clark

Thanks Pete!  

-Original Message-
From: Pete Freitag [mailto:p...@foundeo.com] 
Sent: Tuesday, September 9, 2014 2:11 PM
To: cf-talk
Subject: Re: HMAC Algorithms and Encoding?


Try HMACSHA256 for the algorithm see http://cfdocs.org/hmac

--
Pete Freitag - Adobe Community Professional http://foundeo.com/ - ColdFusion
Consulting  Products http://hackmycf.com - Is your ColdFusion Server
Secure?
http://www.youtube.com/watch?v=ubESB87vl5U - FuseGuard your CFML in 10
minutes


On Tue, Sep 9, 2014 at 11:22 AM, Sandra Clark sclarkli...@gmail.com wrote:


 Thanks

 I'm trying to encrypt payment information for a group using CyberSource.
 I found documentation on encrypt() that specified using HMAC-SHAx 
 (where x could be 256).  Got the same error.

 http://help.adobe.com/livedocs/coldfusion/8/htmldocs/help.html?content
 =funct ions_e-g_01.html.  CF10 documentation for encrypt is not as 
 useful

 Since I don't have time to try every iteration that it could possibly 
 be, I finally gave up, found Ben Nadel's Crypto library and it worked 
 out of the box.

 But really, Adobe do the documentation correctly.
 HMAC
 Creates Hash-based Message Authentication Code for the given string 
 based on the algorithm and encoding. Hash-based Message Authentication 
 Code (HMAC) is used to verify the data integrity and authenticity of a 
 message transmitted.
 It involves a cryptographic hash function in combination with a secret
key.
 The cryptographic hash function can be Message Digest 5 (MD5), Secure 
 Hash Algorithm (SHA), and so on.

 See also
 SessionInvalidate, Session Rotate.

 Example
 h2HMAC Test/h2
 cfset x=hmac(Hi There,key1,HMACRIPEMD160) 
 cfoutput#x#/cfoutput

 None of this tells me anything. Especially since I can't find any 
 reference to HMACRIPEMD160 (hoping that would lead me to something) 
 other than that HMAC documentation or some PDF's that are generated 
 from the Wiki Pages and the above mentioned CF8 page, which again lists
HMAC-SHA256.
 -Original Message-
 From: Dean Lawrence [mailto:dean...@gmail.com]
 Sent: Tuesday, September 9, 2014 11:01 AM
 To: cf-talk
 Subject: Re: HMAC Algorithms and Encoding?


 Sandy,

 Looking at the example in the HMAC() docs, they prefixed the algorithm 
 type with HMAC. Maybe if you try HMACSHA-256, to see if it works?

 On Tue, Sep 9, 2014 at 10:46 AM, Sandra Clark sclarkli...@gmail.com
 wrote:

 
  Tried that, I am now getting an error telling me that  An error 
  occurred while generating HMAC.
  Error: Algorithm SHA-256 not available.
 
  HASH() documentation  is showing SHA-256
  *sigh*
 
  -Original Message-
  From: Dean Lawrence [mailto:dean...@gmail.com]
  Sent: Tuesday, September 9, 2014 9:53 AM
  To: cf-talk
  Subject: Re: HMAC Algorithms and Encoding?
 
 
  Sandy,
 
  I do believe that you can use any algorithm that the hash function 
  supports.
  Take a look at the documentation for hash and you will see what 
  options you have.
 
 
 
 
 



 



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


RE: CFspreadsheet issue

2012-08-10 Thread Sandra Clark

I'm seeing a missing # sign after Form.Request

-Original Message-
From: Bruce Sorge [mailto:sor...@gmail.com] 
Sent: Friday, August 10, 2012 2:28 PM
To: cf-talk
Subject: CFspreadsheet issue


Hello list,
Long time (years) no post. 

I am trying to read from a spreadsheet that is loaded up onto the server and
then insert the information into the database. I have three column headers
called Code, Barcode and ResortID. Code and Barcode have values and ResortID
is empty. The reason that I did this is because I want to insert the
ResortID from a formfield called ResortID. The problem is that I am getting
the error message:
Columc count doesn't match value count at row 1. Here is my code:

!--- Read the spreadsheet data into a query object --- cfspreadsheet
action=read query=DealsDSN headerrow=1
src=#ExpandPath(Spreadsheets/#ClientFile#)# /

!--- Loop thorugh the query starting with the first row containing data
(row 2) --- cfloop query=MahDSN startrow=2

!--- Insert the code and bar code into the database for future use ---
cfquery datasource=DealsDSN result=foobar
INSERT INTO BarCodes
(Code, BarCode, ResortID)
VALUES
(
cfqueryparam cfsqltype=cf_sql_varchar value=#Code#
cfqueryparam cfsqltype=cf_sql_varchar value=#BarCode#
cfqueryparam cfsqltype=cf_sql_int value=#Form.ResortID
)
/cfquery
/cfloop

The error is on cfqueryparam cfsqltype=cf_sql_int value=#Form.ResortID

Any assistance is greatly appreciated.


Bruce



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


The age old Question. Which framework

2012-07-24 Thread Sandra Clark

So I'm on a new contract and part of the contract requirements is converting
an old fusebox (procedural) app to a newer framework.  I've mostly been
doing Model-Glue in past few years, but because of the XML setup, it doesn't
seem to be an option here.

 

Two of the applications (which are newer) were done in CFWheels and are
currently running on CF7. The new site will be running on CF10.

 

Current developers on the project are not familiar with OO at all (but that
is going to have to change, because the requirements for the project require
OO).  As well the requirement is for an ORM.  I definitely want a dependency
Injector and the ability to create testing modules easily.  Since I have to
get the current developers up to speed on OO I'm not too concerned about
requiring a new framework. 

 

Eventually, the application is going to have to generate a ton of XML and
rely on web services for many of its tasks to allow outside services to
consume its data. 

 

So biggest contenders are:  

 

CFWheels, ColdBox and FW/1.  

 

While I know frameworks are a religious experience to some (I survived the
original fusebox framework wars), I'd love to see opinions (both pro's and
con's) for the frameworks I've mentioned especially in relation to any of
the requirements I've noted above.  

 

What's your experience with the frameworks both from a development and
testing perspective along with actually running them in an enterprise level
environment?

 

 

Thanks for any help you can give me with this.

 

Sandra Clark

 

By the way, anyone going to RiaCon this year?



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


RE: The age old Question. Which framework

2012-07-24 Thread Sandra Clark

Pretty much.  To them, XML equals a fusebox like approach and they want to
get away from FB.  Which is a shame, cause I'm very comfortable with MG

-Original Message-
From: Raymond Camden [mailto:raymondcam...@gmail.com] 
Sent: Tuesday, July 24, 2012 9:13 AM
To: cf-talk
Subject: Re: The age old Question. Which framework


I'll ditto the FW/1 recommendation, but I'm curious about why XML makes
Model-Glue not an option? The powers that be don't like XML?


On Tue, Jul 24, 2012 at 6:53 AM, Sandra Clark sclarkli...@gmail.com wrote:

 So I'm on a new contract and part of the contract requirements is 
 converting an old fusebox (procedural) app to a newer framework.  I've 
 mostly been doing Model-Glue in past few years, but because of the XML 
 setup, it doesn't seem to be an option here.




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


Re: New Coldfusion User Group in the DC Area

2010-09-02 Thread Sandra Clark

You would have to talk to Teratech about that part.  I will say that this is
an Approved Adobe Coldfusion User Group.

On Thu, Sep 2, 2010 at 11:09 AM, george.e...@ssa.gov george.e...@ssa.gov 
george.e...@ssa.gov wrote:


  The Capital Area ColdFusion User Group is now beginning to meet.  Our
  first
  meeting will be Tuesday, September 14th at 6pm.
  ...
  Sandy Clark

 Is this replacing the MDCFUG?


 

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


New Coldfusion User Group in the DC Area

2010-09-01 Thread Sandra Clark

The Capital Area ColdFusion User Group is now beginning to meet.  Our first
meeting will be Tuesday, September 14th at 6pm. It will be a social
gathering, held at Timpanos Italian Grill, 12021 Rockville Pike Rockville MD
20852. View Map of
Locationhttp://www.mapquest.com/maps/map.adp?address=12021%20Rockville%20Pikecity=Rockvillestate=MDzipcode=20852country=UScid=lfmaplink

If you are in the DC Metro area, please come and join your fellow developers
for an evening of networking and fun.

You can get information on the CACFUG at http://www.dc-coldfusion.com/

We look forward to seeing you there.

If you want to present, please let me know at (sclark) at (aboutweb) dot
(com)

Sandy Clark


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


Re: Number of site using ColdFusion

2010-08-25 Thread Sandra Clark

I contract at NIST (National Institute of Standards and Technology) a large
number of programs here are written in ColdFusion. I also know that the
State Dept, National Institutes of Health, Congress and the Senate uses
ColdFusion.

On Wed, Aug 25, 2010 at 2:20 PM, Wil Genovese jugg...@trunkful.com wrote:


 I recently interviewed for a contract job with the Human Development
 Reports division of the United Nations. They are using ColdFusion.  The
 front end is HTML, but they use AJAX to hit ColdFusion servers to populate
 content and data. Government at many levels uses ColdFusion. (Yes, I know,
 citing that Government does it that way is usually not a good thing, but
 ColdFusion makes programers for the Government more efficient.)  I know that
 many colleges and Universities are using ColdFusion.

 A major portion of the Real Estate industry runs on ColdFusion. One of the
 largest MLS search engine providers is 100% ColdFusion. Literally serving up
 millions of requests per day from 4 servers.  Literally thousands of broker
 and agent websites rely on this ColdFusion service for their businesses.

 ColdFusion is easy to learn
 ColdFusion allows you to rapidly build complex applications
 ColdFusion can scale, does scale and has scaled to meet your traffic needs
 ColdFusion allows you to be flexible. Meaning you can have a pure html/ajax
 front end served by ColdFusion, or a Flex front end, or mobile app. All
 powered by the same ColdFusion backend.

 ColdFusion provides your application with Rapid Flexible Power!



 Wil Genovese
 Sr. Web Application Developer/
 Systems Administrator

 Wil Genovese Consulting
 651-894-4238
 wilg...@trunkful.com
 www.trunkful.com

 On Aug 25, 2010, at 12:52 PM, Peter Boughton wrote:

 
  To respond to an IT director who thinks ColdFusion is dated and not in
 much
  use anymore...
 
  Well if he's determined, he'll just return with how many sites run on PHP
 or .NET or whatever.
 
  Numbers don't help for CF - what you need to demonstrate is how active
 and passionate the community is.
 
  A recent post by Terry Ryan might help there:
  http://www.terrenceryan.com/blog/post.cfm/dear-coldfusion-denier
 
  One specific point Terry makes:
  check out the list of ColdFusion conferences.
  A third of them are new conferences and have
  popped up over the past 3 years.
 
 
  He's got another posting linked from that one, which has this Cost of
 Ownership image:
  http://www.terrenceryan.com/blog/assets/content/toc.png
 
  Basically showing that CF requires less training, less dev time and less
 maintenance.
 
 
  I think that sort of thing should be more useful than numbers.
 
 

 

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


Re: cfsharepoint and Sharepoint 2010

2010-05-26 Thread Sandra Clark

Haven't used this, but a quick google brought me this.
http://slidesix.com/view/ColdFusion--SharePoint


On Wed, May 26, 2010 at 2:32 PM, Dawn Sekel dawnt...@yahoo.com wrote:


 Has anyone used the new CF9 cfsharepoint tag?  We are implementing
 SharePoint 2010.  It is the first time our agency has had Sharepoint.  In
 reading the cfsharepoint documentation for CF9 it sounds like it has the
 capabilities to update document lists in Sharepoint 2007.  We need to bulk
 import several thousand PDF documents into our new Sharepoint with metadata
 attached.  We are also a CF shop and all our external websites are CF
 based--so cfsharepoint sounds perfect.  Until I stumbled across this
 command, we were looking at purchasing a SharePoint bulk import tool which
 can be really pricey.  I'm hoping the command will still work with
 SharePoint 2010 and I was wondering if anyone has tried using cfsharepoint
 w/2010 yet.

 Thanks in advance for any advice.
 Dawn Sekel
 E-Mail:   dawn.se...@tcleose.state.tx.us

 

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


HomePortals?

2010-05-18 Thread Sandra Clark

Just ran across this while searching for a Coldfusion Wiki that needs to run
alongside Commonspot.  Anyone heard of it?  Any pros or cons regarding it?

I'm willing to download it, but unfortunately, my time is limited to get
this project done and I don't have a lot of time to play with something and
then have to reject it,

Any and all information would be appreciated.

Also any ideas on a Wiki that will run alongside Commonspot would be helpful
as well.

Sandy


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


Re: choosing a methodology

2010-03-10 Thread Sandra Clark

Documentation for Fusebox 5.1 can be found at :
http://trac.fusebox.org/fusebox/

Its not complete and at this point I don't think anyone has any intention of
working with it.  But it is available.

Fusebox is still good if you are looking to write procedural code and
transition to oo. It works well both ways.  You can also incorporate
Coldspring and/or Transfer. If you are comfortable with OO, then a whole
other slew of confroller frameworks are now available.


On Wed, Mar 10, 2010 at 1:14 PM, LRS Scout lrssc...@gmail.com wrote:


 Fusebox seems to be end of life what with FW/1 and Coldbox really being the
 frameworks to know now.  I'm certainly no FB hater.  I used it for years
 and
 was once an elected advisory board member.

 My personal preference is FW/1.  Lighter and less to learn than Coldbox.
 That being said these are not procedural frameworks and you're going to
 need
 to understand MVC and OO principles.


 -Original Message-
 From: Matthew Smith [mailto:chedders...@gmail.com]
 Sent: Wednesday, March 10, 2010 11:52 AM
 To: cf-talk
 Subject: chossing a methodolgy


 I've been coding CF for around 12 years now.  I've been using fusebox 3
 since it came out and love it.  I can do a site pretty quick with it and
 I'm
 very comfortable there.  So comfortable that I haven't looked any further.
  Not a good thing for growth.

 As I've grown as a developer, my applications have become more comlex, and
 the way some things are done in fusebox 3 feel a bit kludgy to me now.

 So, It's time to try something new.

 I tried fusebox 4 for a few days when it came out, couldn't get the basic
 app to work, and gave up.  I'm willing to give it another go, and noticed
 they are up to 5.5.1 now.  I'm considering investing the time to give it
 another try.

 The documentation link under Learning Fusebox for 5.5 is broken.  Only
 tutorials are for fusebox 4 and earlier.  The book is $40, a bit much I
 think.

 So, before I spend $40 and, even more valuable to me, time, any
 recommendations?  Is fusebox 5.5.1 worth it or should I go to something
 else?

 Thanks.




 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331552
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Local DEV setup, multiple projects/websites

2010-03-02 Thread Sandra Clark

IIS on Vista and Windows 7 does allow for multiple sites.  Just saying.
 Vista runs IIS7. not sure what Win7 runs, I'm not on a Windows 7 machine
here.

On Tue, Mar 2, 2010 at 10:29 AM, Scott Brady dsbr...@gmail.com wrote:


 IIS on XP (and I believe Vista and Win7 that aren't server versions)
 doesn't allow multiple sites.  It only allows for 1 site.  That's why
 our development team runs apache locally.  It's not ideal, since our
 production environments are IIS, but other than mod-rewrite/ISAPI
 rewrite and slightly different Active Directory authentication, it
 works for us.

 Scott





~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331253
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


SOT: New IE8 Cross Scripting vulnerability

2009-11-24 Thread Sandra Clark

Apparently, IE8 has protection that rewrites pages to protect from XSS
attacks and there seems to be an issue with it that can actually introduce
XSS attacks.

 

http://www.theregister.co.uk/2009/11/20/internet_explorer_security_flaw/

 

 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328653
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: More pie chart issues with CFChart

2009-10-20 Thread Sandra Clark

Found the answer.

When using paint paint=Pattern in the xml style sheet, remember to
remove the attribute paintstyle=Plain from cfchartseries .  Apparently,
it supersedes it.

Thanks for the help.

On Fri, Oct 16, 2009 at 9:05 PM, Leigh cfsearch...@yahoo.com wrote:


  pie chart in the example.  Copied the xml into my
  pie.xml on my system, ran
  it and everything is still solid.

 I suspect it might be a problem with your xml.  In a quick test it worked
 fine for me. I made a copy of C:\ColdFusion8\charting\styles\default_pie.xml
 and changed one line:

 - Changed paint paint=Plain/ to paint paint=Pattern/
 - Used the custom style:
 cfset custom = FileRead(ExpandPath(myPattern_pie.xml))
 cfchart style=#custom #/cfchart

 -Leigh





 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327366
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: display wingding character code

2009-10-16 Thread Sandra Clark

This might help.  My google-fu at least might help someone else today, its
not helping me :(

http://superuser.com/questions/14087/get-dingbats-to-appear-in-firefox-3


On Fri, Oct 16, 2009 at 2:04 PM, Richard White rich...@j7is.co.uk wrote:


 yes, unfortunately doesnt work in ff

 thanks

 
 is there no way to place it in a normal string without having the p
 tag?.
 
 
 
 Works in IE8, Chrome, but noe in Firefox.
 
 
 cfoutputp style=font-family: Wingdings;#Chr(252)#/p/cfoutput
 ?

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327280
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


More pie chart issues with CFChart

2009-10-16 Thread Sandra Clark

So today, I was asked to apply patterns to the pie slices in my CFChart.  I
thought it would be no problem, I went into the Web3d Charting program,
added the option paint paint=Pattern and was shown a nicely patterned
pie chart in the example.  Copied the xml into my pie.xml on my system, ran
it and everything is still solid.

This is on a CF8 system with the latest updater installed.  Is this a bug?
 Has anyone successfully been able to apply patterns to pie charts with this
tag?

Sandra Clark


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327284
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Style attribute not workin in CF8 CFChart?

2009-10-01 Thread Sandra Clark

Thanks Ray, I'll try that next time.
Sandy Clark

On Thu, Oct 1, 2009 at 10:16 AM, Raymond Camden rcam...@gmail.com wrote:


 I've used inline styles for charts all the time. I think your problem
 may have been the whitespace. Next time try trimming the string first.

 On Thu, Oct 1, 2009 at 7:58 AM, slli...@shayna.com slli...@shayna.com
 sclarkli...@gmail.com wrote:
 
  Just in case anyone else has this problem in the future and finds this
 via a search, I managed to fix it.
 
  I went ahead and moved the xml stylesheet out of the
 cfsavecontentvariable and into a xml file in the same directory.  I then
 called the xml file via the style attribute.
 
  cfchart style=pie.xml
 
  This solved the issue on my test server.  Why it solved the issue I have
 no idea, but its working now.
 
 
 
 

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326813
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Reading Excel Files with Coldfusion

2009-06-17 Thread Sandra Clark

The dates are counted from Excel's internally stored date of 1/1/1900.

I did it using the following information. Note I used Ben Nadel's
POIUtility.cfc instead of using the POI libraries directly
cfloop from=1 to=#local.excelsheet.maxcolumncount# index=column
cfset local.columnname =
Replace(local.excelsheet.columnnames[column], ,,ALL)
cfif local.columnName is 'DatePaid'
cfset local.earlydate = createDate(1900,1,1)
cfset local.prelimdate =
dateAdd('d',evaluate('column#column#'),local.earlydate)
cfset local.date = dateAdd('d',-2,local.prelimdate)
cfset local.struct[#local.columnname#] =
dateformat(local.date,mm/dd/)
cfelse
cfset local.struct[#local.columnname#] =
evaluate('column#column#')
/cfif
/cfloop

-Original Message-
From: Chad McCue [mailto:c...@advmediaproductions.com] 
Sent: Wednesday, June 17, 2009 8:51 AM
To: cf-talk
Subject: Reading Excel Files with Coldfusion


I am currently using the code below to read in an uploaded excel file.
 
cfset objWorkBook =
CreateObject(java,org.apache.poi.hssf.usermodel.HSSFWorkbook).Init(
   !--- Create the file input stream. ---
CreateObject(java,java.io.FileInputStream).Init(
   !--- Create the file object. ---
   CreateObject(java,java.io.File).Init(
 
#trim(SrcDirectory.SrcF_Directory)#\#UploadedFilename# 
)
   )
) /
 
 
Everything works good except that it is reading date values (7/7/1996)
as a numeric values and outputting some weird long number. How can I get
it to produce 7/71996 in the output instead of a numeric value. 




~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323572
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: (sot) CF and Section 508 compliance a 508 compliant date/time picker

2009-02-21 Thread Sandra Clark

Regarding ARIA.

Aria is not compatible with Section 508 as it stands now.  If you are trying
to comply with Section 508, ARIA will not help.

Having said that, Section 508 is in a refresh, but has not yet been
finalized by the Access Board.  The Section 508 refresh does in fact address
Aria by allowing Javascript that exposes, states, roles and properties to
User Agents.

WCAG 2.0 has the same requirements.  At this time the only javascript
framework that has widgets that are ARIA compliant is Dojo
(dojotoolkit.org).  FireFox supports Aria now as does Opera.  IE 8 will
support ARIA, I still haven't found out about Safari. Most of the major
screen readers (Jaws and Window Eyes) support ARIA in their latest versions.

JQuery does not support ARIA at this time, although I understand that there
are plans to do so in a future release.

-Original Message-
From: Judah McAuley [mailto:ju...@wiredotter.com] 
Sent: Friday, February 20, 2009 11:31 PM
To: cf-talk
Subject: Re: (sot) CF and Section 508 compliance  a 508 compliant date/time
picker


I'd also recommend looking at the ARIA (accessible rich internet
applications) initiative through the W3C:
http://www.w3.org/WAI/PF/aria-practices/

You should also check out actual screen readers as modern screen
readers do interact with javascript to some extent and that should be
taken into account. There is a plugin for Firefox called Fire Vox
(http://www.firevox.clcworld.net/) that I've heard about but haven't
used.

Hope that helps,
Judah

On Fri, Feb 20, 2009 at 4:43 PM, Sandra Clark slli...@shayna.com wrote:

 A good tutorial to start with would be

 http://jimthatcher.com/webcourse1.htm

 Basically, your site has to work with Javascript turned off.  Check things
 by using just the keyboard, I've audited sites with date widgets where
yes,
 the text could be entered manually, but the keyboard hit the date picker
 first and there was no way to tab out of it.


 Sandra Clark
 =
 http://www.shayna.com
 Training and Consulting  in CSS and Accessibility
 Team Fusebox



 -Original Message-
 From: Gerald Guido [mailto:gerald.gu...@gmail.com]
 Sent: Friday, February 20, 2009 1:22 PM
 To: cf-talk
 Subject: (sot) CF and Section 508 compliance  a 508 compliant date/time
 picker


 We just picked up a site that needs to be  508 compliant. I am getting a
 crash course right now. I (or any of us really) never made a site/app that
 needed to be 508 compliant.

 My only concern is the use of JS. It is basically a data entry and
reporting
 app and there is going to be a TON of form fields. We plan to use JS for
 form validation (CFForm and/or other means if need be) and was wondering
if
 using CFForm will be an issue. Yes I know... we shouldn't use CFForm etc..
 but it is uber-crunch time and that is what our code generator spits out.
 Along the lines of validation, will we need server side validation as
well?

 Also.. Does anyone know of any 508 compliant date/time pickers? Those are
 going to be the only JS widgets that may be an issue.

 And lastly, anyone care to pass on any general advice or gotchas and/or
 advice on that to be aware of and/or be careful of etc.

 As always, many TIA.

 G!
 --
 Gerald Guido
 http://www.myinternetisbroken.com


 To invent, you need a good imagination and a pile of junk.
 -- Thomas A. Edison




 



~|
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:319662
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: (sot) CF and Section 508 compliance a 508 compliant date/time picker

2009-02-20 Thread Sandra Clark

A good tutorial to start with would be 

http://jimthatcher.com/webcourse1.htm

Basically, your site has to work with Javascript turned off.  Check things
by using just the keyboard, I've audited sites with date widgets where yes,
the text could be entered manually, but the keyboard hit the date picker
first and there was no way to tab out of it.


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility 
Team Fusebox



-Original Message-
From: Gerald Guido [mailto:gerald.gu...@gmail.com] 
Sent: Friday, February 20, 2009 1:22 PM
To: cf-talk
Subject: (sot) CF and Section 508 compliance  a 508 compliant date/time
picker


We just picked up a site that needs to be  508 compliant. I am getting a
crash course right now. I (or any of us really) never made a site/app that
needed to be 508 compliant.

My only concern is the use of JS. It is basically a data entry and reporting
app and there is going to be a TON of form fields. We plan to use JS for
form validation (CFForm and/or other means if need be) and was wondering if
using CFForm will be an issue. Yes I know... we shouldn't use CFForm etc..
but it is uber-crunch time and that is what our code generator spits out.
Along the lines of validation, will we need server side validation as well?

Also.. Does anyone know of any 508 compliant date/time pickers? Those are
going to be the only JS widgets that may be an issue.

And lastly, anyone care to pass on any general advice or gotchas and/or
advice on that to be aware of and/or be careful of etc.

As always, many TIA.

G!
-- 
Gerald Guido
http://www.myinternetisbroken.com


To invent, you need a good imagination and a pile of junk.
-- Thomas A. Edison




~|
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:319649
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Conferences?

2008-12-15 Thread Sandra Clark
http://corfield.org/blog/index.cfm/do/blog.entry/entry/Conference_Pricing

-Original Message-
From: Steve Keator [mailto:skea...@mlinc.com] 
Sent: Monday, December 15, 2008 11:05 AM
To: cf-talk
Subject: RE: Conferences?

Do you know roughly what pricing for cf.Objective is?  They still have
nothing posted for that.


-Original Message-
From: Massimo Foti [mailto:mass...@massimocorner.com] 
Sent: Monday, December 15, 2008 11:00 AM
To: cf-talk
Subject: Re: Conferences?

 This may be a stupid question, but I'm wondering if anyone out there
can
 give me some info about any other alternative conferences to
CFunited
 and MAX.  The boss is looking for info from us on conferences that we
 would like to attend this coming year.  MAX is out considering the
price
 factor.  CFunited is probably going to be the one that wins but the
boss
 is looking for alternatives.  Anyone got any info they can share?  

http://www.cfobjective.com/

  
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:316773
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: What IDEs are folks using?

2008-12-09 Thread Sandra Clark
I am.  

Aptana, CFEclipse, OxyGen on Ganymede Vista Business

Sandra Clark

-Original Message-
From: Duane Boudreau [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, December 09, 2008 9:39 AM
To: cf-talk
Subject: RE: What IDEs are folks using?

Anyone running Eclipse on vista out there?

-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, December 09, 2008 10:16 AM
To: cf-talk
Subject: RE: What IDEs are folks using?

Eclipse here with Editplus for my quick text editor (and also for regex). 

-Original Message-
From: Neil Ross [mailto:[EMAIL PROTECTED] 
Sent: Monday, December 08, 2008 5:06 PM
To: cf-talk
Subject: What IDEs are folks using?

I'm curious as to what people are using for IDE of choice these days. I'm
sure some folks have moved toward the Eclipse-based IDE but are any of you
using the IBM Rational IDE? 







~|
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:316477
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CSS Question

2008-09-16 Thread Sandra Clark
You can't color individual option tags.  You can however color optgroup
tags


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility 
Team Fusebox






-Original Message-
From: Scott Stewart [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2008 12:30 PM
To: CF-Talk
Subject: Re: CSS Question

this colors the entire option tag

here's the rendered html with a div in place, still no love

select name=hex_id id=hex_id
 option value=#CC selecteddiv style=display: block; 
background-color:#CC; border:medium; border-color:#00; 
width:10px; height:10px;nbsp;/div#CC/option 
 option value=#66CC66 div style=display: block; 
background-color:#66CC66; border:medium; border-color:#00; 
width:10px; height:10px;nbsp;/div#66CC66/option 
 option value=#CC6699 div style=display: block; 
background-color:#CC6699; border:medium; border-color:#00; 
width:10px; height:10px;nbsp;/div#CC6699/option
/select

   
   
 

Weidler, Wilfred C. wrote:
 Put the style attribute in the option tag and get rid of the span.

 Chuck 

 -Original Message-
 From: Scott Stewart [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, September 16, 2008 12:07 PM
 To: CF-Talk
 Subject: CSS Question

 cfoutput query=getHexID
 option value=#hex_id# cfif hex_id eq
 get_category.hex_idselectedcfelse/cfif
 span style=background-color:#hex_id#; border:medium; width:10px;
 height:10px;nbsp;/span#hex_id#
 /option
 /cfoutput

 any reason why the span tag shouldn't produce a small box colored with
 the dynamic hex value

 --
 Scott Stewart
 ColdFusion Developer

 Office of Research Information Systems
 Research amp; Economic Development
 University of North Carolina at Chapel Hill

 Phone:(919)843-2408
 Fax: (919)962-3600
 Email: [EMAIL PROTECTED]





 



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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:312610
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CSS Question

2008-09-16 Thread Sandra Clark
Sorry, I saw color.  Its been a while since I attempted a color in an
option.  I tend to use optgroup for those.  
Mea Culpa


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility 
Team Fusebox




-Original Message-
From: Dave Francis [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2008 12:53 PM
To: CF-Talk
Subject: RE: CSS Question

Hi Sandra, 
First off, let me say that I absolutely accept you as the
authority on CSS, at least on this list. But... This seems to work (in
the drop-downs if no size specified), even on chrome:

form
select name=s 
option style=background-color:greenGreen/option
option style=background-color:redRed/option
/select
/form

-Original Message-
From: Sandra Clark [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2008 12:40 PM
To: CF-Talk
Subject: RE: CSS Question

You can't color individual option tags.  You can however color
optgroup
tags


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility 
Team Fusebox






-Original Message-
From: Scott Stewart [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2008 12:30 PM
To: CF-Talk
Subject: Re: CSS Question

this colors the entire option tag

here's the rendered html with a div in place, still no love

select name=hex_id id=hex_id
 option value=#CC selecteddiv style=display: block; 
background-color:#CC; border:medium; border-color:#00; 
width:10px; height:10px;nbsp;/div#CC/option 
 option value=#66CC66 div style=display: block; 
background-color:#66CC66; border:medium; border-color:#00; 
width:10px; height:10px;nbsp;/div#66CC66/option 
 option value=#CC6699 div style=display: block; 
background-color:#CC6699; border:medium; border-color:#00; 
width:10px; height:10px;nbsp;/div#CC6699/option
/select

 

   
 

Weidler, Wilfred C. wrote:
 Put the style attribute in the option tag and get rid of the span.

 Chuck 

 -Original Message-
 From: Scott Stewart [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, September 16, 2008 12:07 PM
 To: CF-Talk
 Subject: CSS Question

 cfoutput query=getHexID
 option value=#hex_id# cfif hex_id eq
 get_category.hex_idselectedcfelse/cfif
 span style=background-color:#hex_id#; border:medium; width:10px;
 height:10px;nbsp;/span#hex_id#
 /option
 /cfoutput

 any reason why the span tag shouldn't produce a small box colored with
 the dynamic hex value

 --
 Scott Stewart
 ColdFusion Developer

 Office of Research Information Systems
 Research amp; Economic Development
 University of North Carolina at Chapel Hill

 Phone:(919)843-2408
 Fax: (919)962-3600
 Email: [EMAIL PROTECTED]





 







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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:312619
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: SQL injection attack on House of Fusion

2008-08-21 Thread Sandra Clark
Funny,

I went to high school with him.  Had a comp sci class with him where he
spent quite a bit of time trying to get passwords from unsuspecting people.

-Original Message-
From: Mike Kear [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 20, 2008 6:33 PM
To: CF-Talk
Subject: Re: SQL injection attack on House of Fusion

A while ago I read a totally rivetting book called The Art Of
Intrusion  by Kevin D Mitnick, the legendary hacker who was sent to
jail for his intrusion exploits.He runs a security company now,
that tests you security and reports back on how well you've done.



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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:311383
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CFC Best Practices

2008-08-19 Thread Sandra Clark
Actually if you are using  MSSQL 2000 or 2005 or up, you should be using

VALUES(); 
SELECT  SCOPE_IDENTITY() AS id

-Original Message-
From: Craig Dudley [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 19, 2008 11:45 AM
To: CF-Talk
Subject: RE: CFC Best Practices

Rob, if you are using MSSQL why don't you use @@IDENTITY?

e.g. this crappy example...

cfquery name=insertLocation datasource=#mydsn#
INSERT INTO tblLocations (
address1, address2, address3, town
)
VALUES (
cfqueryparam cfsqltype=CF_SQL_VARCHAR value=#trim(form.address1)#,
cfqueryparam cfsqltype=CF_SQL_VARCHAR value=#trim(form.address2)#,
cfqueryparam cfsqltype=CF_SQL_VARCHAR value=#trim(form.address3)#,
cfqueryparam cfsqltype=CF_SQL_VARCHAR value=#trim(form.town)#,

)
SELECT @@IDENTITY AS locationID
/cfquery

#insertLocation.locationID# is then your last inserted item. (assuming
tblLocations has an identity column that is)

Cheers,

Craig.


-Original Message-
From: RobG [mailto:[EMAIL PROTECTED] 
Sent: 19 August 2008 16:26
To: CF-Talk
Subject: Re: CFC Best Practices

James Holmes wrote:
 You can generally avoid the problem with a cftransaction tag if you're
 doing the MAX(id) thing, but the other solutions are better
 (especially the new CF8 goodies which, for example, are a life saver
 for Oracle).

I've tried using the result.identitycol trick with CF8 and MSSQL and for 
me, it doesn't work.  I just get an error.

So what I've stuck to is this...

Before the first insert, I do cfset now = Now()

Then in the insert, for my date_added value, I use #now#.

Then after that, when I do my select MAX(id), I also add where 
date_added = '#now#'

AND I also wrap the whole thing in a cftransaction...

Rob





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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:311268
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Last chance to sign up for Hands On CSS Class

2008-08-07 Thread Sandra Clark
4 DAY HANDS ON CSS CLASS

August 18-21st, 2008, Fairfax Virginia. Cost $1,399 per person.

Do you want to learn about CSS?  

Are you someone who is just getting started with CSS who is finding it
incredibly frustrating?  Or someone who has used it for a while, but still
can't get positioning and floating behaviors to do what you want?

I can help you.  This 4 day class is given from a programmers perspective
rather than a designer.  Its meant to let you understand why things happen
the way they do rather than simply Oooh, see how pretty I can make it.  

Learn the 9 rules of Floats, the differences in the positioning models.  How
using inline display types is different than floats.  Learn about typography
and cross browser issues.

I do not give this class very often publicly.  Chances are if you miss this
class I will not be giving it for at least a year.

If you are interested in this class, email me.

A copy of the syllabus is located at: 
http://www.shayna.com/index.cfm?fuseaction=training.syllabus_displayid=1

I accept paypal, corporate checks and money orders/cashiers checks.


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility 
Team Fusebox








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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:310345
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: how to access the query

2008-08-04 Thread Sandra Clark
You are using getUsers for your query results.  In order to use it in your
view, you need to add it to the event structure (which corresponds to the
attributes structure in the display)

Instead of

cfset getUsers = myFusebox.do( action=usermanager.qryUsers) /

Do

cfset qry_getUsers = getUsers.qryUsers()
cfset event.setValue(qry_getUsers, qry_getUsers)

Then in your display.  Reference it with attributes.qry_getUsers  Since you
are creating the component getusers in your controller, you shouldn't be
trying to call it as a fuseaction, simply reference it as an object itself.


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility 
Team Fusebox






-Original Message-
From: Eclectic User [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 04, 2008 2:31 PM
To: CF-Talk
Subject: Re: how to access the query

I am trying to cfdump the values on a page that's supposed to display the
users in the system and that file is dspUsres.cfm inside users/view/display
but it says qryUsers is not available. Thanks for any help you provide in
advance.
Eclectic,

You might get a better response posting this to a fusebox forum.  I haven't
used fusebox in years, but I'll take a stab.

You said,  Now I am trying to display the results of qryUsers but qryUsers
is not available there. I am creating an object but I don't know how to use
it to access the results of the query. Please guide me.

When you said there, where do you mean?  Also, how are you trying to
display the 'results' of qryUsers?  You said you are creating an object,
but
don't know how to use it.  If you can provide more code showing what you
are
doing, that would be helpful.

Again, I'm not sure - I'm just guessing because no one has responded yet,
and  I hate it when that happens to me. ;-)  I hope someone on here who is
more familiar with current fusebox can respond.

Dave

I am new to cfc's and I am having trouble in accessing query results in
fusebox 5.5.
I have app.cfc in users/controller and the code in it is following:

cfcomponent output=false
cffunction name=dspUsers
  cfargument name=myFusebox /
  cfargument name=event /
  cfset getUsers = CreateObject (component,users.model.usermanager) /
  cfset getUsers = myFusebox.do( action=usermanager.qryUsers) /
  cfset myFusebox.do( action=display.dspUsers, contentvariable=body )
/
/cffunction
/cfcomponent

and I have usermanager.cfc in the users/model :

cfcomponent output=false hint=manage users

cffunction name=init returntype=usermanager access=public
output=false
   cfargument name=dsn type=string required=yes /
   cfargument name=dbUser type=string required=yes /
   cfargument name=dbPass type=string required=yes /
   cfset variables.dsn = arguments.dsn /
   cfset variables.dbUser = arguments.dbUser /
   cfset variables.dbPass = arguments.dbPass /
   cfreturn this /
/cffunction

cffunction name=qryUsers returntype=Query access=public
output=false
   cfset var qryUsers = 
   cfquery name=qryUsers datasource=pumas
   SELECT  persons.person_id,
   persons.person_firstname,
   persons.Person_lastname,
   persons.person_membership_type,
   users.user_email,
   users.created_on,
   emails.email_confirmed_on
   FROMpersons INNER JOIN 
   users ON persons.person_id = users.person_id
LEFT OUTER JOIN
   emails ON persons.person_id = emails.person_id  
   ORDER BY persons.person_firstname, persons.person_lastname
   /cfquery
   cfreturn qryUsers
/cffunction

/cfcomponent

Now I am trying to display the results of qryUsers but qryUsers is not
available there. I am creating an object but I don't know how to use it to
access the results of the query. Please guide me. 



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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:310164
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Hands on CSS Class Date Change Announcement

2008-07-31 Thread Sandra Clark
The Hands On CSS class has had a date change.  The class will now take place
Mon-Thurs August 18-21st in FairFax Virginia.

Seats are still available.  Cost for the class is $1,399 per person for the
4 days.  I accept paypal, corporate checks and money orders/cashiers checks.


A copy of the syllabus is located at: 
http://www.shayna.com/index.cfm?fuseaction=training.syllabus_displayid=1

Feel free to email me with questions or to register for the class.


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility 
Team Fusebox





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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:310008
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Hands on CSS class August 25-28

2008-07-18 Thread Sandra Clark
As some of you know I teach a hands on CSS class occasionally.  I am pleased
to announce that I have just finalized arrangements to teach a 4 day class
August 25-28 at George Mason University in Fairfax, VA.  The class currently
has 7 seats open and they will be filled on a first come/first served basis.


The class price is $1,399 per person.  I accept paypal and corporate checks.



You can see a copy of the class syllabus at: 
http://www.shayna.com/index.cfm?fuseaction=training.syllabus_displayid=1

Feel free to email me with questions or to register for the class.






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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309265
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Hands on CSS class August 25-28

2008-07-18 Thread Sandra Clark
That's correct.  

-Original Message-
From: Dawson, Michael [mailto:[EMAIL PROTECTED] 
Sent: Friday, July 18, 2008 9:45 AM
To: CF-Talk
Subject: RE: Hands on CSS class August 25-28

I would assume a guaranteed bank check would be just as good.

m!ke 

-Original Message-
From: Phillip M. Vector [mailto:[EMAIL PROTECTED] 
Sent: Friday, July 18, 2008 8:44 AM
To: CF-Talk
Subject: Re: Hands on CSS class August 25-28

Just curious.. What about those who want to take your class who don't
work for a corporation and don't want to sign up with PayPal due to
getting burned from them before?



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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309274
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CFGrid 508

2008-05-14 Thread Sandra Clark
Its not.  There are no wai-roles present which means that while it
definitely isn't 508 compliant now because of the javascript and inability
to use it without a mouse, that even with the 508 refresh that is coming up,
it still isn't compatible.

The only grid that I know that will be compatible with the refresh as it
stands now is the dojo grid.  When JQuery actually implements Jaria in its
core, it might be.

Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility 
Team Fusebox



-Original Message-
From: Phi Dinh [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 14, 2008 8:52 AM
To: CF-Talk
Subject: CFGrid  508

Anyone know if CFGrid in CF8 is 508 compliant or not?

-Phi



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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:305225
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Frameworks

2008-04-12 Thread Sandra Clark
You could look at Dojo, which is a WAI-ARIA compliant (Accessible Rich
Internet Application) DHTML framework.

Frameworks mean many different things in the CF world.  We have CF
Frameworks, then there are Ajax Frameworks, Flex Frameworks.  

-Original Message-
From: s. isaac dealey [mailto:[EMAIL PROTECTED] 
Sent: Saturday, April 12, 2008 7:22 PM
To: CF-Talk
Subject: Re: Frameworks

Hi Jenny, 

The onTap framework (in my sig) has a lot of syntactic sugar built in,
so you can build things like dhtml tabsets that are section 508
(accessibility) compliant without any real knowledge of javascript. Most
(all?) other dhtml tabsets you find out there, like the ones in Spry
would require some work to make them sec508 compliant (if it's even
possible). 

Syntax for a tabset looks something like this: 

cf_html
tap:tabset name=tab
tap:tab
tap:labelstuff/tap:label

stuff tab content
/tap:tab

tap:tab
tap:labelmore stuff/tap:label

more stuff content
/tap:tab
/tap:tabset
/cf_html

If I remember correctly I had also made it possible to load tab content
asynchronously. I know I recently added a tap:div element similar to
the cfdiv feature in ColdFusion 8 that lets you load content into the
div asynchronously using links in the div content. 

Of course with any framework there's gonna be a learning curve. :) 

hth

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

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;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303238
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: many JS libraries are out there, which one for CF8 is the question.

2008-03-20 Thread Sandra Clark
If accessibility is at all an issue for you, only two libraries implement
the ARIA spec right now that I am aware of:

Dojo and Google-axsjax are the only ones that I have been able to find.
There used to be a plugin for Jquery (JARIA) and while I understand that the
plugin will be incorporated into JQUERY at some point, it isn't yet (so far
as I can determine).


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility 
Team Fusebox




-Original Message-
From: Ali [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 19, 2008 10:50 PM
To: CF-Talk
Subject: many JS libraries are out there, which one for CF8 is the question.

Hi: I decided to use a JS library/framework to enhance the UI of my sites. I
googled a lot and found out that there are many of them. I make a short list
here:(thanks to google and wikipedia)

Google Web Toolkit, AJILE, Backbase, CssQuery, Dojo, Toolkit, mootools, Ext,
JQuery, MochiKit, Moo.fx, OpenLink AJAX Toolkit, Prototype,   Qooxdoo,
Rialto Toolkit, Rico, script.aculo.us, SmilScript, Spry framework, Yahoo! UI
Library

These where what I found. I believe there are some more out there that I
couldn't find. My question is: Which one will help me as a beginner in using
such libraries/frameworks plus has a future plus has good compatibility with
Coldfusion. I know that CF8 has some EXT 1.0 integrations and YUI and I
heard a lot about Jquery. But I really appreciate it if you write you
opinions about each of the libraies I listed. What I really need is a
simple, light and powerful one that gives me better client-side effects and
form options(for example validation).
Thanks
Ali




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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:301652
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 to add 4 hours to a variable and compare to Now()

2008-03-06 Thread Sandra Clark
Only use dateformat() for display.   Don't use it in conjunction with
DateAdd() or DateCompare().  DateFormat turns the date from a date to a
formatted string.

-Original Message-
From: Joy Holman [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 06, 2008 3:09 PM
To: CF-Talk
Subject: Re: Need to add 4 hours to a variable and compare to Now()

Thanks for your responses.
I've actually been working with the Date and Time functions in CF.
I can't seem to get any code to work that adds 4 hours to the variable.

For instance:
1.)CFIF
IsDefined(application.startFacTime) AND (

DateCompare(DateFormat(application.startFacTime),DateFormat(now())) is 0 AND
DateCompare(Hour(application.startFacTimeMin),Hour(now())) is -1 

This works to compare the variable to Now, but that doesn't do any good.

I need something like this pseudo-code:

DateCompare(Hour(application.startFacTimeMin)+4 hours,Hour(now())) is -1



2.) This works but, like above, it doesn't do me any good:
CFIF
DateCompare(application.startFacTime,DateFormat(now())) is 0 AND 
   #Abs(DateDiff('h', application.startFacTime, Dateformat(now(# lt 1
/cfif

I need something like this pseudo-code:
#Abs(DateDiff('h', application.startFacTime + 4 hours, Dateformat(now(#
lt 1

Thanks for your help.





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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:300670
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CF and Accessible PDF generation

2008-02-06 Thread Sandra Clark
Right now any dynamic document generation for PDF will not support the
tagged format (which is necessary to make accessible).  

I've talked to Adobe til I'm blue in the face.  Maybe some others saying the
same thing will help.

Historically, Macromedia used 3rd party libraries to create PDF's via
CFDocument and the report generator.  Since Adobe bought Macromedia, they
can use their libraries and the tagged PDF format in CF, but they haven't
done the work to change out the libraries.  It would be a huge boon,
especially to government clients (who are not happy when I tell them that
dynamically generated PDF's cannot be made accessible).


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility 
Team Fusebox




-Original Message-
From: R Knutson [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 05, 2008 6:58 PM
To: CF-Talk
Subject: Re: CF and Accessible PDF generation

Are there any good resource that discuss the hows and whys of making PDF 
documents created by ColdFusion features such as cfdocument... and 
cfreport... to be as accessible as possible.  How one sets the 
language meta data, how one creates 'taged' pdf files, ect.

I guess you did not an answer on this.  It seems pretty silly of Adobe to
give us a great tag but leave it crippled.  These days, there is simply no
excuse for inaccessible web pages, pdfs, or docs.

 -- remaining flex-free until it is accessible too 



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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298310
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Fusedocs 3.0 Specification Working Group

2008-01-04 Thread Sandra Clark
As promised, I'm starting up a working group to discuss and come up with the
Fusedoc 3.0 specification.  This is long overdue and hopefully will address
issues with Fusedocs that have come up in the past.

The Fusedoc specification that is currently available was created around the
time of Fusebox 3.0 and ColdFusion 5.  It does not take into consideration
any of the more advanced data types such as objects.  

The group is hosted at http://groups.google.com/group/fusedocs3

Goals of this group include:

Creation of a DTD or Schema Representation of Fusedocs Version 3.0
Documentation of both the Representation and Usage.
Possibility of Tool creation for Fusedocs within other Editors, specifically
Eclipse.

Articles and Tutorials on Fusedocs would also be welcome.

Please note that this group is not for help with the existing Fusedocs,
rather it is a working group to create both a new specification and the
tools needed to work with it.

Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility 
Team Fusebox








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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295815
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CSS menu looks great on its own - looks jacked up on site

2007-09-02 Thread Sandra Clark
They don't have a doctype on their site which is throwing it into quirks
mode.  You are using an xHTML 1.0 transitional which, at least on Firefox,
is having the browser use standards rendering.


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox

-Original Message-
From: Will Tomlinson [mailto:[EMAIL PROTECTED] 
Sent: Sunday, September 02, 2007 7:19 AM
To: CF-Talk
Subject: OT: CSS menu looks great on its own - looks jacked up on site

This isn't really cf-related, but I was hired to build a dropdown menu for
an e-comm site. The menu looks/work fantastic on its own page, but is really
screwed on their staging server. 

Now, their code is incredibly sloppy. There's not even a doctype. I still
figured I could make it look right nonetheless.

Here it is on MY server (Beautiful):
http://capublish.com/menutest.cfm

Here's on the staging server (Way jacked up):

http://audition.commercev3.com/

Don't anybody spend much time. I just thought somebody could steer me in the
right direction since I've banged my head against the wall too long on this.
I'm wonderin if it's just the fact that the code is so sloppy on the staging
server. 

Thanks,
Will
 



~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287631
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Sandra Clark
Couple of things that will help in Debugging a Fusebox 4+ app.

1) Validate the XML in circuit.xml.cfm.  Fusebox will burp on bad XML.

If an error shows up in the parsed file.  (circuit.fuseaction.cfm) then the
error is in the circuit.

Most well done FB4+ apps usually use MVC.  The controller will act as your
traffic cop.  Noting which parsed file is throwing the error, will enable
you to quickly move to the controller circuit and fuseaction.

In fusebox.xml.cfm  make sure that in the parameters section that
parameter name=debug value=true /.  This will turn on some debugging
in your parsed files so that you can go down to where the error is and find
out which circuit file and lines are throwing the actual error.  Make sure
to turn this off once you go into production.

Always develop in parameter name=mode value=development  / (for
Fusebox 4) and parameter name=mode value=development-full-load / (for
Fusebox 5+)

Once you go into production  parameter name=mode value=production / if
you need to change something in your circuits, delete all parsed files, and
call your page with 
http://yourwebsite/index.cfm?fusebox.load=truefusebox.password=  (you set
your password in the parameters section of fusebox.xml.cfm using parameter
name=password value=/.


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox


-Original Message-
From: Mike Kear [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 25, 2007 8:29 AM
To: CF-Talk
Subject: Fusebox - is there a trick to following the flow?

I have inherited a fusebox4.0 app to maintain that has dozens of
circuits that are reused all over the place.  I know that's how
fusebox is supposed to work, and it makes sense to reuse the fuses,
but wow it takes AGES to follow the flow of the program.   And i end
up with dozens of files open, all called circuit.xml.cfm so its easy
to make a mistake following it all along.

For example I have to figure out how something works, so i can
maintain it, or build something else similar.  In order to find out
how the task works, i follow one xml file through, seeing dozens of
fuses, all of which i have to go to, open the circuits.xml.cfm
relating to it, follow that one along, then open more.  By the time
i've got to the final, actual coldfusoin type tags relating to the
functionality, i've almost forgotten what it was i started out to do.

Is there a shortcut to working out how everything's bolted together?
If i keep taking hours to work out the simplest things i'm not going
to last long on this assignment.

-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month



~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:284547
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Sandra Clark
Development mode forces a reload of the circuit files, parsed files and the
fusebox with each call.  Production mode will only reload the parsed files
if they aren't there and it won't pick up changes in the circuit files
either.  The problem is that forcing the recall from production mode to pick
up the changes requires the url variables I mentioned.

Use development mode now, change to production mode once you are ready to
deploy to the production server.  Development modes are not thread safe.


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox


-Original Message-
From: Mike Kear [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 25, 2007 10:56 AM
To: CF-Talk
Subject: Re: Fusebox - is there a trick to following the flow?

Sandra,  thank you!That looks extremely helpful.

What does parameter name=mode value=development  / do?   Does it
force a reload of the XML files every page view?  If so, that's what
i've been looking for for days now!

And yes, this app seems pretty well written by the previous guy.  IT
reuses code a LOT.  It is built on MVC archtecture everywhere.

But it's big though.In the main folder there are 29,547 files to
come to grips with!

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month



On 7/26/07, Sandra Clark [EMAIL PROTECTED] wrote:
 Couple of things that will help in Debugging a Fusebox 4+ app.

 1) Validate the XML in circuit.xml.cfm.  Fusebox will burp on bad XML.

 If an error shows up in the parsed file.  (circuit.fuseaction.cfm) then
the
 error is in the circuit.

 Most well done FB4+ apps usually use MVC.  The controller will act as your
 traffic cop.  Noting which parsed file is throwing the error, will enable
 you to quickly move to the controller circuit and fuseaction.

 In fusebox.xml.cfm  make sure that in the parameters section that
 parameter name=debug value=true /.  This will turn on some debugging
 in your parsed files so that you can go down to where the error is and
find
 out which circuit file and lines are throwing the actual error.  Make sure
 to turn this off once you go into production.

 Always develop in parameter name=mode value=development  / (for
 Fusebox 4) and parameter name=mode value=development-full-load /
(for
 Fusebox 5+)

 Once you go into production  parameter name=mode value=production /
if
 you need to change something in your circuits, delete all parsed files,
and
 call your page with
 http://yourwebsite/index.cfm?fusebox.load=truefusebox.password=  (you set
 your password in the parameters section of fusebox.xml.cfm using
parameter
 name=password value=/.


 Sandra Clark
 =
 http://www.shayna.com
 Training and Consulting  in CSS and Accessibility
 Team Fusebox


 -Original Message-
 From: Mike Kear [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, July 25, 2007 8:29 AM
 To: CF-Talk
 Subject: Fusebox - is there a trick to following the flow?

 I have inherited a fusebox4.0 app to maintain that has dozens of
 circuits that are reused all over the place.  I know that's how
 fusebox is supposed to work, and it makes sense to reuse the fuses,
 but wow it takes AGES to follow the flow of the program.   And i end
 up with dozens of files open, all called circuit.xml.cfm so its easy
 to make a mistake following it all along.

 For example I have to figure out how something works, so i can
 maintain it, or build something else similar.  In order to find out
 how the task works, i follow one xml file through, seeing dozens of
 fuses, all of which i have to go to, open the circuits.xml.cfm
 relating to it, follow that one along, then open more.  By the time
 i've got to the final, actual coldfusoin type tags relating to the
 functionality, i've almost forgotten what it was i started out to do.

 Is there a shortcut to working out how everything's bolted together?
 If i keep taking hours to work out the simplest things i'm not going
 to last long on this assignment.

 --
 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Adobe Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month



 



~|
ColdFusion 8 beta - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:284560
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CSS Refresh Crash in Firefox??

2007-07-25 Thread Sandra Clark
I don't know why its crashing, but simplify your life Paul.  Use inheritance
and the cascade to create a more efficient CSS.  That way when you start
trying to figure out where the problems are, it will be a heck of a lot
easier.

..chanpod :link,
..chanpod :visited{
display: block;
background-color: #454545;
width: 580px;
height: 121px;
font-size: 11px; 
font-family: Verdana,Lucida-Sans;
font-weight:normal; 
color:#FF;
padding:0px 0px 0px 0px;
margin-bottom: 5px;
text-decoration:none;
text-align:left;
}
..chanpod :link:hover,
..chanpod :visited:hover{
background-color: #989898;
}

Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox

-Original Message-
From: Paul Henderson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 25, 2007 4:36 PM
To: CF-Talk
Subject: RE: CSS Refresh Crash in Firefox??

Its basically one div pod that is crashing, as in the txt style doesn't
apply and the div ends up appearing 3 times and one of the 3 is out of
place. I didn't post the code originally because I was hoping it was a
common bug, guess not.

Here is the css:

...chanpod a
{
display: block;
background-color: #454545;
width: 580px;
height: 121px;
font-size: 11px; 
font-family: Verdana,Lucida-Sans;
font-weight:normal; 
color:#FF;
padding:0px 0px 0px 0px;
margin-bottom: 5px;
text-decoration:none;
text-align:left;
}

...chanpod a:hover
{
display: block;
background-color: #989898;
width: 580px;
height: 121px;
font-size: 11px; 
font-family: Verdana,Lucida-Sans;
font-weight:normal; 
color:#FF;
padding:0px 0px 0px 0px;
margin-bottom: 5px;
text-decoration:none;
text-align:left;
}

And the actual HTML:

div class=chanpod
a href=divtest2.cfm
h1Header/h1
img src=images/img.gif width=580 height=97 border=0
alt=//a/div

I'm trying to pull off a basic roll over affect so if the user rolls over
the graphic or header the header (background-color) will change.

Thanks in advance for any input.


-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 25, 2007 4:22 PM
To: CF-Talk
Subject: RE: CSS Refresh Crash in Firefox??

Can you be a little more clear as to what you mean by CSS crash?

Are you saying that the CSS doesn't work? Doesn't load? Do you have a site
we could look at?


andy 

-Original Message-
From: Paul Henderson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 25, 2007 1:35 PM
To: CF-Talk
Subject: CSS Refresh Crash in Firefox??

This isn't exactly a cf issue but its happening on a .cfm page so plase bare
with me. For some reason my css seems to partially crash, randomly on SOME
refreshes in Firefox only.. On avg 8 out of 10 times the code will load
fine. Is this a known Firefox bug? I'm a bit of a css rookie but I've tried
about 5 different approaches to the code and the same random refresh crash
happens. Any ideas?

 

Thank you,

-Paul

 









~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:284580
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CSS difference between IE and FF

2007-07-09 Thread Sandra Clark
That's called collapsing vertical margins.  

When two vertical margins overlap, standards compliant browsers will
collapse them into the larger of the two margins.

Imagine 2 boxes with margin-top of 20px and margin-bottom of 20px.  With
vertical collapsing, the margin in between the first and second box will be:
20px. Not the 40px you might have thought it should be.  

It's a gotcha in the standard that not a lot of people know about.  But it's
the standard (vertical works a lot differently than horizontal)


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox


-Original Message-
From: Victor Moore [mailto:[EMAIL PROTECTED] 
Sent: Monday, July 09, 2007 3:57 PM
To: CF-Talk
Subject: Re: CSS difference between IE and FF

Thank you both for your answers.

I kind of fix it. It had a div above my header. IE was displaying the header
nicely after the first one, but FF was overlapping it, even though I was
setting a 20px top margin.

I will have to read more on this to better understand it, but by taking the
first div out the header with the image looks the same in both IE and FF.

Thanks again
Victor




~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:283315
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: AJAX Libraries

2007-06-10 Thread Sandra Clark
Just and FYI, DoJo has MAJOR accessibility features built in and is designed to 
work with the ARIA (Accessibile Rich Internet Applications) standard

http://www.w3.org/WAI/intro/aria
http://developer.mozilla.org/en/docs/ARIA:_Accessible_Rich_Internet_Applications

Firefox 2 is mostly ARIA compliant.  Firefox 3 will be entirely ARIA compliant. 
 

Jaws 7 is partially ARIA compliant.  


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox

-Original Message-
From: Dinner [mailto:[EMAIL PROTECTED] 
Sent: Sunday, June 10, 2007 3:28 PM
To: CF-Talk
Subject: Re: AJAX Libraries

On 6/10/07 Neil (RX) wrote:
 What's wrong with your keyboard?  Seems to have poste in nonsense street
 mode

(-:

Whoops!  It's the latest language for FCKEditor... musta left it on... amazing
how it integrates with gmail, neh?

Translated, the gist is that dojo has some built-in stuff for handling a
couple of the more troublesome aspects of AJAX; the back button,
bookmarks, and, I know they can all do this, but: you can design so
that the super-dooper web 2.0 app works with javascript turned off
too.

Heck, it's all just JS, but I've had good cross-browser results with dojo,
and the tag-based option makes it freakishly easy for even non js, non
cf, all-I-know-is-html types to pick up and whip out great stuff with.

Obviously a fan-boi, but I've wanked with quite a bit of them and I'm
just enamored with dojo, it's AOP, and the breadth of things covered.

All optionally included, lazy loaded, etc., etc., etc.. just great stuff.
(There is some crazy development happening, too. Amazing things!)

Freakishly cool, especially as you start doing AOP, RIA, etc..
WOO-Dr.Who!

Not un-biased, but not un-experienced either, so- eh- there it is.

D and d, sitting in a tree, K I S S i n g!

-ps if you're curious, get dojo, and take a look in the tests/ directory.
Tons of great stuff.  I'm sad most the old demos are missing from
the new dojo site... it's silly... not for me, but for noobs, fer sure...



~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:280591
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Alt tag

2007-06-01 Thread Sandra Clark
To get a little pedantic,  the alt attribute is not meant to be a tooltip
(although IE treats it that way.  Its supposed to provide an alternate
description of the graphic for assistive technology to read when a non
sighted person can't see the actual graphic.

IE renders alt text as a tooltip.  Firefox does not.  Its not something you
have control over.


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox


-Original Message-
From: Pete [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 01, 2007 7:45 PM
To: CF-Talk
Subject: Alt tag

Hi there

 

I'm trying to get an Alt tag to appear with the main image but having no
luck?  Any suggestions where I need to place the Alt text etc?

 

img onmouseover=imgMain.src='photos/large/#rsGetDetails.pic1#';
src=photos/thumbs/#rsGetDetails.pic1# class=border name=thumbnail1
border=0 width=50 height=50 alt=#rsGetDetails.pic1_alttext# /

 

Basically I have a number of thumbnails where a person can scroll over - I
would just like to place an Alt tag with the main image as well.

 

The site can be viewed at
http://dev.cleverminds.com.au/cosmeticbeautydirectory

 

 

Thanks in advance.

 

P






~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:279890
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Fusebox 5 install problem - help, please

2007-05-18 Thread Sandra Clark
Make sure your Fusebox_application_path in index.cfm points to the skeleton
path.
cfset FUSEBOX_APPLICATION_PATH = skeleton/  
If I am reading your email message correctly.

Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox


-Original Message-
From: Stephen Hait [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 18, 2007 5:07 PM
To: CF-Talk
Subject: OT: Fusebox 5 install problem - help, please

Sorry if this is off-topic.

I wanted to install and try Fusebox 5. On my development system I've
got a virtual directory configured named cf2 using IE6 running CFMX. I
downloaded the FB 5.1 core files, extracted them from the archive and
copied the fusebox5 directory to the root of the cf2 directory. Then I
downloaded the FB5 skeleton app files, extracted them from the archive
and copied the skeleton directory also to the root of the cf2
directory as per the readme.txt files (I think).

I have both index.html and index.cfm files in the root of the cf2
directory and I can open both successfully in a browser at
http://cf2/index.html and http://cf2/index.cfm.

If I try to open http://cf2/skeleton/ I get an error: missing
fusebox.xml The file fusebox.xml could not be found in the
directory /ralj/cf2/skeleton/.

Any idea what I'm doing wrong or how to get this working?

Thanks in advance for any ideas.
Stephen



~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278653
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Fusebox Help

2007-05-15 Thread Sandra Clark
Jordan,

For Fusebox 4, as a precaution, when you move a site to production, make
sure you change the mode to Production and remove all Parsed files before
running them.  When in production mode, certain items are not checked and
parsed files are run as is.

Do not run a production environment in development mode. It is not thread
safe and you will run into problems.




Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox


-Original Message-
From: Jordan Michaels [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 15, 2007 5:40 PM
To: CF-Talk
Subject: Re: Fusebox Help

Just to follow up on this, I think Qasim's suggestion was right on the 
mark. I updated that Fusebox setting, cleared all the parsed files, and 
started surfing the site again. The random errors we were getting no 
longer appear present, and I'm crossing my fingers hoping they don't return.

Thanks Qasim!

Warm regards,
Jordan Michaels
Vivio Technologies
http://www.viviotech.net/
BlueDragon Alliance Member
[EMAIL PROTECTED]


Jordan Michaels wrote:
 Hello Qasim,
 
 Thank you for this. I'm learning a lot about Fusebox as I work on this 
 project. =)
 
 The fusebox.xml.cfm has the mode set to Development. I will try to do my 
 research on what effect this has on the application as a while, but any 
 additional pointers you could provide would be greatly appreciated!
 
 Thank you for this!
 
 Warm regards,
 Jordan Michaels
 Vivio Technologies
 http://www.viviotech.net/
 BlueDragon Alliance Member
 [EMAIL PROTECTED]
 
 
 Qasim Rasheed wrote:
 Jordan,

 The autogenerated files should be in the parsed directory under your
 application root. This is where fusebox keeps generated files after it
has
 gone through the compile process.  If your site in development mode (i.e.
 mode parameter in fusebox.xml.cfm file?

 Thanks

 Qasim

 On 5/14/07, Jordan Michaels [EMAIL PROTECTED] wrote:
 There we go. Fusebox 4. Thanks Josh.

 I completely agree with your comments as well. I'm not trying to imply
 anything about the stability of fusebox, but since neither I, or anyone
 in my shop has spent any large amounts of time working with Fusebox. I
 guess I was just wondering if anyone had seen this kind of behavior
 before.

 My (limited?) understanding of fusebox suggests that there are some
 pages which are interpreted, then written to the file system. I'm
 wondering if these seemingly random errors have anything to do with that
 process. Like perhaps wherever the problem lies is in the process that
 creates these files? Perhaps this process is not able to finish, or is
 finishing incorrectly each time the page is hit... and that results in
 the random code errors?

 That is where my thoughts are taking me at the moment anyway...

 Any insights anyone has would be immensely appreciated. ;)

 Warm regards,
 Jordan Michaels
 Vivio Technologies
 http://www.viviotech.net/
 BlueDragon Alliance Member
 [EMAIL PROTECTED]


 Josh Nathanson wrote:
 Has anyone seen this kind of behavior in a Fusebox site before? Any
 suggestions on where I should start looking for a problem cause? Since
 the errors appear to be random (go to page, click a link, get random
 error - go to page, click same link, get different random error) I'm
 not
 sure where to even begin.
 Jordan - the best way to at least figure out the version is to look for
 index.cfm in the root, open that file and see which core file it's
 calling
 (assuming they're using index.cfm as the main template).

 Fusebox in itself is not inherently buggy, but like any other
framework,
 poor coding will lead to poor results.

 -- Josh




 
 



~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278236
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Which version of vista plays well with CF7?

2007-03-28 Thread Sandra Clark
Vista Business is running well with it.  The installation is a pain, since
the installer doesn't play well with Vista.  But I did get it running.

My experiences, blogged 

Vista and Configurations
http://www.shayna.com/index.cfm?fuseaction=blog.display_entryid=168

RDS in Eclipse on Vista
http://www.shayna.com/index.cfm?fuseaction=blog.display_entryid=169



Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox

-Original Message-
From: Will Tomlinson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 28, 2007 9:59 AM
To: CF-Talk
Subject: Which version of vista plays well with CF7?

THat's my question..

Thanks,
Will



~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:273975
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Which version of vista plays well with CF7?

2007-03-28 Thread Sandra Clark
Benefit from my experience.  But it does run and you probably won't take as
long getting it running as I did.  I'm actually enjoying Vista (heresy I
know) and don't have any reason to going back to XP.

My VMPlayer problems actually are better.  The VMPlayer takes about 5-8
minutes to load the first time on a fresh reboot.  Once there, it comes up
very fast and works much faster than with XP.

FYI.  2GB RAM seems to be the agreed upon sweetspot for Vista.


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox


-Original Message-
From: Will Tomlinson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 28, 2007 10:40 AM
To: CF-Talk
Subject: Re: Which version of vista plays well with CF7?

Vista Business is running well with it.  The installation is a pain, since
the installer doesn't play well with Vista.  But I did get it running.

After reading that, my thoughts are yucko!! 

I'm buying a new dell desktop and trying to figure out which version to get.


Thanks for the great info sandy. 

Will



~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:273978
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CSS Firefox vs. IE Question...

2007-03-20 Thread Sandra Clark
Your style sheet looks fine.  Make sure your Doctype triggers standards
based rendering across browsers.  HTML 4.01 Strict or xHTML 1.0 strict are
the ones that will render standards based rendering across browsers.  IE (6
and 7) both have issues so you will need to send CSS specifically to those.

http://www.shayna.com/index.cfm?fuseaction=blog.display_entryid=163


Use IE Conditional Statements after your regular CSS Calls to create
stylesheets that overwrite rules specifically for IE6 and/or IE7.


http://www.shayna.com/index.cfm?fuseaction=blog.display_entryid=131
http://www.shayna.com/index.cfm?fuseaction=blog.display_entryid=89


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox

-Original Message-
From: Che Vilnonis [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 20, 2007 5:41 AM
To: CF-Talk
Subject: OT: CSS Firefox vs. IE Question...

I am developing a site that displays fine in Firefox but not in IE. I am new
to CSS and I could use some insight as to what my problem might be. The link
and the style sheet are below. Thanks!

http://www.buickpartspage.com/


/* CSS Document */
body  {
background:url(images/header_px.jpg) left top repeat-x #F3F3EB;
color:#A39F90;
padding:0px 0px 0px 0px; 
margin:0px 0px 0px 0px; 
}

a {
color:#A37D21;
text-decoration:underline;
}
a:hover {
color:#A37D21;
text-decoration:none
}
...pagetitle {
padding:14px 0px 15px 25px;
margin:0px 0px 0px 0px;
}
p {
padding:0px 0px 0px 0px;
margin:0px 0px 0px 0px;
}
html { 
font-size:11px; 
font-family:tahoma, arial; 
} 
...normal { 
font-size:1.01em; 
font-family:tahoma, arial; 
} 
...big { 
font-size:1.31em; 
font-family:tahoma, arial; 
}
...small { 
font-size:0.91em; 
font-family:tahoma, arial; 
}
h1 { 
font-family:arial, tahoma, times new roman; 
color:#FF;
font-size:3.01em;
font-weight:normal;
line-height:1.01em;
padding:0px 0px 0px 0px;
margin:0px 0px 0px 0px; 
}
h2 { 
color:#A37D21;
font-size:1.01em;
text-transform:uppercase;
padding:0px 0px 0px 0px;
margin:0px 0px 0px 0px;
} 
h3 { 
color:#A37D21;
font-size:1.01em; 
text-transform:uppercase;
padding:0px 0px 0px 0px;
margin:0px 0px 0px 0px;
}  
...content_txt h2 a {
color:#A37D21;
text-decoration:none;
}
...content_txt h2 a:hover {
color:#A37D21;
text-decoration:none;
}
...h2 { 
font-size:1.01em;
line-height:1.01em;
color:#303030;
text-transform:none; 
padding:0px 0px 0px 15px;
margin:0px 0px 0px 0px;
}

...header {
width:766px;
height:249px;
vertical-align:top;
background:url(images/header.jpg) left bottom no-repeat;
}
...table1 {
width:766px;
display:table;
}
...table_row1 {
width:766px;
height:100%;
display:table-row;
}

...left1 {
width:388px;
height:100%;
vertical-align:top;
display:table-cell;
text-align:left;
}
...co_name {
vertical-align:top;
padding:15px 10px 15px 10px;
}
...co_name a {
color:#FF;
text-decoration:none;
}
...co_name a:hover {
color:#FF;
text-decoration:none;
}
...slogan {
vertical-align:top;
padding:0px 0px 0px 2px;
color:#BEBEBE;
}

...right1 {
width:378px;
height:100%;
vertical-align:top;
display:table-cell;
text-align:left;
}
#topnav {
vertical-align:top;
padding:30px 10px 15px 10px;
}
#topnav a {
color:#FF;
text-decoration:none;
}
#topnav a:hover {
color:#FF;
text-decoration:underline;
}

...cent #search {
vertical-align:top;
padding:10px 0px 0px 0px;
margin:0px 0px 0px 0px;
color:#A37D21;
}
...cent #search strong {
color:#A37D21;
text-transform:uppercase; 
}
...cent #search input {
font-size:11px; 
color:#303030;
font-family:Tahoma, arial, verdana, courier;
width:144px;
height:17px;
border:inset 1px #D4D0C8;
padding:0px 0px 0px 0px;
margin:0px 7px 0px 9px;
vertical-align:middle;
}
...cent #search .input {
width:55px;
height:17px;
border:none;
padding:0px 0px 0px 0px;
margin:0px 0px 0px 0px;
vertical-align:middle;
}

...table {
width:766px;
display:table;
}
...table_row {
width:766px;
height:100%;
display:table-row;
}
...left {
width:192px;
height:100%;
vertical-align:top;
display:table-cell;
text-align:left;
}
...cent {
width:375px;
height:100%;
vertical

RE: CSS Firefox vs. IE Question...

2007-03-20 Thread Sandra Clark
So long as the id is only used once in an HTML source, its fine.

This

#topnav {
vertical-align:top;
padding:30px 10px 15px 10px;
}
#topnav a {
color:#FF;
text-decoration:none;
}
#topnav a:hover {
color:#FF;
text-decoration:underline;
}


Simply refers to the element with the id=topnav and any anchors within
that particular element.

You can reference it as much as you want in the CSS, just not in the HTML


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox


-Original Message-
From: Kris Jones [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 20, 2007 7:33 AM
To: CF-Talk
Subject: Re: CSS Firefox vs. IE Question...

I think what Dana means is that ID selectors like:
#topnav

should only be called once per page. Otherwise you should use a class
selector instead.

Cheers,
Kris

On 3/20/07, Che Vilnonis [EMAIL PROTECTED] wrote:
 Dana... What does that mean?

 -Original Message-

 one side note: you have multiple id's referencing the same identifier
which
 technically makes it a class instead.

 Off the top of my head it looks like a box model issue with sizing, but I
 didn't have time to scrounge through the css atm. :)




~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:273217
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: OT: Virus protection

2007-03-16 Thread Sandra Clark
I use Avast Home Edition.  Free

http://www.avast.com


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox


-Original Message-
From: Greg Luce [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 16, 2007 9:56 AM
To: CF-Talk
Subject: Re: OT: Virus protection

I just upgraded from 7.1 to 7.5 free version yesterday. It says I'm up to
date now. They tried to funnel you towards the 7.5 pay version, but there
was a link below for the new free version.

Greg

On 3/16/07, Will Tomlinson [EMAIL PROTECTED] wrote:

 Since AVG isn't free anymore, what do you guys use for virus protection?
 And don't say Vista! lol!!  :)

 Will

 



~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272813
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CSS help?

2007-03-16 Thread Sandra Clark
Make sure you are using a DocType that renders standards based across
browsers.  HTML 4.01 Strict or xHTML 1.0 Strict.  Validate against those 

Validate your code using the HTML Validator http://validator.w3.org/  IE is
notorious for allowing bad code.

Remember that both Div and P are block level elements with margins.  Each
browser contains its own stylesheet that you overwrite.  Each stylesheet is
not consistent with the other.  Best thing to do to make things standard
across browsers is to 0 out all margins and padding first.

html * {margin:0; padding:0};  For IE6, which doesn't understand the
universal selector, you will need to create a comma delimited list of all
block level elements.


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox


-Original Message-
From: Josh Nathanson [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 16, 2007 2:54 PM
To: CF-Talk
Subject: OT: CSS help?

Hey all,

I'm having an issue where I can't get rid of space above a div in Firefox. 
It's like the top margin is about 15 pixels.  I tried setting margin and 
padding to 0px, no dice.  It appears exactly as I would expect in IE, with 
the div right below the preceding text.

Basically the code is like this:
pHeader textbr
div class=myclassDiv text/div
/p

On FF, there is about 15 pixel gap between Header text and Div Text --  
on IE there is just the normal line space gap that would be expected.

I tried taking out the br, no change.  I searched Google and didn't find 
anything that helped me.

I know there are some CSS gurus on this list so I'm hoping this is a known 
issue with a workaround, or someone can help.

-- Josh





~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272871
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: OT: CSS help?

2007-03-16 Thread Sandra Clark
Frankly I'd rather do.
div id=thisbox
h2Header Text/h2
pOther Text/p
/div

Styling #thisbox h2 {} or #thisbox p{}.

Structural HTML makes things a lot easier.


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox

-Original Message-
From: Casey Dougall [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 16, 2007 3:33 PM
To: CF-Talk
Subject: Re: OT: CSS help?

p style=margin:0px;Header text
div class=myclassDiv text/div
/p

On 3/16/07, Josh Nathanson [EMAIL PROTECTED] wrote:

 Hey all,

 I'm having an issue where I can't get rid of space above a div in Firefox.
 It's like the top margin is about 15 pixels.  I tried setting margin and
 padding to 0px, no dice.  It appears exactly as I would expect in IE, with
 the div right below the preceding text.

 Basically the code is like this:
 pHeader textbr
 div class=myclassDiv text/div
 /p

 On FF, there is about 15 pixel gap between Header text and Div Text --
 on IE there is just the normal line space gap that would be expected.

 I tried taking out the br, no change.  I searched Google and didn't find
 anything that helped me.

 I know there are some CSS gurus on this list so I'm hoping this is a known
 issue with a workaround, or someone can help.

 -- Josh



 



~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272888
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: SQL - slightly OT

2007-03-10 Thread Sandra Clark
If I understand you correctly
select *
from tbl_meddelregos m, tbl_mdconfregoptions r
where 
m.confregoptionid = r.confregoptionid and
(
m.confregoptionid = 1 or 
m.confregoptionid = 6 or
) AND
cocktailparty  0
order by 
lastname



Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox


-Original Message-
From: Pete [mailto:[EMAIL PROTECTED] 
Sent: Saturday, March 10, 2007 7:02 PM
To: CF-Talk
Subject: SQL - slightly OT

I have some SQL which I am trying to get working

Basically here is what I have:

select *
from tbl_meddelregos m, tbl_mdconfregoptions r
where m.confregoptionid = r.confregoptionid and
m.confregoptionid = 1 or
m.confregoptionid = 6 or
cocktailparty  0
order by lastname

I keep on getting duplicate records in the output.

Basically what I am trying to get

I am joining 2 tables based on the confregoptionid (so as to get the code to
display for the registration option).

I then want to display all records which are m.confregoptionid = 1 (standard
registration), m.confregoptionid = 6 (early bird registration) and then
those records where a person has paid to attend the cocktail part (as it
wasn't included automatically in the registration fee paid.

Thanks in advance for replies.

P





~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272293
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: IE6 IE7?

2007-03-09 Thread Sandra Clark
VMplayer. Create a VM with IE6 in it. http://www.vmware.com


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 09, 2007 12:31 PM
To: CF-Talk
Subject: IE6  IE7?

Does anyone know if there is a way to have IE6 and IE7 installed on the same
machine or a utility that emmulates previous browsers?

I have a site that runs great in IE7, FF, Avant, and Opera (Still have to
validate NS), however in IE 6 there is a CSS issue.

Thanks!





~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272192
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Small change to CFEclipse behaviour...

2007-03-01 Thread Sandra Clark
The biggest problem I see by changing the files would be that each update
re-writes those files (cfml7.xml).  Which means that you would have to apply
the files to each update.

I think I would rely on snippets for these myself.


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox


-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 01, 2007 12:18 PM
To: CF-Talk
Subject: RE: Small change to CFEclipse behaviour...

Sure...but the functionality is already there with a keystroke. Just trying
to see if I can add on to it.

Good idea though. I might resort to that if I can't do it by changing the
files. 

-Original Message-
From: Lori Stone [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 01, 2007 11:01 AM
To: CF-Talk
Subject: RE: Small change to CFEclipse behaviour...

You could create a snippet with a keycommand.

~~~
Lori Stone
Web Developer
RAFFA
Embracing Your Vision
202.955.6533
http://www.raffa.com
http://www.iknow.org 
 

-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 01, 2007 11:53 AM
To: CF-Talk
Subject: Small change to CFEclipse behaviour...

I'm wondering if it's possible for me to make a small change to a
built-in
behaviour in CFEclipse. I've got a keycommand for dropping in a cfdump
tag.
That works beautifully. But whenever I drop in a cfdump I almost ALWAYS
follow it with a cfabort. Is there something I can change somewhere in
my
eclipse directory to add this in? I tried locating it, but it seems like
I'd
have to get into the JAR file.
 
Anyone know if this is possible? It's not a huge deal, but thought it
would
be nice if I could make this change.
 

 
Andy Matthews
Senior Coldfusion Developer

Office:  877.707.5467 x747
Direct:  615.627.9747
Fax:  615.467.6249
[EMAIL PROTECTED]
www.dealerskins.com http://www.dealerskins.com/ 
 








~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2. 
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:271144
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Need CSS help with overlapping.

2007-02-27 Thread Sandra Clark
Use an ie conditional to set ie specific css.  In this case for IE6, since
it demonstrates the behavior you want in IE7.

http://www.shayna.com/index.cfm?fuseaction=blog.display_entryid=131

In this case, you want to (at the bottom of the head section) place a call
to 
!--[if lt IE 7]
 link rel=stylesheet type=text/css
href=assets/css/ie.css /
![endif]--

Within this ie6.css, start playing with a negative margin-top: on the div to
pull it up.


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox

-Original Message-
From: Will Tomlinson [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 27, 2007 12:34 PM
To: CF-Talk
Subject: Need CSS help with overlapping. 

How can I get the tabs to overlap the banner in IE? It's fine in FF. I know
there are some vertical alignment issues but I wanted to get this part right
first. 

I tried a few things with no luck. 

Here's the page:  http://wtomlinson.com/cap/index.cfm

The tabs were created in css tab design 2.0. pretty nifty program. 

Thanks,
Will



~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:270835
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Need CSS help with overlapping.

2007-02-27 Thread Sandra Clark
Looks great Will.

You are right, I am proud of you!


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox


-Original Message-
From: Will Tomlinson [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 27, 2007 1:08 PM
To: CF-Talk
Subject: Re: Need CSS help with overlapping. 

Sandy, I think you'd be proud. What I did was setup a new div, absolute
positioned it so it'd be in the right spot. Then stuck the tabs in it. Seems
to look ok here in IE and FF.

http://wtomlinson.com/cap/

Whatcha think?

Will



~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:270851
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Having difficulty with cffile on IIS7 and Vista

2007-02-22 Thread Sandra Clark
Thanks Richard,

I figured that out late last night.  I haven't had to write code for a
cffile in years so I forgot that and in the blur of upgrading to Vista and
IIS7 with a more manual install of ColdFusion, I of course, decided to blame
the configuration rather than my code!


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox

-Original Message-
From: Richard Cooper [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 22, 2007 7:48 AM
To: CF-Talk
Subject: Re: Having difficulty with cffile on IIS7 and Vista

Your specifying the form field value where you should be putting the form
field
i.e.
filefield=fileuploadfiled
not 
filefield=#FORM.fileuploadfiled#





~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:270434
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Having difficulty with cffile on IIS7 and Vista

2007-02-21 Thread Sandra Clark
Trying to upload a file through an HTML form.  When I hit the cffile
action=upload, I get an error telling me that 

The form field
C:\CFusionMX7\runtime\servers\coldfusion\SERVER-INF\temp\wwwroot-tmp\neotmp
1155.tmp did not contain a file.

I checked the directory and sure enough the file does not exist.  I know
that IIS has to stick the file there and that cffile doesn't actually
upload the file. So I guess my question is how do I configure IIS 7 to
upload the files to a specific directory?


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox




~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:270347
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Running Homesite under Vista - WAS RE: Taking the Vista Plunge

2007-02-19 Thread Sandra Clark
I have it running.  What version are you trying?  I was successful with 5.5


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox


-Original Message-
From: Kym Kovan [mailto:[EMAIL PROTECTED] 
Sent: Monday, February 19, 2007 4:34 AM
To: CF-Talk
Subject: Re: Taking the Vista Plunge

Christopher Jordan wrote:
 This really doesn't sound like a ColdFusion discussion anymore. Perhaps 
 those involved could take it to a non-CF list, or off-list, or to CFOT 
 or something.
   

So getting back on topic: I can't get Homesite to run under Vista. 
panic! Anyone else had this problem?


A Homesite lover,

Kym K



~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:270086
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Best CSS book for beginners

2007-02-19 Thread Sandra Clark
I'd recommend Head First HTML with CSS and xHTML 
http://www.oreilly.com/catalog/hfhtmlcss/






Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox


-Original Message-
From: Doug Brown [mailto:[EMAIL PROTECTED] 
Sent: Monday, February 19, 2007 7:39 AM
To: CF-Talk
Subject: OT: Best CSS book for beginners

Sandra, if you are out there in cyberspace today, could you tell me what the
very best book would be for learning css? I have the lynda.com tutorials on
video, but not very good as far as I am concerned. I am more of a book
learner.




Doug B.



~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:270088
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Taking the Vista Plunge

2007-02-16 Thread Sandra Clark
I'm running it (it took a long time to get it running)..  FYI, SQL Server
2000, isn't supported, the only version supported right now is Sql Server
2005 Express SP1.

It is possible to get CF running, but its not easy or intuitive.

Here are some URL's that helped me.
http://michael.omnicypher.com/2006/10/cfmx-setup-on-vista.html
http://www.mattwoodward.com/blog/index.cfm?commentID=211

CF runs fine, it's the installer that has issues.  (plus setting up the IIS
stuff after the install requires that you start the administrator manually
the first time).  If you get an error on the javaw.exe when running it,
reboot your computer, then run the compatibility wizard (according to
michael's guide) and choose to run it in Administrator mode. I was able to
run it in Win XP SP2 compatibility mode, but did choose to run it in 256
colors.

Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox

-Original Message-
From: Rick Root [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 16, 2007 3:07 PM
To: CF-Talk
Subject: Re: Taking the Vista Plunge

I'm pretty sure those will all run just fine on Vista Home Basic.

If you don't want Aero Glass, and you don't need the media center features,
Vista Home Basic should do just fine - or Vista Business.  Gotta get Home
Premium or Ultimate if you want Aero Glass and/or media center
functionality.

Assuming CF7 runs on Vista at all =)  Has anyone tested it?

Rick




~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:270018
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Taking the Vista Plunge

2007-02-16 Thread Sandra Clark
I got the business version, but it was with a new computer anyways (it was
time) and it was the same price as getting the computer with Windows XP Pro.
So no brainer.  Its been an interesting couple of days getting it installed
and figuring things out, but now that I've got everything installed, its not
horrible.  

I made the mistake last time of getting my last laptop with Windows 2000, so
when I was ready to take the plunge I had to buy Windows XP.  I decided not
to make that mistake again. Even if I wasn't totally ready to go Vista this
early, I would more than likely be moving to it in the next 1 1/2 years.


Sandra Clark
=
http://www.shayna.com
Training and Consulting  in CSS and Accessibility
Team Fusebox

-Original Message-
From: Claude Schneegans [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 16, 2007 6:51 PM
To: CF-Talk
Subject: Re: Taking the Vista Plunge

 I think the point was that in order to get IIS with Vista, you have to
go to the Business, Enterprise or Ultimate version.

Exact, but what developer would only get the home version anyway ?

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.




~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:270034
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Strict Validation

2007-02-13 Thread Sandra Clark
http://shayna.com/index.cfm?fuseaction=blog.display_entryid=153 


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: So Kenfused [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 13, 2007 9:49 AM
To: CF-Talk
Subject: Re: Strict Validation

I was playing with this the other day and while validating I got a message
that stated the target attribute of an Anchor tag is no longer supported.
If I provide a link to another site I usually use a 
target=_blank so they can follow the link while not leaving my site.   
Any suggestions on how to do this while keeping with the Strict standards.
I hate having to put in unnecessary JavaScript.



Doug Brown wrote:
 I would like to validate my apps as xhtml strict, but what is the best way
to deal with the  anf ? in the url? Would I actually need to use
urlEncode() or would I be able to simply do a find and replace #63 for ?
and #38 for  Thoughts?

 Doug B.

 



~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269639
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Strict Validation

2007-02-10 Thread Sandra Clark
 can be replaced by amp;
You don't need to escape ? Just ampersands.

 You can get a listing (one of many, but the first one that popped up on my
google search) at
http://www.htmlgoodies.com/beyond/reference/article.php/3472611 


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Doug Brown [mailto:[EMAIL PROTECTED] 
Sent: Saturday, February 10, 2007 2:03 PM
To: CF-Talk
Subject: Strict Validation

I would like to validate my apps as xhtml strict, but what is the best way
to deal with the  anf ? in the url? Would I actually need to use
urlEncode() or would I be able to simply do a find and replace #63 for ?
and #38 for  Thoughts?

Doug B.



~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269418
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Strict Validation

2007-02-10 Thread Sandra Clark
Its fine, I use all of those in FB xml apps all the time.  All xHTML is is
HTML in an xml format, so all the cgi query items (with the exception of the
ampersand) are fine.

a href=http://www.shayna.com/index.cfm?type=id1amp;item2=3; / is
perfectly valid.  The only thing that needs to be escaped is the ampersand
since it is used to escape other characters. nbsp;, etc. 


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Doug Brown [mailto:[EMAIL PROTECTED] 
Sent: Saturday, February 10, 2007 3:56 PM
To: CF-Talk
Subject: Re: Strict Validation

what about =



Doug B.


- Original Message -
From: Sandra Clark [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Saturday, February 10, 2007 12:47 PM
Subject: RE: Strict Validation


  can be replaced by amp;
 You don't need to escape ? Just ampersands.

  You can get a listing (one of many, but the first one that popped up on
my
 google search) at
 http://www.htmlgoodies.com/beyond/reference/article.php/3472611


 Sandra Clark
 ==
 http://www.shayna.com
 Training in Cascading Style Sheets and Accessibility


 -Original Message-
 From: Doug Brown [mailto:[EMAIL PROTECTED]
 Sent: Saturday, February 10, 2007 2:03 PM
 To: CF-Talk
 Subject: Strict Validation

 I would like to validate my apps as xhtml strict, but what is the best way
 to deal with the  anf ? in the url? Would I actually need to use
 urlEncode() or would I be able to simply do a find and replace #63 for ?
 and #38 for  Thoughts?

 Doug B.



 



~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269422
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


SOT: Fusebox Web Site Design Contest Announced

2007-02-09 Thread Sandra Clark
Fusebox is going to get a facelift and we need your help.

Things are really starting to happen within Team Fusebox and one of the main
goals is to start off fresh with a new and improved website. New content,
new everything. Including a new look. Since for the most part, we are
programmers and not designers, we need your help. So we are announcing the
first ever Fusebox Website design contest.

* Site submittals will close on March 8, 2007, 5pm EST. Submittals after
this time will not be accepted.
* A winner will be announced on March 29, 2007.

Interested? head over to
http://trac.fuseboxframework.org/fusebox/wiki/WebSiteDesignRequirements for
the complete set of rules, design requirements and submittal information.

What do you get out of it? You mean besides the warm fuzzy feeling that
comes from contributing to the community? Isn't that enough? No? Well then
how about:

* 2 Free passes to CFOBjective , held in Minneapolis, Minnesota, May 3 -
6, 2007 (courtesy of Jared Rypka-Hauer)
* 1 Free pass to CFUNITED, held in Bethesda, Maryland, June 27 - 30,
2007 (courtesy of Michael Smith of Teratech)
* Site designed by: with corresponding link on the footer of the home
page

Feel free to blog this or put this on other sites. The more response we get
to this, the better the site will be.

Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility



~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269319
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: SOT: Fusebox Web Site Design Contest Announced

2007-02-09 Thread Sandra Clark
I'm not a designer.  I can do radical CSS from an already designed layout,
but I don't do well coming up with concepts.   


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Jacob Munson [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 09, 2007 2:05 PM
To: CF-Talk
Subject: Re: SOT: Fusebox Web Site Design Contest Announced

 Since for the most part, we are programmers and not designers, we need
your help.

Wait a minute...I know you are a CF programmer too, Sandra, but I've always
thought you were the best designer in our community!  What do you mean
you're not a designer?  Or is that for the most part
comment meant to exclude you from the we?  ;)


--
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/



~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269330
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Fusebox Web Site Design Contest Announced

2007-02-09 Thread Sandra Clark
Luckily, I'm not in charge of documentation, that is Nat, Patrick and Steve.

I'm only in charge of the Web site (with Brian Kotek), proofreading and
editing (with Brian Kotek) and fusedocs.

And yes, I'll be spending a great deal of time far in excess of 30 hours
doing this.  But that is my choice and I do it freely.

No one is requiring anyone to enter.  But we figured that there are people
who want to contribute and think they don't have any applicable skills (and
everyone does have something they can contribute if they want to) and so
came up with the contest idea.  

I hope though that people do contribute in whatever ways they feel
comfortable.  Fusebox has been good for my career, and I want to give
something back to the community, that's why I do it.   

As Sean said, all designs will be up on the wiki (thumbnailed and clickable
to larger images), if someone likes a design there that isn't ultimately
chosen for the website, they will be able to contact the designer.




Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Charlie Griefer [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 09, 2007 4:44 PM
To: CF-Talk
Subject: Re: Fusebox Web Site Design Contest Announced

On 2/9/07, Andy Matthews [EMAIL PROTECTED] wrote:
 The problem with this contest is that people are being asked to 
 contribute a significat amount of time with no guarentee of winning. 
 This isn't like spending a dollar to enter the lottery. I budget a 
 minimum of 20-30 hours of my time with ANY design project.

Think Sean or Hal or Jeff or any of those people spent more than 30 hours on
Fusebox?  Think Sandra's not going to be investing more than 30 hours in
organizing the new site or the new documentation?

Everybody involved in this (and most) projects are going to invest a
significant amount of time.  That's why I said previously that I
-suspect- that those who are entering aren't doing so with the explicit
intent of trying to win a prize.  They're doing so as a way to contribute.
The prize is just a nice little bonus -if- it happens.

But nobody's twisting anybody's arm.  This isn't some starving designer
who's about to lose his house and family because he's out of work being
taken advantage of by a design firm.

Perspective, man :)


--
Charlie Griefer


...All the world shall be your enemy, Prince with a Thousand Enemies, and
whenever they catch you, they will kill you. But first they must catch you,
digger, listener, runner, prince with a swift warning.
Be cunning and full of tricks and your people shall never be destroyed.



~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269362
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: IE7 vs IE6

2007-02-08 Thread Sandra Clark
I run IE7 on my machine and IE6 through a Virtual Machine. I use VMWare
Player http://www.vmware.com/products/player/


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Claude Schneegans [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 08, 2007 3:05 PM
To: CF-Talk
Subject: IE7 vs IE6

Sorry for the KOT question, but this is a general developer question after
all.

Has any one tried IE7, and is it possible to run both version IE6 and
IE7 concurrently on the same machine?
Question of verifying code for both versions of course.

--
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED]) Thanks.




~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269228
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: OT-Image Maps

2007-01-31 Thread Sandra Clark
Homesite has a function for image maps.  I think you do need an image file
(since it's the image file that associates with the map), but you could just
do a big transparent gif.
 


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Smith, Daron [PA] [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 31, 2007 2:01 PM
To: CF-Talk
Subject: OT-Image Maps

Hello,
This is OT but I'm sure someone on this list knows the answer.  I'd like to
show an image map without the image.  In other words just a border of the
mapped regions on a white background.  Is this possible? Or is there a way
to draw an image with the screen cordinates?

Thanks,
Daron Smith

PSEA E-mail Firewall annotation on Wed Jan 31 2007 14:01:19
-
NOTICE: Only the individual sender is responsible for the content of the
message, and the message does not necessarily reflect the position or policy
of the Pennsylvania State Education Association.
-




~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268247
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: OT-Image Maps

2007-01-31 Thread Sandra Clark
 
No,

CSS supports something called cropping, but at this time, only rectangular
cropping is available. And that simply crops an element.

Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
Subject: Re: OT-Image Maps


Can I use x,y coordinates to draw a Polygon with CSS? I really want to
render a dynamic map without images.  I have the x,y coords but want to
shade individual regions based upon query results.



~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268259
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CSS

2007-01-22 Thread Sandra Clark
What docType are you using?  Since your div is positioned absolutely, what
is is positioned absolutely in reference to  

Any chance of a URL? 


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Doug Brown [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 22, 2007 10:29 AM
To: CF-Talk
Subject: OT: CSS

I have a div that is shown when a user clicks on a text field, and it pops
up just below that text field (0px below and aligned to the left bottom
corner). It seems to work just fine in IE: but in NS and FF the div is about
25 px out of alignment. Any ideas on how to display it the same in all
browsers? The text field is in a table and not another div.

cfoutput
div style=position:absolute; top:82px; left:135px; width:152;
background-color:##DAE4E4; border: 1px solid; color:##66; id=script
table width=100% cellpadding=1 cellspacing=0 border=0  tr
  td class=bblackfontRecent Searches/td
  tdimg src=images/buttn-notok.gif border=0
onclick=showhide('script'); return(false); //td  /tr /cfoutput
cfif isDefined('cookie.testCookie') cfloop list=#cookie.testCookie#
delimiters=, index=i cfoutput  tr
  td colspan=2 class=nblackfonta href=#i#/a/td  /tr
/cfoutput /cfloop /cfif /table /div

Doug B.



~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:267137
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CSS

2007-01-22 Thread Sandra Clark
That DocType triggers quirks modes across browsers,  so of course what looks
right in the browser you design in, will look off in other browsers.

http://hsivonen.iki.fi/doctype/

Use the following DocType and make sure your page validates.
!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN
http://www.w3.org/TR/html4/strict.dtd;

Then start working with your page in FireFox first.  Make it work there.
(Its always easier to get something to work in a more standards based
browser and then make changes for other browsers which aren't so compliant
such as IE).

Once you have that working, go ahead and fix IE.  Make sure you look at it
in both IE6 and IE7 and send your changes to those browsers via the
conditional tags I reference in my blog
http://www.shayna.com/index.cfm?fuseaction=blog.display_entryid=131


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Doug Brown [mailto:[EMAIL PROTECTED]
Sent: Monday, January 22, 2007 10:49 AM
To: CF-Talk
Subject: Re: CSS

And doctype

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN

Doug B.
- Original Message -
From: Sandra Clark [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Monday, January 22, 2007 8:38 AM
Subject: RE: CSS


 What docType are you using?  Since your div is positioned absolutely, 
 what is is positioned absolutely in reference to

 Any chance of a URL?


 Sandra Clark
 ==
 http://www.shayna.com
 Training in Cascading Style Sheets and Accessibility


 -Original Message-
 From: Doug Brown [mailto:[EMAIL PROTECTED]
 Sent: Monday, January 22, 2007 10:29 AM
 To: CF-Talk
 Subject: OT: CSS

 I have a div that is shown when a user clicks on a text field, and it 
 pops up just below that text field (0px below and aligned to the left 
 bottom corner). It seems to work just fine in IE: but in NS and FF the 
 div is
about
 25 px out of alignment. Any ideas on how to display it the same in all 
 browsers? The text field is in a table and not another div.

 cfoutput
 div style=position:absolute; top:82px; left:135px; width:152; 
 background-color:##DAE4E4; border: 1px solid; color:##66;
id=script
 table width=100% cellpadding=1 cellspacing=0 border=0  tr
   td class=bblackfontRecent Searches/td
   tdimg src=images/buttn-notok.gif border=0
 onclick=showhide('script'); return(false); //td  /tr 
 /cfoutput cfif isDefined('cookie.testCookie') cfloop
list=#cookie.testCookie#
 delimiters=, index=i cfoutput  tr
   td colspan=2 class=nblackfonta href=#i#/a/td  /tr 
 /cfoutput /cfloop /cfif /table /div

 Doug B.



 



~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:267154
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CSS

2007-01-22 Thread Sandra Clark
That DocType triggers quirks modes across browsers,  so of course what looks
right in the browser you design in, will look off in other browsers.

http://hsivonen.iki.fi/doctype/

Use the following DocType and make sure your page validates.
!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN
http://www.w3.org/TR/html4/strict.dtd;

Then start working with your page in FireFox first.  Make it work there.
(Its always easier to get something to work in a more standards based
browser and then make changes for other browsers which aren't so compliant
such as IE).

Once you have that working, go ahead and fix IE.  Make sure you look at it
in both IE6 and IE7 and send your changes to those browsers via the
conditional tags I reference in my blog
http://www.shayna.com/index.cfm?fuseaction=blog.display_entryid=131


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Doug Brown [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 22, 2007 10:49 AM
To: CF-Talk
Subject: Re: CSS

And doctype

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN

Doug B.
- Original Message -
From: Sandra Clark [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Monday, January 22, 2007 8:38 AM
Subject: RE: CSS


 What docType are you using?  Since your div is positioned absolutely, what
 is is positioned absolutely in reference to

 Any chance of a URL?


 Sandra Clark
 ==
 http://www.shayna.com
 Training in Cascading Style Sheets and Accessibility


 -Original Message-
 From: Doug Brown [mailto:[EMAIL PROTECTED]
 Sent: Monday, January 22, 2007 10:29 AM
 To: CF-Talk
 Subject: OT: CSS

 I have a div that is shown when a user clicks on a text field, and it pops
 up just below that text field (0px below and aligned to the left bottom
 corner). It seems to work just fine in IE: but in NS and FF the div is
about
 25 px out of alignment. Any ideas on how to display it the same in all
 browsers? The text field is in a table and not another div.

 cfoutput
 div style=position:absolute; top:82px; left:135px; width:152;
 background-color:##DAE4E4; border: 1px solid; color:##66;
id=script
 table width=100% cellpadding=1 cellspacing=0 border=0  tr
   td class=bblackfontRecent Searches/td
   tdimg src=images/buttn-notok.gif border=0
 onclick=showhide('script'); return(false); //td  /tr /cfoutput
 cfif isDefined('cookie.testCookie') cfloop list=#cookie.testCookie#
 delimiters=, index=i cfoutput  tr
   td colspan=2 class=nblackfonta href=#i#/a/td  /tr
 /cfoutput /cfloop /cfif /table /div

 Doug B.



 



~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:267155
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CCS Question

2007-01-11 Thread Sandra Clark
No.

Relative positioning is relative to the element's position when it is
position:static (the default). The item is still in document flow.

Absolute positioning positions an element relative to its parent in the DOM
that is not positioned statically.  If the element's parent is positioned
statically, it goes up the DOM.  If nothing is positioned above it (ie,
absolute or relative), then the viewport is used as the parent.


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Coldfusion [mailto:[EMAIL PROTECTED] 
Sent: Thursday, January 11, 2007 2:50 PM
To: CF-Talk
Subject: RE: CCS Question

So is it better to create a DIV and make everything within that relative?

DIV ID=MAIN
DIV ID=SUB  (this would be set to relative to the MAIN div?

TIA! 

-Original Message-
From: Jon Clausen [mailto:[EMAIL PROTECTED]
Sent: Thursday, January 11, 2007 2:21 PM
To: CF-Talk
Subject: Re: CCS Question

A couple things that I see from a quick glance:

1 ) Firefox is getting it right.  You've positioned your  
#navcontainer  for the left menu absolutely with a top of 89px.   
That's exactly where it's at in FF.

2)  Many of your  container elements are positioned absolutely from the top
- including your footer.  That's going to make your  life very difficult
since you're gong to have to adjust many of those items for every page.
FF and IE handle absolute positioning a bit different.  You should consider
using relative positioning wherever possible and adjusting the margins,
padding, and floats accordingly to position the containers where they need
to be.

Also, here's a great resource for understanding CSS behavior between
browsers:  http://www.quirksmode.org/css/contents.html

HTH,

Jon


On Jan 11, 2007, at 1:20 PM, Coldfusion wrote:

 Any idea why the menu lays out fine in IE but not in FF?
 http://www.mindkeeper.net/test/







~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:266304
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CF Exam Certification Study Gruop

2007-01-03 Thread Sandra Clark
Nick,

Talk to Michael Smith at Teratech ([EMAIL PROTECTED]).  They sponsored a
class like this a few years ago and have a training room.   
Depending on the evening, I might be interested, it depends on what other
commitments I have.


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Nicholas M Tunney [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 03, 2007 9:36 PM
To: CF-Talk
Subject: CF Exam Certification Study Gruop

Would anyone be interested in attending a ColdFusion MX 7 Developer
Certification
http://www.adobe.com/support/training/certified_professional_program/cfmx7_
developer.html
exam study group^* ?

There would be no cost to attend (unless we all chip in for pizza or
something). I am thinking it would be a three night class located somewhere
near Rockville/Bethesda MD (anyone who is willing to donate or suggest a
location let me know!). We would be concentrating on the 4 primary sections
of the Adobe ColdFusion MX 7 Developer exam
http://www.adobe.com/support/training/certified_professional_program/cfmx7_
developer.html
(Application Development, Database Concepts, Client State Management and
Data Exchange) as well as discussing common hang ups and testing techniques.

If I can get this set up via Adobe Connect, I will extend the invitation to
those not available to attend in person.

If you are interested, please send me your contact information
mailto:[EMAIL PROTECTED] or comment
on this post.

* - This is not an Adobe course

--
Nicholas M Tunney
Senior Software Architect, AboutWeb LLC - http://www.AboutWeb.com

Certified Advanced ColdFusion MX 7 Developer Blog - http://www.nictunney.com





~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265593
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Fusebox plugin for CFEclipse?

2006-12-22 Thread Sandra Clark
The only FB plugin I had ever heard of only supports FB3 (which is not xml).
Is this another plugin?

 


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Ryan Stille [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 22, 2006 1:56 PM
To: CF-Talk
Subject: Fusebox plugin for CFEclipse?

Has anyone got the fusebox plugin working with CFEclipse?  I extracted it
into my plugins directory but I didn't see any changes within CFEclipse.
I'd really like to be able to right click on an include tag and be able to
edit the referenced template right from there.  Don't know if the plugin
does that, I really don't know what it does for you... some syntax highlight
would be nice at least.

-Ryan





~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264929
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CSS / HTML Compliant issue

2006-12-21 Thread Sandra Clark
You can't, without using JavaScript.

Per the spec, inline elements (such as an anchor) may not contain block
level elements such as a div.


If you really want to only use CSS.  Use display:block on your anchors and
pad them to achieve the height you want so that the anchor is as big.  Get
rid of the divs and use an unordered list.  (Structured HTML does really
make life easier, I promise)

!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN
http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd;

html xmlns=http://www.w3.org/1999/xhtml; xml:lang=en lang=en
head
title/title
style type=text/css
!--
ul#leftnav{
width: 15em;
background-color: #ECB200;
list-style:none;
padding: 0;
border-bottom: thin solid white;
}
ul#leftnav li{
margin: 0;
width: 100%;
padding: .25em;
border-bottom: thin solid white;
}
ul#leftnav :link,
ul#leftnav :visited{
color: white;
display: block;
margin:0 0 0 -.25em;
padding:.25em 0;
border: thin solid red; /* Take out, used only to show where
the effect will be available */
}
ul#leftnav :link:hover,
ul#leftnav :visited:hover{
color: black;
}
--
/style
/head

body
ul id=leftnav
lia href=/ Not This (Compliant)/a/li
lia href=/Like This (non-compliant)/a/li
lia href=/Program Services/a/li
lia href=/div class=LeftMenuItemAdmission Process/a/li
lia href=/Location / Directions/a/li
lia href=/Payment for Services/a/li
lia href=/Confidentiality / Privacy/a/li
lia href=/Contact Us/a/li
/ul
/body
/html



Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Adkins, Randy [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 21, 2006 4:11 PM
To: CF-Talk
Subject: RE: CSS / HTML Compliant issue

Okay I did that, however the box (DIV) does not act as a link until you
mouse over the text itself.
My goal is to be able to mouse over the box or the text and click to proceed
to the link not just the text. 



-Original Message-
From: John Cox [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 21, 2006 4:03 PM
To: CF-Talk
Subject: Re: CSS / HTML Compliant issue

On 12/21/06, Adkins, Randy [EMAIL PROTECTED] wrote:

 If you will look at this one page, I am having a problem with being 
 compliant with CSS and HTML and achieving the desired behavior and 
 look.

 http://test.mksweb.net/



Take your width and positioning out of your anchor elements:

a.LeftNav { width:191px;font-weight:bold;color:#525252;font-family:
'Arial';text-decoration: none;font-size: 13px;}

and place them in your division definitions.  Once done, move your anchors
inside your divisions.






~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264829
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: HTML DL and P Nesting

2006-12-21 Thread Sandra Clark
I would not use the p tag unless its necessary to split up paragraphs. In
which case I would use them in both.  But that's your call.  Text within a
dd is not considered anonymous text.  It is valid.

You can style your p within the dd using the following selector

 dd p {margin:.25em 0;padding:0}   which will give you a top and bottom
margin and a 0 left and right margin. The 0 padding will then allow you to
simply style the dd.




Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Dawson, Michael [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 21, 2006 6:57 PM
To: CF-Talk
Subject: SOT: HTML DL and P Nesting

This is something that has always bugged me for the sake of consistency...
 
If I have a definition list such as:
 
dl
dtTerm Goes Here/dt
ddThe long definition goes here/dd /dl
 
Then, I have a definition list with two paragraphs such as:
 
dl
dtTerm Goes Here/dt
dd
pThe long definition goes here/p
pThe second line goes here/p
/dd
/dl
 
Now, these two lists are not consistent in the use of the p tag.  The
first example does not use p but the second example does, if only to break
the paragraphs apart.
 
So, how do you handle these cases?  Do you always use a p tag even if
there would only be one paragraph within the dd tag?
 
Or, do you just keep it brief and not use a p tag unless you have more
than one paragraph?
 
If I always use the p tag, then I know my CSS styling will be consistent.
Otherwise, I would need to style both my dd and p tags the same to keep
the same margins and padding.
 
Thanks




~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264862
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CSS, border-bottom is on top

2006-12-15 Thread Sandra Clark
You can also float the parent, which will then contain the floated children.



Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 15, 2006 10:57 AM
To: CF-Talk
Subject: RE: CSS, border-bottom is on top

That's because you're floating the two divs contained within header2section.
When you float an item you take it out of the normal page flow, which means
that as far as header2section is concerned, it has no contents.

Try putting a height on header2section (assuming that the height of the two
inside divs is fixed.

!//--
andy matthews
web developer
certified advanced coldfusion programmer ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-

-Original Message-
From: Jacob Munson [mailto:[EMAIL PROTECTED]
Sent: Friday, December 15, 2006 9:48 AM
To: CF-Talk
Subject: CSS, border-bottom is on top


I suck at CSS.  This seems simple enough, but I want to avoid using tables.
I want to have code like this:
div class=header2Section
  div class=header2Leftleft content/div
  div class=header2Rightright content/div /div where header2Left is
left aligned, and header2Right is right aligned, but those two divs need to
be next to each other horizontally, and /not/ screw up the alignment of the
other items around them.  Here's what I've got now, and it seems to work
except that the border-bottom of headerSection appears at the top of this
header!

header2Section {
border-bottom: 1px dotted #414D66;
padding-left: 10px;
margin-right: 20px;
margin-left: 10px;
margin-bottom: 30px;
}

header2Left {
float: left;
text-align:left;
}

header2Right {
float: right;
text-align:right;
}

Any ideas?

--
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/





~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264139
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Components Fusebox 5

2006-12-15 Thread Sandra Clark
It would help to see what your directory structure is and how you are
calling the include and from where.  If its from your circuit.xml.cfm, try
making the call relative to the parsed directory. 


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Chris Ditty [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 15, 2006 11:31 AM
To: CF-Talk
Subject: Components  Fusebox 5

I am trying to write my first fusebox 5 app using MX7 and components.
I usually like to keep my functions in a seperate file in another directory.
When I try and do an include, I get an error saying that I am missing a
Fuse.

I could include this function library in all my pages, but I would rather it
be called just once per fuse action.

Any ideas?

thanks



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264138
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Components Fusebox 5

2006-12-15 Thread Sandra Clark
You might want to use instantiate / and invoke /  for your cfc.  In that
case, if you don't want to create a mapping for your cfc, then you can place
your cfc's in a directory under the parsed directory.

In fusebox.xml
classes
class alias=functions classpath=cfc.functions type=component
constructor=init /
/classes

globalfuseactions
appinit
do action=public.initfunction /
/appinit
/globalfuseactions

In your circuit (I called it public, you can call it from wherever you want)
fuseaction name=initfunction
instantiate object=application.functions
class=functions overwrite=true /
/fuseaction

Then when you need to call a function from it, you would call it either via
the invoke or set tags

set name=returnitemifnecessary
value=#application.functions.methodcall()# /
 OR 
invoke returnvariable=returnitemifnecessary object=application.function
methodcall=methodToBeCalled()
parameter name=parametername value=parametervalue /
/invoke







Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Chris Ditty [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 15, 2006 1:15 PM
To: CF-Talk
Subject: Re: Components  Fusebox 5

My directory structure is rather plain.

/
/act
/includes
/qry
/dsp

I am trying to make the include from the circuit.xml.cfm.  This is what I
currently have that does not work.

circuit access=public
fuseaction name=home
xfa name=submitForm value=main.home /
include template=includes/functions.cfc/
include template=act/act_killSessions.cfm/
include template=dsp/dsp_welcome.cfm/
/fuseaction
/circuit

On 12/15/06, Sandra Clark [EMAIL PROTECTED] wrote:
 It would help to see what your directory structure is and how you are 
 calling the include and from where.  If its from your circuit.xml.cfm, 
 try making the call relative to the parsed directory.


 Sandra Clark
 ==
 http://www.shayna.com
 Training in Cascading Style Sheets and Accessibility


 -Original Message-
 From: Chris Ditty [mailto:[EMAIL PROTECTED]
 Sent: Friday, December 15, 2006 11:31 AM
 To: CF-Talk
 Subject: Components  Fusebox 5

 I am trying to write my first fusebox 5 app using MX7 and components.
 I usually like to keep my functions in a seperate file in another
directory.
 When I try and do an include, I get an error saying that I am missing 
 a Fuse.

 I could include this function library in all my pages, but I would 
 rather it be called just once per fuse action.

 Any ideas?

 thanks



 



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264154
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: TODAY: MDCFUG on Tuesday 12/12/06: CF Admin, Fusebox 5

2006-12-12 Thread Sandra Clark
Looking right under the schedule, it seems as if it will be.  


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Nando [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, December 12, 2006 1:46 PM
To: CF-Talk
Subject: Re: TODAY: MDCFUG on Tuesday 12/12/06: CF Admin, Fusebox 5

Michael, will that be broadcast live via Adobe chats?

On 12/12/06, Michael Smith [EMAIL PROTECTED] wrote:

 You are invited to Maryland ColdFusion User Group Meeting on Tuesday 
 12/12/2006.

 6:30pm - CFMX Administrator 'for Dummies' with Jo Ann Goertner 
 8:00pm - Fusebox 5: what is new with Sandra Clark (Times are Eastern 
 Standard Time)

 Can't make it to the meeting? Remote access via Adobe chats 
 http://adobechats.adobe.acrobat.com/mdcfug121206/

 TeraTech, Inc.
 405 E. Gude Dr
 Suite 207
 Rockville, MD 20850
 301-424-3903

 For a map or for directions: Go to
 http://www.cfug-md.org/directions/directions.cfm.

 To enter the TeraTech building after 6:00 pm use the keypad entry 
 system on the right side of the front door. Press the button to select 
 TeraTech on the keypad and hit the call button, press 0 for someone to 
 pick it up and they will let you in.


 Topic: CFMX Administrator 'for Dummies'

 In my first 4 years writing, troubleshooting and maintaining 
 ColdFusion code, I have always treated the CF Administrator as 
 someone else's territory. It's my last resort, my afterthought when 
 all else fails. Why? Mostly because it's unfamiliar. I'm afraid I'll 
 break something. And, there's always been someone else I could go to.

 Great excuses! Yet, there are basic things every CF developer needs to 
 know about the Administrator.
 Yes, even those of us who don't have primary responsibility to 
 maintain the server. What are they?
 That's what we'll look at in this presentation.

 I'm picking the brains of my someone elses and I'll share with you 
 what I learn. If you've had the same excuses I have, I invite you to 
 get over them along with me!

 Jo Ann Goertner can be reached at joann (at) teratech.com.

 Topic: Fusebox 5: what is new

 In this talk, Sandra Clark, will cover Fusebox 5, from new features to 
 backwards compatibility.
 Along the way, she will touch on:

  * Using Multiple Fusebox Applications in one ColdFusion Application
  * New Application Initialization
  * New Verbs/Syntax available, including nesting!
  * New Execution Modes, when to use them
  * Implicit Circuits
  * Extending the Framework with lexicons.

 Bio:
 Sandra Clark, an advanced Macromedia Certified ColdFusion developer, 
 is a Senior Software Developer with the Constella Group in Bethesda, 
 Maryland. She has contributed material to the ColdFusion 5.0 Certified 
 Developer Study Guide published by Syngress Media/Osborne McGraw Hill, 
 and to the ColdFusion Developers Journal. She has also spoken at 
 various CFUGS and ColdFusion User Conferences around the country.

 Sandra is an active proponent of applying accepted and proven web 
 standards to development as a way of improving accessibility as well 
 as making life easier on developers.

 Sandra Clark can be reached at slclark (at) shayna.com.





 --
 Michael Smith, TeraTech Inc - Tools for Programmers(tm) TeraTech voted 
 Best Consulting Service by CFDJ readers!
 CF/ASP Web, VB, Math, Access programming tools and consulting

 405 E Gude Dr Ste 207, Rockville MD 20850 USA Please check out 
 http://www.teratech.com/ - email mailto:[EMAIL PROTECTED], or call 
 us for more information; in the USA at 1-800-447-9120,
 +1-301-424-3903 International, Fax 301-762-8185  Thanks!





 



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:263799
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CSS Horizontal Centering in IE7

2006-12-11 Thread Sandra Clark
You need a width in there. 

Another CSS Rule

Everything needs to be 100% of the parent, in any case where stuff isn't
defined, CSS will always make margin-right large enough to accommodate 100%
of the parent.  In this case the parent is html.
If using auto, then whatever the difference is will be split between margin
left and margin right. Providing that is, that width is declared.

body{ 
  width: 80%;
  margin: 0 auto;
}
Also equivalent

body{
 width: 80%;
 margin: 0 10%;
}


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Matt Quackenbush [mailto:[EMAIL PROTECTED] 
Sent: Monday, December 11, 2006 2:36 PM
To: CF-Talk
Subject: OT: CSS Horizontal Centering in IE7

Well, I'm finally getting around to see what all IE7 has broken in my
various CSS websites.  I was rather surprised to find out that horizontal
centering is on the list.  For instance, the following does not render
properly in IE7:

body {
   margin: 0 auto;
}

While that *should* have no top/bottom margin, and the body centered on the
screen, in IE7 it is now aligned left.  I've searched around google to see
if I could find any articles regarding this, but have yet to do so.  So, if
you've run across this and have already found/figured out what IE7 wants to
see in order to behave properly, can you please post it?  I'm sure there are
quite a few people (myself included) who would be most appreciative!


Thanks,

Matt




~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:263576
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CSS Horizontal Centering in IE7

2006-12-11 Thread Sandra Clark
You are creating a 760px width for both html and body, which means that
there is no where else for it to get larger.

Try this

!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN
http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd;
html xmlns=http://www.w3.org/1999/xhtml; xml:lang=en lang=en
head
title/title
style type=text/css
!--
 html {
   width: 100%;
   height: 100%;
   border: thin solid black; /* take out after you look at it */
   margin: 0;
   padding: 0;
}

body{
   width: 760px;
 margin: 0 auto;
height: 100%;  /* Just so you can see the height */
   border: thin solid blue /* again take out after you look at it */
}
--
/style
/head

body

/body
/html


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Matt Quackenbush [mailto:[EMAIL PROTECTED] 
Sent: Monday, December 11, 2006 2:56 PM
To: CF-Talk
Subject: Re: CSS Horizontal Centering in IE7

Sandra,

I have the width in there; was just posting minimal code since I know how
much I hate to wade thru a bunch of superflous code.  Here is the actual CSS
rule as written:

html, body {
margin: 0 auto;
text-align: center;
width: 760px;
min-width: 760px;
}


Thanks,

Matt


On 12/11/06, Sandra Clark [EMAIL PROTECTED] wrote:

 You need a width in there.

 Another CSS Rule

 Everything needs to be 100% of the parent, in any case where stuff 
 isn't defined, CSS will always make margin-right large enough to 
 accommodate 100% of the parent.  In this case the parent is html.
 If using auto, then whatever the difference is will be split between 
 margin left and margin right. Providing that is, that width is 
 declared.

 body{
   width: 80%;
   margin: 0 auto;
 }
 Also equivalent

 body{
 width: 80%;
 margin: 0 10%;
 }


 Sandra Clark
 ==
 http://www.shayna.com
 Training in Cascading Style Sheets and Accessibility





~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:263591
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Tortoise SVN and Anti Virus Software

2006-12-08 Thread Sandra Clark
I'm currently using F-Secure as my anti-virus and Tortoise-SVN to connect to
a remote server via https

When uploading (committing) through Tortoise, my upload slows to a crawl
(about 5/kbs) and halts at about 16k.  If I remove the fssm.exe from the
task manager (this is the real time scanning portion of f-secure) it speeds
up to about 40/kbs and keeps going merrily.  Turning off real time scanning
from within F-Secure doesn't do it, I have to physically remove the file
from running (and then the only way to get it back is to reboot the
machine).

I've contacted F-Secure about it and frankly they simply want me to get rid
of my firewall and spyware (which won't help, I tried getting rid of them to
narrow down the problem) and I'm fed up.

Anyone know of a good anti-virus or 3 in one
(anti-virus/firewall/antispyware) which plays well with Tortoise and
uploading to remote servers?

Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility




~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:263309
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Weird in Firefox: drop down list with selected item

2006-12-07 Thread Sandra Clark
No 

option selected=selected  in xHTML.  

In HTML selected was a single item  so it has to be doubled in xHTML in both
the name/value pair.  I don't believe that selected=anything else would
work in xHTML.  The value portion is probably ignored in HTML


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: DURETTE, STEVEN J (ASI-AIT) [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 07, 2006 9:36 AM
To: CF-Talk
Subject: RE: Weird in Firefox: drop down list with selected item

I believe. (don't flame me if I'm wrong) but if it is xhtml it has to be
selected=true.

I've started coding it that way so I don't have to worry if I've got HTML or
XHTML. I close all my single tags now also!

Steve


-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 07, 2006 9:23 AM
To: CF-Talk
Subject: RE: Weird in Firefox: drop down list with selected item


option value=0 selected
option value=0 selected=selected
option value=0 selected=true
option value=0 selected=blah
 
Those all work. I normally just use the first one. ;-)

Try control + shift + R to make sure FF just isn't remembering the last
selection.

:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
 

 


-Original Message-
From: Philippe Varichon [mailto:[EMAIL PROTECTED] ] 
Sent: Thursday, December 07, 2006 8:04 AM
To: CF-Talk
Subject: Weird in Firefox: drop down list with selected item

I have a drop down list with one item selected which does not display in
Firefox but it does in IE.  What is weird is that in the source code it
shows correct.  Any other way of entering a selected in firefox?







~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:263239
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Stylesheet editor (was: Re: Fun with CF CSS Files.)

2006-12-06 Thread Sandra Clark
Not open source, but very reasonably priced

TopStyle, built by the same guy who built Homesite

http://www.bradsoft.com


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Charles Sheehan-MIles [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, December 06, 2006 9:53 AM
To: CF-Talk
Subject: Stylesheet editor (was: Re: Fun with CF CSS Files.)

Speaking of stylesheet editors.

Are there any good open source coldfusion implementations?  I've been
looking to replicate the functionality of this movable type generator:

http://styles.movalog.com/generator/



On 12/6/06 9:11 AM, Claude Schneegans [EMAIL PROTECTED] wrote:

 Has anybody every tried this?
 
 There are two situations:
 1º what you need is simply a CSS file generated once in a while from 
 CF (say you have a style editor for instance in your CMS).
 In that case, you do not want the CF code to be run at every request, 
 then the best is to use the CF code code to generate a  .css file and 
 then call it in the standard way.
 2º what you need is really a 100% dynamic style definition, in that 
 case, simply generate styles definition inside a STYLE.../STYLE 
 block from your CF code.




~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:263058
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: calling all CSS gurus

2006-12-06 Thread Sandra Clark
Jake I answered your question earlier, but I don't know if it ever went
through.

To contain something that is floated, float the parent as well. 


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Jake Churchill [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, December 06, 2006 12:00 PM
To: CF-Talk
Subject: calling all CSS gurus

I have a problem that I've had on multiple occasions and I'm sick of hacking
it.  I need some help.  The problem can be seen at
http://dialsmi.cfwebtools.com/jake.cfm. 
The problem is that the div id contentWrap contains the div id sideNav and
div id content.  contentWrap has a blue background, content a red background
and the sideNav is the menu links on the left. 

The problem is that the menu extends below the contentWrap and I thought
that contentWrap would wrap around everything it contained.  So, how in the
world do I go about getting content wrap to wrap around the sideNav as well?

Here's the code:

body id=typeB
div id=wrap
div id=header
div style=margin-left:300px;
a
href=/index.cfm?objectid=5491AFF2-9027-F64A-7993A956A7E10AE6img
src=/wsimages/employmentButton.gif/a
span style=width:20px;nbsp;/span
a
href=/index.cfm?objectid=54937F73-9027-F64A-797505E1D361DAECimg
src=/wsimages/contactUsButton.gif/a
/div
/div
   
div id=contentWrap
div id=sideNav
ul id=navlia href=/span
id=shadowHome/spanspan id=textHome/span/a/lili a
href=/index.cfm?objectid=5487BAEB-9027-F64A-799A1A29E723B693span
id=shadowCompany/spanspan id=textCompany/span/a/lili a
href=/index.cfm?objectid=5487BAFA-9027-F64A-793380B58CA5C17Fspan
id=shadowCommunities/spanspan
id=textCommunities/span/a/lili  class=activea
href=/index.cfm?objectid=586F1BB5-9027-F64A-791209B9FD2878ECspan
id=shadowNews/spanspan id=textNews/span/ali class=subItema
href=/index.cfm?objectid=586F1BD4-9027-F64A-79F7516491A44872span
id=shadow1Press Releases/spanspan id=text1Press
Releases/span/ali  class=subItema
href=/index.cfm?objectid=586F1BE3-9027-F64A-79CAD1CE5870CFC9span
id=shadow1New Locations/spanspan id=text1New
Locations/span/a/lili a
href=/index.cfm?objectid=53A526B3-9027-F64A-791C7F0E2300AC45span
id=shadowContacts/spanspan id=textContacts/span/a/li/ul
/div
div id=content
h1News/h1
/div
div style=clear:both;/div
/div
/div
/body

Here is the CSS

#header {
height:219px;
margin:50px 10 10 10;
background-image: url('/wsimages/DialSeniorManagement.jpg');
background-repeat:no-repeat;
background-position: center;
}
#wrap {   
align:center;
}
#nav {width: 169px; padding: 0;margin: 0;list-style: none;line-height: 1;}
#nav ul {width: 169px;list-style: none;line-height: 1}
#nav {height: 1.6em;}
#nav a, #nav a:link, #nav a:visited, #nav a:hover, #nav a:active
{text-decoration:none;cursor:pointer}
#nav a:link {color:#fff}
#nav a:visited {color:#fff}
#nav a:hover,a:active {background-color:#336699;}
#nav a {display: block;background:#99;padding: 4px
10px;position: relative;}
#nav li {border-bottom: 1px dashed #CC;margin: 0;}
#shadow {color:#66;position:absolute; left: 12px; top:6px; }
#text {color:#FF;position: relative; top:0; left:0;}
#shadow1 {color:#66;position:absolute; left: 29px; top:6px; }
#text1 {color:#FF;position: relative; top:0; left:0;}
#nav li li {float: none;border-bottom:1px solid #3F6AB7}
#nav li ul {background: #99;font-weight:normal;width: 10em;}
#nav li.active ul li a{background: 
#99;font-weight:normal;position: relative;}   
#nav li:hover ul, #nav li.sfhover ul {left: auto}
#nav li.active a {background:#336699;filter:shadow;}
#nav li.subItem a{background: #99; padding-left:2em;}   
#nav li.subItem a:hover{background: #336699;}   
#nav li.activeSubItem a{background: #336699; padding-left:2em;}   
#nav li.activeSubItem a:hover{background: #336699;}   
#nav li.active li {border-bottom:1px solid #333}

#sideNav {
width:169px;
float:left;
margin-bottom:50px;
}
/* =LAYOUT TYPE B */
#typeB #contentWrap {
background: blue url(../wsimages/content_wrap_dial_2col.gif)
repeat-y 0 0;
margin: auto;
width: 799px;
text-align: left;
clear:both;
}
#typeB #utility {
float:left;
width:165px;
margin-top:0px;
}
#typeB #content {
width:600px;
background-color:red;
float:left;
margin:0px 0px 20px 15px;
}

--
Jake Churchill
CF Webtools
11204 Davenport, Ste. 200b
Omaha, NE  68154
http://www.cfwebtools.com
402-408-3733 x103





~|
Create robust enterprise, web RIAs.
Upgrade

RE: Sql aggregate woes

2006-12-03 Thread Sandra Clark
 
SELECT DISTINCT inventory.ItemNumber, SUM(inventory.qty) as invqty where
invqty  0
GROUP BY inventory.ItemNumber.

All items not aggregated in a select must be also placed in a Group By
Clause. 

Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Terry Troxel [mailto:[EMAIL PROTECTED] 
Sent: Sunday, December 03, 2006 9:30 AM
To: CF-Talk
Subject: Sql aggregate woes

I am having a senior moment and could use some help with a sql select query
I am attempting to use to populate a listbox with only those items that have
inventory.

SELECT DISTINCT inventory.ItemNumber, SUM(inventory.qty) as invqty where
invqty  0

And I get the error I am not using 'ItenNumber' as part of an aggregate
function.

I have fixed this in the past, but am drawing a blank.

Terry




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:262656
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Cfqueryparam and a list

2006-12-01 Thread Sandra Clark
It's a string cf_sql_string 


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Richard Dillman [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 01, 2006 2:34 PM
To: CF-Talk
Subject: Cfqueryparam and a list

I have a URL value passing to a Cfquery

cfquery name=CheckFam datasource=#DSN# username=#dbusername#
password=#dbpassword#
 SELECT ID, Child, Family
 FROM   CFX_Family_Members
 WHERE (Family = cfqueryparam value=#URL.ID#
cfsqltype=CF_SQL_INTEGER)
/cfquery

then dump the ID's to a Valuelist to be used in the next query

cfset kidlist = ValueList(CheckFam.Child) /

cfquery name=names datasource=#DSN# username=#dbusername#
password=#dbpassword#
 SELECT REC_ID,CHILD_ID,FIRSTNAME
 FROM  Children
 where REC_ID IN(#kidlist#)
/cfquery

The *BIG* Question is do I need to use a cfqueryparam in the second query,
and IF I do, how would I put the info into it IE what  cfsqltype?

--
--
Richard Dillman
[EMAIL PROTECTED]
(317) 916-8341

If you want happiness for an hour -- take a nap.
If you want happiness for a day -- go fishing.
If you want happiness for a month -- get married.
If you want happiness for a year -- inherit a fortune.
If you want happiness for a lifetime -- help someone else.
-- Chinese proverb --




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:262490
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Hiding email addresses

2006-12-01 Thread Sandra Clark
Actually now that the original system is in place it takes very little work
on a daily or even weekly basis.  The only area that involves more effort
than I like is when I blacklist someone (by clicking a link in an email), I
still have to add any words to my list manually.  I'm going to change that
so that when I blacklist someone the page offers me a way to also add in a
word or words at that time.

How much extra work is involved?  Not much...

Premises
1) Person is already whitelisted (nothing to do on my end)
2) Post comes from form from someone new.
Post does not show up on the page until I see it.
I get an email with their comment and 2 links. 
With those two links I can either
Whitelist them, in which case,their post shows up
and future posts on their part go to item 1 above and no further action is
necessary
Blacklist them in which case, their information goes
to a db blacklist and the post is removed.
3) Post doesn't come from my form.
Person is immediately blacklisted and nothing shows up.
4) Person is blacklisted,  nothing shows up.

The only place I have to be involved is in Premise 2 and its merely looking
at the comment and clicking a link.  Once I change the system to accommodate
on the fly additions to the bad word list, it should be even easier.

Yes its not set it and forget it, but I don't want to not know who is
posting to my blog.  In fact I have every post that is whitelisted come to
me as well as part of a subscription.  It doesn't take that much work or
time and it has been very successful in terms of stopping the spam and not
being apparent to anyone out there.

Ok, there was one glitch a few weeks ago.  The email addresses I have stuff
going to (including the blacklist/whitelist) were inadverdently deleted and
stuff got into the system since I was posting first and removing on a
blacklist. Once I figured out why and cleaned out the db and changed to not
showing a new posters stuff until I whitelist them, its been a pleasure to
work with.

I think we as developers are the ones that need to handle the complexity.
Our users should not have to think when using our sites, that's our job.


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-

I'll admit, Sandra's methods take some extra work on the part of the admin
but at a global level (meaning that all the info be accessible by all
applications within the server/cluster) I'd say it's worth maintaining.

...:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
 


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:262538
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Sean Corfield, it's time to approve my post

2006-11-30 Thread Sandra Clark
Add to the list

National Cancer Institute.
Centers for Disease Control
National Institute for Standards and Technology
US Senate
US House of Representatives


ColdFusion is widely used in Government.  Both publicly and within
intranets. 


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Will Tomlinson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 30, 2006 7:10 PM
To: CF-Talk
Subject: Re: Sean Corfield, it's time to approve my post

Good timing Ray Camden! Thanks for posting this. Perfect timing! 

http://www.adobe.com/products/coldfusion/proven/

Will






~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:262353
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


  1   2   3   >