Re: jfreechart

2006-07-06 Thread Nick de Voil
> Anyone use CF with jfreechart?  I'm trying to create a MeterPlot, but it's
coming up blank.

Yes, but we don't use MeterPlot.

> I'd RTFM if there was a better FM :)

I know what you mean. Have you tried the forum? I've always managed to get
answers there.

http://www.jfree.org/phpBB2/viewforum.php?f=3

Nick




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245642
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: TinyMCE strange behavior.

2006-07-06 Thread Robertson-Ravo, Neil (RX)
Standard XML? Do the Microsoft XML docs validate as XML? I think they do -
so, they are valid.  They may be quirky but I think they are valid...

 





"This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Denny Valliant <[EMAIL PROTECTED]>
To: CF-Talk 
Sent: Fri Jul 07 03:50:52 2006
Subject: Re: OT: TinyMCE strange behavior.

I've been bitten by the option in the cf admin that strips out 

Re: Flex / Coldfusion question...

2006-07-06 Thread Robertson-Ravo, Neil (RX)
Indeed, and it will always be a flash interface..

You can look at Backbase as well, does the same thing but in Ajax.





"This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Casey Dougall <[EMAIL PROTECTED]>
To: CF-Talk 
Sent: Fri Jul 07 00:53:51 2006
Subject: Re: Flex / Coldfusion question...

Get out your actionscript 3.0 books boys and girls, there are some
"wizzards" but you'll still need to have some flash skills to make anything
really cool.

-- 

Casey Dougall
Web Applications Developer
Ph: 518 743-9424  Fax: 743-0337

Mannix Marketing Inc. 33 Park St. Third Floor, Glens Falls, New York 12801

Marketing to New York State Destinations?
We offer quality Travel Industry Directories, Including www.Albany.com,
www.LakeGeorge.com & www.Saratoga.com




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245640
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: TinyMCE strange behavior.

2006-07-06 Thread Denny Valliant
I've been bitten by the option in the cf admin that strips out 

Automated Web Form Filler-Outer (was Re: Mailing List suggestions)

2006-07-06 Thread Denny Valliant
Sorta along these lines, has anyone written a CF "web-macro" component?

There is even a term for them, but basically, a means of filling in forms on
3rd party sites from structures or queries?

I'm picturing something that follows along as you browse a site, and then
offers means of connecting parts of the session to CF loops, structures,
etc., so you can "replay" your session programmatically.

I probably didn't explain good enough, my communication skills are on par
with my spelling skillz.  Be amazed at my awesome communicative prowess. Be
very amazed. =P

On 7/6/06, Nick Tong - TalkWebSolutions.co.uk <[EMAIL PROTECTED]> wrote:
>
> Ray - possible a cheaky way (this is off the top of my head so you would
> need to check) is that you could use say yahoos mailing list.  They have a
> RSS feed that you could maninpulate the date from and display it ala your
> clients website? - just a thought.


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245638
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: calling one function inside another

2006-07-06 Thread James Holmes
I agree 100% here. This kind of object composition save so many
headaches and makes the main component stand alone as it should.

On 7/7/06, Raymond Camden <[EMAIL PROTECTED]> wrote:
> Even though all the CFCs exist in the app scope, when you are _inside_
> another CFC you shouldn't address the other CFCs that way. If you want
> an instance of Conference CFC, you shouldmake a new instance of it.
> This would be best inside the init() function so it's only made once.
>
> On 7/6/06, Crow T. Robot <[EMAIL PROTECTED]> wrote:
> > Actually, all the CFC's are loaded into the application scope, which is
> > why the whole thing is confusing me.  In application.cfm, here is one
> > example of the code:
> >
> > 
> >  > createObject("component","cfcs.conference").init(application.settings)>
> >
> > Somaybe I'm missing a step in accessing it inside the users component?
> >
> > Matt Williams wrote:
> > > Unless the Conferences component is in the session or application scope,
> > > you'll need to create an instance of the conferences.cfc before you can 
> > > call
> > > a method in it.
> > >
> > > 
> > > 
> > >
> > >
> > >
> > > On 7/6/06, Crow T. Robot <[EMAIL PROTECTED]> wrote:
> > >> Using Ray Camden's Galleon software, and I need to modify it a little.
> > >>
> > >> I've got a user.cfc file that takes care of all user functions.  I have
> > >> another, conferences.cfc, that takes care of all conferences.  Now,
> > >> after a user is inserted using the addUser method inside users.cfc, I
> > >> have the need to call the GetConferences method that exists inside
> > >> conferences.cfc inside the addUser function so that I can subscribe the
> > >> user to all the conferences when they sign up.  However, before I can
> > >> get into that, I need to know why it seems like I am not able to call
> > >> the GetConferences() function from with the users.cfc.  I keep getting
> > >> undefined errors unless I copy the GetConferences function into the
> > >> users.cfc file.  After that, it works fine.
> > >>
> > >> I'm quite new to the cfc thing, so any help in the underlying logic and
> > >> the "whys" of the above behavior would be great.
> > >>
> > >> Thanks
> > >>
> > >>
> > >
> > >
> >
> >
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245637
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: gmail and norton internet security

2006-07-06 Thread Jason Radosevich
So far i have had pretty good luck with Sygate Personal Firewall..

 I have tried Kerio Personal Firewall, but for some reason it creates
a huge problem with CF?

On 7/6/06, Casey Dougall <[EMAIL PROTECTED]> wrote:
> Gmail scans your email anyway. Why do you need another virus scanner for
> your gmail?
>
> http://mail.google.com/support/bin/answer.py?answer=25760
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245636
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Flex / Coldfusion question...

2006-07-06 Thread Aaron Rouse
What is a good AS 3.0 book for a beginner?

On 7/6/06, Casey Dougall <[EMAIL PROTECTED]> wrote:
>
> Get out your actionscript 3.0 books boys and girls, there are some
> "wizzards" but you'll still need to have some flash skills to make
> anything
> really cool.
>
> --
> Casey Dougall
> Web Applications Developer
> Ph: 518 743-9424  Fax: 743-0337
>
> Mannix Marketing Inc. 33 Park St. Third Floor, Glens Falls, New York 12801
>
> Marketing to New York State Destinations?
> We offer quality Travel Industry Directories, Including www.Albany.com,
> www.LakeGeorge.com & www.Saratoga.com
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245635
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Flex / Coldfusion question...

2006-07-06 Thread James Holmes
The easiet way to work out flex is to dowload the free trial and try
it. Work through the getting started tutorial - build the rss reader,
for example.

On 7/7/06, Will Tomlinson <[EMAIL PROTECTED]> wrote:
> I just spoke with a friend that said they knew someone who just bought Flex, 
> then returned it because they couldn't figure it out. I know this person 
> doesn't have CF installed.
>
> At CFUNITED, Flex was presented as something that just replaces HTML, and it 
> still needs CF server to interact with db's and such. Is this all it does? Is 
> it possible to use Flex on its own, without CF?
>
> Apparently, the Adobe site makes no mention of CF in the Flex sales material. 
> Maybe someone could explain a little further?

-- 
CFAJAX docs and other useful articles:
http://jr-holmes.coldfusionjournal.com/

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245634
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


OT: TinyMCE strange behavior.

2006-07-06 Thread Ian Skinner
I thought I would try here before I give the Tiny MCE Forum a try.

I have some strange behavior on a Form widget using the Tiny MCE editor.  The 
first time the form is submitted all the  tags are stripped.  If I go back 
with the stripped content in the editor and add the paragraphs back to the 
content then the editor does not strip them.

The original content is a paste from a MS Word document if that matters.

Is there some option or configuration that is doing this?  Is there some way I 
can get it to stop and leave the paragraphs alone the first time?


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245633
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: gmail and norton internet security

2006-07-06 Thread Casey Dougall
Gmail scans your email anyway. Why do you need another virus scanner for
your gmail?

http://mail.google.com/support/bin/answer.py?answer=25760


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245632
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Flex / Coldfusion question...

2006-07-06 Thread Casey Dougall
Get out your actionscript 3.0 books boys and girls, there are some
"wizzards" but you'll still need to have some flash skills to make anything
really cool.

-- 
Casey Dougall
Web Applications Developer
Ph: 518 743-9424  Fax: 743-0337

Mannix Marketing Inc. 33 Park St. Third Floor, Glens Falls, New York 12801

Marketing to New York State Destinations?
We offer quality Travel Industry Directories, Including www.Albany.com,
www.LakeGeorge.com & www.Saratoga.com


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245631
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Mailing List suggestions

2006-07-06 Thread Nick Tong - TalkWebSolutions.co.uk
Ray - possible a cheaky way (this is off the top of my head so you would
need to check) is that you could use say yahoos mailing list.  They have a
RSS feed that you could maninpulate the date from and display it ala your
clients website? - just a thought.

On 06/07/06, Ray Champagne <[EMAIL PROTECTED]> wrote:
>
> I have the need to implement a mailing list application for a client.
>
> Needs to be pretty simple:
>
> * Email based, much like this list
>
> * Ability to have searchable archives, much like this list (essentially
> I need this list with a few extras)
>
> * Unsubscribe capability, preferably with off-the-shelf capability to
> unsubscribe from particular threads.  I can modify this part, though.
>
> * Needs to be SQL Server 200 based.
>
> * And of course, free/open source is always nice.  ColdFusion (7)
> strongly preferred, but I'll listen to all suggestions.
>
> Ray
> --
> ~~~ Ray Champagne :: [EMAIL PROTECTED] ~~~
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245630
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: gmail and norton internet security

2006-07-06 Thread Nick Tong - TalkWebSolutions.co.uk
Thanks all.  I have used AVG for quite sometime on my other machine but
norton came with my laptop so i used that... i guess its time to switch -
whats a good firewall?

On 06/07/06, Munson, Jacob <[EMAIL PROTECTED]> wrote:
>
> > Guess it has :
> > http://free.grisoft.com/doc/avg-anti-virus-free/lng/us/tpl/v5:
> > "Realtime protection of files and e-mails"
>
> Sure, that's what their marketing says, but does it really work?  It
> didn't when I tested it a few months ago, but it might with the latest
> version.
>
>
> --
>
> This transmission may contain information that is privileged, confidential
> and/or exempt from disclosure under applicable law. If you are not the
> intended recipient, you are hereby notified that any disclosure, copying,
> distribution, or use of the information contained herein (including any
> reliance thereon) is STRICTLY PROHIBITED. If you received this transmission
> in error, please immediately contact the sender and destroy the material in
> its entirety, whether in electronic or hard copy format. Thank you. A1.
>
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245629
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Flex / Coldfusion question...

2006-07-06 Thread Rick Root
Will Tomlinson wrote:
> 
> Like, how? And why is CF not mentioned anywhere on the adobe site?
> 
> http://www.adobe.com/products/flex/productinfo/systemreqs/

CF isn't mentioned as a requirement for a very simple reason.

CF isn't required.

Flex apps can interact with all kinds of external data, including XML 
files, web services, and flash remoting (which *ALSO* doesn't require 
coldfusion).  So the backend to flex can be xml files, perl, php, asp, 
..net, python, java servlets, jsp, C... you name it.  if you can generate 
XML or build SOAP-based web services with a language - you can build a 
backend to Flex with it.

Rick

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245628
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Flex / Coldfusion question...

2006-07-06 Thread Will Tomlinson
K gotcha! 

Thanks!

Will

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245627
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Flex / Coldfusion question...

2006-07-06 Thread Denny Valliant
On 7/6/06, Will Tomlinson <[EMAIL PROTECTED]> wrote:

> At CFUNITED, Flex was presented as something that just replaces HTML, and
> it still needs CF server to interact with db's and such. Is this all it
> does?


Pretty much.  It's a font end / remote interface to X (X being Java, CF,
ASP, etc heck, flat files even).  I think. I may be mixing openlaszlo in
there too, but close enough, I figure.  It's an interface above all else.

Is it possible to use Flex on its own, without CF?


Yuppers.  The main benefit to CF integration is the RDS stuff,
auto-generation of DAOs and whatnot, I feel.
Ready made tools, if you will, vs. self rolled.

Apparently, the Adobe site makes no mention of CF in the Flex sales
> material. Maybe someone could explain a little further?


They want to target more than just CF.  And with a IDE like FB2, I mean,
wow, that's nice.  CF is mentioned, but downplayed, if I recall (which I
might not- I peruse a volume of info, and it bleeds a bit, so...).

But basicly yes, Flex is an interface to/for many things, not just CF.
**
Those wizards look pretty amazing though- many thx to the creators of those
instructional videos!


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245626
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Flex / Coldfusion question...

2006-07-06 Thread Will Tomlinson
Good stuff! This definitely helps!

Thanks much,
Will

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245625
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Flex / Coldfusion question...

2006-07-06 Thread Munson, Jacob
It is just an interface building language.  Can you write a standalone
HTML app, or do you have to have CF for that to work?  It's the same
idea. 

> -Original Message-
> From: Will Tomlinson [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, July 06, 2006 4:26 PM
> 
> >Yes you can use it on it's own.
> 
> Like, how? And why is CF not mentioned anywhere on the adobe site?
> 
> http://www.adobe.com/products/flex/productinfo/systemreqs/

This transmission may contain information that is privileged, confidential 
and/or exempt from disclosure under applicable law. If you are not the intended 
recipient, you are hereby notified that any disclosure, copying, distribution, 
or use of the information contained herein (including any reliance thereon) is 
STRICTLY PROHIBITED. If you received this transmission in error, please 
immediately contact the sender and destroy the material in its entirety, 
whether in electronic or hard copy format. Thank you. A1.



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245624
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Flex / Coldfusion question...

2006-07-06 Thread Ian Skinner
Flex can be used standalone if you aren't using data at all.

You can connect Flex to data back-ends with xml, web-services, the additional 
Flex Data Services component (a J2EE application) OR ColdFusion/Flash Remoting.

So there is much that can be done with Flex without ColdFusion.  Alternatively 
there are some very cool things that can be done with Flex and ColdFusion 
together.

 


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245623
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Flex / Coldfusion question...

2006-07-06 Thread Brad Wood
Flex is an interface only.  Flex is an xml markup (mxml) which is
complied to generate a flash movie (.swf).  It does not run any code on
the server, but instead is loaded on the client in the user's browser.
Flex is not CF in any way shape or form.  You can in fact build a flash
interface using Flex and no Cold Fusion.

Now, here's the catch, if you want to have server side interaction with
your flash front end (db calls, etc) then you are going to have to have
some web services in place which your flex front end can consume.  These
web services can really be written in anything you want.  It just to
happens that Cold Fusion works very well to write web accessible CFC's
for Flex to use flash remoting to access.  

Using a Flex (Flash) interface consuming Cold Fusion web services is ONE
WAY to use Flex.  Flex, however as a language, is not dependant in any
way on Cold Fusion, or any specific server side language.

Of course, Macrodobie tries to make it as easy as possible for people
out there to pair them together.  That makes it easier to integrate, and
is more money for them.  :)

Hope that helps a bit.  I know I grappled for a while about exactly how
Flex would fit into the market.  Another thing you will hear people say
is that Flex will replace CF.  That is in no way a true statement, since
they are two different technologies which can work hand in hand.

~Brad

-Original Message-
From: Will Tomlinson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 06, 2006 5:19 PM
To: CF-Talk
Subject: Flex / Coldfusion question...

I just spoke with a friend that said they knew someone who just bought
Flex, then returned it because they couldn't figure it out. I know this
person doesn't have CF installed. 

At CFUNITED, Flex was presented as something that just replaces HTML,
and it still needs CF server to interact with db's and such. Is this all
it does? Is it possible to use Flex on its own, without CF?

Apparently, the Adobe site makes no mention of CF in the Flex sales
material. Maybe someone could explain a little further? 

Thanks,
Will



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245622
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Flex / Coldfusion question...

2006-07-06 Thread Will Tomlinson
>Yes you can use it on it's own.

Like, how? And why is CF not mentioned anywhere on the adobe site?

http://www.adobe.com/products/flex/productinfo/systemreqs/

Thanks,
Will

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245621
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Flex / Coldfusion question...

2006-07-06 Thread Robertson-Ravo, Neil (RX)
Yes you can use it on it's own.






"This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Will Tomlinson <[EMAIL PROTECTED]>
To: CF-Talk 
Sent: Thu Jul 06 23:19:17 2006
Subject: Flex / Coldfusion question...

I just spoke with a friend that said they knew someone who just bought Flex,
then returned it because they couldn't figure it out. I know this person
doesn't have CF installed. 

At CFUNITED, Flex was presented as something that just replaces HTML, and it
still needs CF server to interact with db's and such. Is this all it does?
Is it possible to use Flex on its own, without CF?

Apparently, the Adobe site makes no mention of CF in the Flex sales
material. Maybe someone could explain a little further? 

Thanks,
Will



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245620
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Flex / Coldfusion question...

2006-07-06 Thread Will Tomlinson
I just spoke with a friend that said they knew someone who just bought Flex, 
then returned it because they couldn't figure it out. I know this person 
doesn't have CF installed. 

At CFUNITED, Flex was presented as something that just replaces HTML, and it 
still needs CF server to interact with db's and such. Is this all it does? Is 
it possible to use Flex on its own, without CF?

Apparently, the Adobe site makes no mention of CF in the Flex sales material. 
Maybe someone could explain a little further? 

Thanks,
Will

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245619
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Historical data reports

2006-07-06 Thread Dave Watts
> Thanks Dave. I have looked into OLAP in great depth, and I find it
> useful. However, can you tell how can I display reports created out of
> OLAP databases through a web based application? Is there a way I can
> map OLAP database to Coldfusion? I am totally clueless about it.

Well, unfortunately, this isn't especially easy from CF (unless you're using
BlueDragon.NET). The only way I'm aware of is the use of XML for Analysis
Provider:

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsql2k/htm
l/implementxap.asp

You could then use the JPivot JSP custom tag to render your OLAP navigation
interface:

http://jpivot.sourceforge.net/

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

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


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245618
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Calling a Web Service from CF

2006-07-06 Thread Bryan Stevenson
OK...and the code you are using to invoke it is.

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245617
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Calling a Web Service from CF

2006-07-06 Thread Richard Colman
Written by someone else ... 

-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 06, 2006 2:07 PM
To: CF-Talk
Subject: Re: Calling a Web Service from CF

Did you write the webservice or are you trying to consume one written by
someone else?

plz post any relevant code

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245616
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Calling a Web Service from CF

2006-07-06 Thread Bryan Stevenson
Did you write the webservice or are you trying to consume one written by 
someone 
else?

plz post any relevant code

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245615
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Old code woes

2006-07-06 Thread Bryan Stevenson
> 
> 
> 
> 
> 

yep...ain't cfparam handy ;-)

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245614
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Upgrade CFMX Devel to CF7

2006-07-06 Thread Elena Aminova
I need to know if anyone came upon any known issues while upgrading ColdFusion 
from CFMX to 7. 
We are now in the process of upgrading our Development/Test Server from CFMX 
6.1.0.83762 to CF7 (I assume it will be 7.02 - the latest, right?) 

The big question is: How will it impact our existing applications that are 
built in CFMX or will it affect them at all? What are the issues of upgrading 
to CF7 ( I am sure it was asked before, and someone must have done the upgrade 
and knows of issues, and any help on this is appreaciated, as i need to know 
all the risks before the upgrade takes place)
(We will only upgrade our Dev Server, and if all applications are ok, no bugs 
or errors, then we will upgrade our Production Server)

Also, what are the pros and cons for creating a separate instance of CF7 to 
test, as opposed to upgrading our development server (not including the big 
cost difference, which I am aware of)?

THANKS!

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245613
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Calling a Web Service from CF

2006-07-06 Thread Richard Colman
 
My first TRY failed. Can someone suggest a really rock-solid tutorial on how
to do thius?

TNX.

Rick Colman




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245612
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Historical data reports

2006-07-06 Thread Ken
Thanks Dave. I have looked into OLAP in great depth, and I find it
useful. However, can you tell how can I display reports created out of
OLAP databases through a web based application? Is there a way I can
map OLAP database to Coldfusion? I am totally clueless about it.
Please help.

Thx

On 7/5/06, Dave Watts <[EMAIL PROTECTED]> wrote:
> > Hi. We have a huge database for our website. SQL Server 2000.
> > There are certain reports/stats that the higher management
> > needs to view.
> > Much of the data is historical. I want to optimize database
> > look-ups for historical data. Basically store the historical
> > reports in a separate database so that any lookups are not
> > complex queries, but only static results outputted. Any
> > suggestions as to how this can be done?
>
> This kind of thing is exactly what OLAP and SQL Server Analysis Services are
> for. Basically, you have the option to install an OLAP server as well as the
> standard OLTP server. OLAP databases are denormalized "cubes", which make
> data mining a lot easier. You'll want to read all about OLAP and Analysis
> Services in SQL Server Books Online, but basically what you end up with is a
> separate database, into which you periodically import data from your OLTP
> (transactional) database.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
>
> Fig Leaf Software provides the highest caliber vendor-authorized
> instruction at our training centers in Washington DC, Atlanta,
> Chicago, Baltimore, Northern Virginia, or on-site at your location.
> Visit http://training.figleaf.com/ for more information!
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245611
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Old code woes

2006-07-06 Thread Snake
OK I just went through some of my most ancient code, so about this, we all
must have done this when we started.







--
russ
-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: 06 July 2006 20:31
To: CF-Talk
Subject: Re: Old code woes

I am sure we can all come up with classics from code we have seen/written..

My personal annoyance is this

 pisses me off no end..

 







"This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Bryan Stevenson <[EMAIL PROTECTED]>
To: CF-Talk 
Sent: Thu Jul 06 20:42:59 2006
Subject: Re: Old code woes

Now that my date from DB example has been raked over the coalshow's this

one...

Hardcoding the value of a variable (normally dynamically assigned  a value)
used in a condition to run or not run a block of codehardcoded to ensure
the code would NOT run.  Why not comment out the code??? ;-)

I suppose I could show some code examples from my intro to CF
course...amazing what students can come up with..hehe

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 






~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245610
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Old code woes

2006-07-06 Thread Snake
But this is about OLD CODE WOES, not NEW CODE WOES.
 

-Original Message-
From: Will Tomlinson [mailto:[EMAIL PROTECTED] 
Sent: 06 July 2006 20:35
To: CF-Talk
Subject: Re: Old code woes

If you want some REAL entertainment just peruse some of dave "the
worm"'s code. 

:)



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245609
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Mailing List suggestions

2006-07-06 Thread Ray Champagne
I have the need to implement a mailing list application for a client.

Needs to be pretty simple:

* Email based, much like this list

* Ability to have searchable archives, much like this list (essentially 
I need this list with a few extras)

* Unsubscribe capability, preferably with off-the-shelf capability to 
unsubscribe from particular threads.  I can modify this part, though.

* Needs to be SQL Server 200 based.

* And of course, free/open source is always nice.  ColdFusion (7) 
strongly preferred, but I'll listen to all suggestions.

Ray
-- 
~~~ Ray Champagne :: [EMAIL PROTECTED] ~~~

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245608
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Old code woes

2006-07-06 Thread Robertson-Ravo, Neil (RX)
Indeed you could, but that would mean using getUTCDate not GetDate :)

This is prob a prefered way however...



 



"This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Dave Watts <[EMAIL PROTECTED]>
To: CF-Talk 
Sent: Thu Jul 06 21:10:58 2006
Subject: RE: Old code woes

> This is good and bad example. You may want the date in the DB with an
> offset with multiple webservers in a follow the sun approach write to
> a single DB in one location.

Why wouldn't you just use GMT in the database, and have the application
servers determine the offset as appropriate?

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

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




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245607
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Old code woes

2006-07-06 Thread Dave Watts
> This is good and bad example. You may want the date in the DB with an
> offset with multiple webservers in a follow the sun approach write to
> a single DB in one location.

Why wouldn't you just use GMT in the database, and have the application
servers determine the offset as appropriate?

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

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


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245606
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Blog entry detailing upgrade from cf4.5 to cf 7.01

2006-07-06 Thread Matt Williams
Thanks for that link. I have a self-hosting client on 4.1. They plan to
upgrade to 7 soon (due to insitence and prodding of my own).

On 7/6/06, Robert Everland III <[EMAIL PROTECTED]> wrote:
>
> I know there are some people still on older versions of CF and this read
> may be worth your while.
>
>
> http://buckingkitty.wordpress.com/2006/05/07/coldfusion-upgrade-45-to-mx-701/
>
>
>
> Bob
>
>
-- 
Matt Williams
"It's the question that drives us."


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245605
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Old code woes

2006-07-06 Thread Robertson-Ravo, Neil (RX)
Lol






"This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Paul Vernon <[EMAIL PROTECTED]>
To: CF-Talk 
Sent: Thu Jul 06 20:58:52 2006
Subject: RE: Old code woes

> My personal annoyance is this
> 
>  pisses me off no end..

Stop doing it then :) hehe

Paul





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245604
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Old code woes

2006-07-06 Thread Paul Vernon
> My personal annoyance is this
> 
>  pisses me off no end..

Stop doing it then :) hehe

Paul



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245603
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Blog entry detailing upgrade from cf4.5 to cf 7.01

2006-07-06 Thread Robert Everland III
I know there are some people still on older versions of CF and this read may be 
worth your while.

http://buckingkitty.wordpress.com/2006/05/07/coldfusion-upgrade-45-to-mx-701/



Bob 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245602
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Old code woes

2006-07-06 Thread Robertson-Ravo, Neil (RX)
I am sure we can all come up with classics from code we have seen/written..

My personal annoyance is this

 pisses me off no end..

 







"This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Bryan Stevenson <[EMAIL PROTECTED]>
To: CF-Talk 
Sent: Thu Jul 06 20:42:59 2006
Subject: Re: Old code woes

Now that my date from DB example has been raked over the coalshow's this

one...

Hardcoding the value of a variable (normally dynamically assigned  a value)
used 
in a condition to run or not run a block of codehardcoded to ensure the
code 
would NOT run.  Why not comment out the code??? ;-)

I suppose I could show some code examples from my intro to CF
course...amazing 
what students can come up with..hehe

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245601
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Old code woes

2006-07-06 Thread Robertson-Ravo, Neil (RX)
That is not a true / valued comparison but yeah, it is a specific
requirement and agree 100% on that front.






"This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Snake <[EMAIL PROTECTED]>
To: CF-Talk 
Sent: Thu Jul 06 20:34:54 2006
Subject: RE: Old code woes

That is a very specific requirement.
You could use the same type of rule to say don't use stored procs and always
put your SQL inline.
But that would not be a good best practice either.

Snake 

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: 06 July 2006 20:01
To: CF-Talk
Subject: Re: Old code woes

This is good and bad example. You may want the date in the DB with an offset
with multiple webservers in a follow the sun approach write to a single DB
in one location.

A call to GetDate in this instance would lead to the same date/time for each
you may not want.






"This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Snake <[EMAIL PROTECTED]>
To: CF-Talk 
Sent: Thu Jul 06 20:01:21 2006
Subject: RE: Old code woes

Or passing the data to the database using #NOW()# instead of using the
database equivlant function, such as GetDate() 

-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
Sent: 06 July 2006 18:00
To: CF-Talk
Subject: Re: Old code woes

One of my favourites in other's code was getting the date from the database
instead of using Now() (trust meno reason to do this in the context of
the
app)

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 










~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245600
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Old code woes

2006-07-06 Thread Bryan Stevenson
Now that my date from DB example has been raked over the coalshow's this 
one...

Hardcoding the value of a variable (normally dynamically assigned  a value) 
used 
in a condition to run or not run a block of codehardcoded to ensure the 
code 
would NOT run.  Why not comment out the code??? ;-)

I suppose I could show some code examples from my intro to CF course...amazing 
what students can come up with..hehe

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245599
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Old code woes

2006-07-06 Thread Bryan Stevenson
I swear you two where married in a past life ;-)

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245598
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Old code woes

2006-07-06 Thread Snake
That is a very specific requirement.
You could use the same type of rule to say don't use stored procs and always
put your SQL inline.
But that would not be a good best practice either.

Snake 

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: 06 July 2006 20:01
To: CF-Talk
Subject: Re: Old code woes

This is good and bad example. You may want the date in the DB with an offset
with multiple webservers in a follow the sun approach write to a single DB
in one location.

A call to GetDate in this instance would lead to the same date/time for each
you may not want.






"This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Snake <[EMAIL PROTECTED]>
To: CF-Talk 
Sent: Thu Jul 06 20:01:21 2006
Subject: RE: Old code woes

Or passing the data to the database using #NOW()# instead of using the
database equivlant function, such as GetDate() 

-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
Sent: 06 July 2006 18:00
To: CF-Talk
Subject: Re: Old code woes

One of my favourites in other's code was getting the date from the database
instead of using Now() (trust meno reason to do this in the context of
the
app)

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 








~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245597
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Old code woes

2006-07-06 Thread Will Tomlinson
If you want some REAL entertainment just peruse some of dave "the worm"'s 
code. 

:)

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245596
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Old code woes

2006-07-06 Thread Brad Wood
Our DB and web servers are all in the same time zone, but there is code
where I had to get the data from the database, because I couldn't trust
my Linux admins to keep the correct system date on the Linux web
servers.  It really screwed up the company turn times when someone would
complete their work "tomorrow"!  :)

~Brad

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 06, 2006 2:01 PM
To: CF-Talk
Subject: Re: Old code woes

This is good and bad example. You may want the date in the DB with an
offset
with multiple webservers in a follow the sun approach write to a single
DB
in one location.

A call to GetDate in this instance would lead to the same date/time for
each
you may not want.






~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245595
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Old code woes

2006-07-06 Thread Robertson-Ravo, Neil (RX)
This is good and bad example. You may want the date in the DB with an offset
with multiple webservers in a follow the sun approach write to a single DB
in one location.

A call to GetDate in this instance would lead to the same date/time for each
you may not want.






"This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Snake <[EMAIL PROTECTED]>
To: CF-Talk 
Sent: Thu Jul 06 20:01:21 2006
Subject: RE: Old code woes

Or passing the data to the database using #NOW()# instead of using the
database equivlant function, such as GetDate() 

-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
Sent: 06 July 2006 18:00
To: CF-Talk
Subject: Re: Old code woes

One of my favourites in other's code was getting the date from the database
instead of using Now() (trust meno reason to do this in the context of
the
app)

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 






~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245594
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


jfreechart

2006-07-06 Thread Turetsky, Seth
Anyone use CF with jfreechart?  I'm trying to create a MeterPlot, but it's 
coming up blank.

I'd RTFM if there was a better FM :)

-seth

==
Please access the attached hyperlink for an important electronic communications 
disclaimer: 

http://www.credit-suisse.com/legal/en/disclaimer_email_ib.html
==


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245593
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: iframe scrolling

2006-07-06 Thread Snake
Different doctypes will produce different results.
Try reading this.

http://www.alistapart.com/stories/doctype/

-
Snake 

-Original Message-
From: Brad Wood [mailto:[EMAIL PROTECTED] 
Sent: 06 July 2006 19:55
To: CF-Talk
Subject: RE: iframe scrolling

Yeah, I mentioned that in my original post.  When I remove the doctype, it
works great.  My example at http://bradwood.com/test.cfm has the doctype as
the first line of the document and it has no line breaks in it.  However,
despite all that, it doesn't render as expected on my browser.

~Brad

-Original Message-
From: Sandra Clark [mailto:[EMAIL PROTECTED]
Sent: Thursday, July 06, 2006 1:39 PM
To: CF-Talk
Subject: RE: iframe scrolling

Its your doctype, you are in undefined mode in IE.

when I had Topstyle insert the doctype it seems to work fine in IE (keep it
on one line and make sure it is the first line in your output.

http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> 





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245592
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Old code woes

2006-07-06 Thread Snake
Or passing the data to the database using #NOW()# instead of using the
database equivlant function, such as GetDate() 

-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
Sent: 06 July 2006 18:00
To: CF-Talk
Subject: Re: Old code woes

One of my favourites in other's code was getting the date from the database
instead of using Now() (trust meno reason to do this in the context of
the
app)

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245591
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Old code woes

2006-07-06 Thread Everett, Al \(NIH/NIGMS\) [C]
http://ray.camdenfamily.com/index.cfm/2006/7/6/Your-mother-writes-code-s
o-bad

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245590
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: iframe scrolling

2006-07-06 Thread Brad Wood
Yeah, I mentioned that in my original post.  When I remove the doctype,
it works great.  My example at http://bradwood.com/test.cfm has the
doctype as the first line of the document and it has no line breaks in
it.  However, despite all that, it doesn't render as expected on my
browser.

~Brad

-Original Message-
From: Sandra Clark [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 06, 2006 1:39 PM
To: CF-Talk
Subject: RE: iframe scrolling

Its your doctype, you are in undefined mode in IE.

when I had Topstyle insert the doctype it seems to work fine in IE
(keep it
on one line and make sure it is the first line in your output.

http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245589
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: How do "Phishermen" send an email from a legitimate domain?

2006-07-06 Thread John Dowdell
Rick Faircloth wrote:
> How can a phishing email be sent from [EMAIL PROTECTED] ?  How can
> the PayPal.com domain be used if their email servers are set up correctly?

If you're looking at the "FROM:" field in your emailer's UI, then anyone 
can write anything there, agreed.

But most of the phishing scams I've seen have been revealed by looking 
at the first (bottom-most) "RECEIVED:" field in the message headers. 
This shows the actual domain from which the message was sent. (How can 
you see email headers? It varies with the emailer you use, and whether 
you accept HTML-formatted email or display everything as ASCII. Examples 
of reading headers are at http://www.stopspam.org/email/headers.html .)

If you find that the spam actually lists your own domain in there, then 
that usually implies a security breach at your end. But most of these 
cases are just a message from evilGreedy.org with a FROM: field listing 
a good person's name and domain. Emailers have been created with certain 
problems like this... the acceptance of tons of quoted sigs in an 
outbound message is another such design flaw in email software. It'd be 
easy for email software to compare the originating domain with the 
professed domain

jd









-- 
John Dowdell . Adobe Developer Support . San Francisco CA USA
Weblog: http://weblogs.macromedia.com/jd
Aggregator: http://weblogs.macromedia.com/mxna
Technotes: http://www.macromedia.com/support/
Spam killed my private email -- public record is best, thanks.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245588
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: calling one function inside another

2006-07-06 Thread Raymond Camden
Even though all the CFCs exist in the app scope, when you are _inside_
another CFC you shouldn't address the other CFCs that way. If you want
an instance of Conference CFC, you shouldmake a new instance of it.
This would be best inside the init() function so it's only made once.

On 7/6/06, Crow T. Robot <[EMAIL PROTECTED]> wrote:
> Actually, all the CFC's are loaded into the application scope, which is
> why the whole thing is confusing me.  In application.cfm, here is one
> example of the code:
>
> 
>  createObject("component","cfcs.conference").init(application.settings)>
>
> Somaybe I'm missing a step in accessing it inside the users component?
>
> Matt Williams wrote:
> > Unless the Conferences component is in the session or application scope,
> > you'll need to create an instance of the conferences.cfc before you can call
> > a method in it.
> >
> > 
> > 
> >
> >
> >
> > On 7/6/06, Crow T. Robot <[EMAIL PROTECTED]> wrote:
> >> Using Ray Camden's Galleon software, and I need to modify it a little.
> >>
> >> I've got a user.cfc file that takes care of all user functions.  I have
> >> another, conferences.cfc, that takes care of all conferences.  Now,
> >> after a user is inserted using the addUser method inside users.cfc, I
> >> have the need to call the GetConferences method that exists inside
> >> conferences.cfc inside the addUser function so that I can subscribe the
> >> user to all the conferences when they sign up.  However, before I can
> >> get into that, I need to know why it seems like I am not able to call
> >> the GetConferences() function from with the users.cfc.  I keep getting
> >> undefined errors unless I copy the GetConferences function into the
> >> users.cfc file.  After that, it works fine.
> >>
> >> I'm quite new to the cfc thing, so any help in the underlying logic and
> >> the "whys" of the above behavior would be great.
> >>
> >> Thanks
> >>
> >>
> >
> >
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245587
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFINVOKE/CFHTTP peer not authenticated

2006-07-06 Thread Bryan Stevenson
Thanks again Russ...makes sense...and I'll leave the SSL cert diagnosing to the 
guy that installed it ;-)

Cheers

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245586
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Old code woes

2006-07-06 Thread Bryan Stevenson
> Not that I don't trust you, but it's not a bad idea to have your database
> manage all datetime values, unless you're sure that your application server
> and database server use the same synchronized timeserver.
> 
> Dave Watts, CTO, Fig Leaf Software 
> http://www.figleaf.com/ 
> 

Oh no...not you too Dave ;-)

shared hosting...Access on the webserver...all dates/times the same ;-)

Trust me Davewhen the code is all on one line..

I knew I should have picked a different bad code example ;-)

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245585
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: calling one function inside another

2006-07-06 Thread Crow T. Robot
Yea, I was just about to write in that using it that way works.

Thanks, everyone.

Matt Williams wrote:
> Did you try this?
> 
> 
> 
> On 7/6/06, Crow T. Robot <[EMAIL PROTECTED]> wrote:
>> Actually, all the CFC's are loaded into the application scope, which is
>> why the whole thing is confusing me.  In application.cfm, here is one
>> example of the code:
>>
>> 
>> > createObject("component","cfcs.conference").init(application.settings)>
>>
>> Somaybe I'm missing a step in accessing it inside the users component?
>>
>> Matt Williams wrote:
>>> Unless the Conferences component is in the session or application scope,
>>> you'll need to create an instance of the conferences.cfc before you can
>> call
>>> a method in it.
>>>
>>> 
>>> 
>>>
>>>
>>>
>>> On 7/6/06, Crow T. Robot <[EMAIL PROTECTED]> wrote:
 Using Ray Camden's Galleon software, and I need to modify it a little.

 I've got a user.cfc file that takes care of all user functions.  I have
 another, conferences.cfc, that takes care of all conferences.  Now,
 after a user is inserted using the addUser method inside users.cfc, I
 have the need to call the GetConferences method that exists inside
 conferences.cfc inside the addUser function so that I can subscribe the
 user to all the conferences when they sign up.  However, before I can
 get into that, I need to know why it seems like I am not able to call
 the GetConferences() function from with the users.cfc.  I keep getting
 undefined errors unless I copy the GetConferences function into the
 users.cfc file.  After that, it works fine.

 I'm quite new to the cfc thing, so any help in the underlying logic and
 the "whys" of the above behavior would be great.

 Thanks


>>>
>>
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245584
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: iframe scrolling

2006-07-06 Thread Sandra Clark
Its your doctype, you are in undefined mode in IE.

when I had Topstyle insert the doctype it seems to work fine in IE  (keep it
on one line and make sure it is the first line in your output.

http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> 


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

CSS HANDS ON
New York City, October 10-13, 2006.
http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&id=1


-Original Message-
From: Brad Wood [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 06, 2006 2:18 PM
To: CF-Talk
Subject: RE: iframe scrolling

Well actually, you gave ME a long answer to why my CSS was bad, but I was a
reply to the original poster, and I gave an example of the CSS that is
working in an application I have built for my intranet.

Brad Wood has not posted any CSS that he may or may not be using, so your
answer could be a bit confusing, even though it may actually be a good
answer for Brad.



I figured out which parts were meant for me :)

Well, it works great in firefox-- go figure.  I have implanted the CSS which
was suggested to no avail.  Once again I am on IE 6.0 and here is a test you
can view:
http://bradwood.com/test.cfm

~Brad




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245583
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFINVOKE/CFHTTP peer not authenticated

2006-07-06 Thread Russ
If the issue is a corrupted or an outdated cert store, then updating the jvm
should solve it.  If it's something on an OS level or a certificate level,
then updating the jvm probably won't help. 

Russ

> -Original Message-
> From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 06, 2006 2:30 PM
> To: CF-Talk
> Subject: Re: CFINVOKE/CFHTTP peer not authenticated
> 
> > Alternatively you can just install a new jdk and have coldfusion use
> that
> > (you will probably have to import the cert again if it's not trusted
> > automatically).  Make sure you only install a supported jdk version as
> newer
> > versions break some cf features.  (I believe Dave Watts mentioned that
> you
> > can only use 1.4.2_07 as the latest supported version, but don't quote
> me on
> > that).  You can download previous version of java at
> > http://java.sun.com/products/archive/
> 
> BTW Russ...are you saying that updating the JVM will just make it go away?
> 
> Bryan Stevenson B.Comm.
> VP & Director of E-Commerce Development
> Electric Edge Systems Group Inc.
> phone: 250.480.0642
> fax: 250.480.1264
> cell: 250.920.8830
> e-mail: [EMAIL PROTECTED]
> web: www.electricedgesystems.com
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245582
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Debugging per request

2006-07-06 Thread Russ
What I'm asking is if the X-Forwarded-For header is set.  If it is, then you
can write a simple jrun filter that replaces the cgi.REMOTE_ADDR with a
value from the X-Forwarded-For header.  This is what we're doing and it's
been working fairly well (there's a small bug in my code where if a user is
going through a proxy or several proxies, his ip address will show up as
multiple ips, but even that is better then just seeing the proxy's ip
address).  

Russ

> -Original Message-
> From: Dave Watts [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, July 05, 2006 7:10 PM
> To: CF-Talk
> Subject: RE: Debugging per request
> 
> > I'm not so sure... I'm not exactly sure what an application
> > proxy is, but is it setting the proper headers with the
> > original client ip?
> 
> Probably not, according to the original poster. This is common with
> proxies,
> and can be a useful behavior.
> 
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> 
> Fig Leaf Software provides the highest caliber vendor-authorized
> instruction at our training centers in Washington DC, Atlanta,
> Chicago, Baltimore, Northern Virginia, or on-site at your location.
> Visit http://training.figleaf.com/ for more information!
> 
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245581
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Algorithm / Data dudes

2006-07-06 Thread Steve Brownlee
Never had to deal with data of this structure and was hoping some of you
geniuses had done something similar already and had an elegant solution.

Working on Pricing Sheets.  For those who don't know what they are, from
a data viewpoint, they're simply Excel spreadsheets.
- Column Headers
- Row Headers
- Two-dimentional table of data

I'm trying to think of the most efficient way to store this data in a CF
memory construct (struct/array).

My first thought was simply a four-dimensional array, but then I
starting considering a more code-friendly(?) structure where row headers
are in one key, column headers in another and the data in a
two-dimentional array in the 3rd.  However, that seems like a lot of
additional logic to match up headers with the data.

If you've done something like this before, I'd greatly appreciate any
wisdom or advice you can pass my way.


Steve "The Boss" Brownlee
http://www.orbwave.com/cfjboss



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245580
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFINVOKE/CFHTTP peer not authenticated

2006-07-06 Thread Bryan Stevenson
> Alternatively you can just install a new jdk and have coldfusion use that
> (you will probably have to import the cert again if it's not trusted
> automatically).  Make sure you only install a supported jdk version as newer
> versions break some cf features.  (I believe Dave Watts mentioned that you
> can only use 1.4.2_07 as the latest supported version, but don't quote me on
> that).  You can download previous version of java at
> http://java.sun.com/products/archive/

BTW Russ...are you saying that updating the JVM will just make it go away?

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245579
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: calling one function inside another

2006-07-06 Thread Matt Williams
Did you try this?



On 7/6/06, Crow T. Robot <[EMAIL PROTECTED]> wrote:
>
> Actually, all the CFC's are loaded into the application scope, which is
> why the whole thing is confusing me.  In application.cfm, here is one
> example of the code:
>
> 
>  createObject("component","cfcs.conference").init(application.settings)>
>
> Somaybe I'm missing a step in accessing it inside the users component?
>
> Matt Williams wrote:
> > Unless the Conferences component is in the session or application scope,
> > you'll need to create an instance of the conferences.cfc before you can
> call
> > a method in it.
> >
> > 
> > 
> >
> >
> >
> > On 7/6/06, Crow T. Robot <[EMAIL PROTECTED]> wrote:
> >> Using Ray Camden's Galleon software, and I need to modify it a little.
> >>
> >> I've got a user.cfc file that takes care of all user functions.  I have
> >> another, conferences.cfc, that takes care of all conferences.  Now,
> >> after a user is inserted using the addUser method inside users.cfc, I
> >> have the need to call the GetConferences method that exists inside
> >> conferences.cfc inside the addUser function so that I can subscribe the
> >> user to all the conferences when they sign up.  However, before I can
> >> get into that, I need to know why it seems like I am not able to call
> >> the GetConferences() function from with the users.cfc.  I keep getting
> >> undefined errors unless I copy the GetConferences function into the
> >> users.cfc file.  After that, it works fine.
> >>
> >> I'm quite new to the cfc thing, so any help in the underlying logic and
> >> the "whys" of the above behavior would be great.
> >>
> >> Thanks
> >>
> >>
> >
> >
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245578
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: iframe scrolling

2006-07-06 Thread Brad Wood
You know, I've done that before and it's not too bad of an idea.  I had
forgotten about it to use here though.  What code do you have?  (It's
probably prettier than my last attempt to do that).

~Brad

-Original Message-
From: Gareth [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 06, 2006 1:15 PM
To: CF-Talk
Subject: Re: iframe scrolling

Someone recently pointed me to this nice little piece of JS which 
automatically sets the height of an iframe to exactly accomodate the
source 
content. AFAIK it only correctly resizes the frame if the source page is

local (from same site) but if that's the case for you it would allow you
to 
avoid scroll bars altogther. BTW, the resizing is dynamic so if the
source 
changes so does the height of the frame.


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245577
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Old code woes

2006-07-06 Thread Dave Watts
> One of my favourites in other's code was getting the date from the
> database instead of using Now() (trust meno reason to do this in 
> the context of the app)

Not that I don't trust you, but it's not a bad idea to have your database
manage all datetime values, unless you're sure that your application server
and database server use the same synchronized timeserver.

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

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



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245576
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFINVOKE/CFHTTP peer not authenticated

2006-07-06 Thread Russ
I believe that in order for an intermediate certificate to work properly on
IIS, you need to import it into windows certificate store under trusted
intermediate certificates.  If you have an old certificate in there, that
might explain why you're seeing different things on different places.  (For
example your browser might have the intermediate certificate already, or you
have chosen to trust that certificate locally).  

Russ

> -Original Message-
> From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 06, 2006 1:49 PM
> To: CF-Talk
> Subject: Re: CFINVOKE/CFHTTP peer not authenticated
> 
> Thanks Russ...
> 
> I'm not an SSL expert and am having some difficulty interpreting some
> things I'm
> seeing.
> 
> When I export the cert and view open it, I see different information if
> it's on
> my desktop than what I see when it's opened on the web server it came
> fromand yet more different details when opened via IIS.
> 
> I have seen some indication that what I suspect are root/intermeadiate
> certs
> that have expired, but the cert still works fine via a browser.  Even if
> they
> have expired, the dates indicate they expired BEFORE I applied the initial
> fix
> that worked.
> 
> So for now I'm waiting on the clients IIS/SSL guy to have a look at
> determine if
> there is an issue with any of the certsthen at least I'll know for
> sure it
> is or is not a cert issue (instead of a keystore issue).
> 
> Hope that made sense (or sparks a "I see the problem" in someone) ;-)
> 
> Cheers
> 
> Bryan Stevenson B.Comm.
> VP & Director of E-Commerce Development
> Electric Edge Systems Group Inc.
> phone: 250.480.0642
> fax: 250.480.1264
> cell: 250.920.8830
> e-mail: [EMAIL PROTECTED]
> web: www.electricedgesystems.com
> 
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245575
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: iframe scrolling

2006-07-06 Thread Brad Wood
Well actually, you gave ME a long answer to why my CSS was bad, but I
was a reply to the original poster, and I gave an example of the CSS
that is working in an application I have built for my intranet.

Brad Wood has not posted any CSS that he may or may not be using, so
your answer could be a bit confusing, even though it may actually be a
good answer for Brad.



I figured out which parts were meant for me :)

Well, it works great in firefox-- go figure.  I have implanted the CSS
which was suggested to no avail.  Once again I am on IE 6.0 and here is
a test you can view:
http://bradwood.com/test.cfm

~Brad


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245574
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: iframe scrolling

2006-07-06 Thread Gareth
Err, forgot something me thinks:

http://www.dynamicdrive.com/dynamicindex17/iframessi2.htm


- Original Message - 
From: "Ian Skinner" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, July 06, 2006 5:35 PM
Subject: RE: iframe scrolling


Can anyone tell me why IE tries to scroll both ways ONLY when there is a 
doctype present in the framed page?

I'm not sure why the doctype has an effect or then that it does make IE or 
standards compliant, so maybe when the IE can parse the document is quirks 
mode it has a different behavior.

The most likely the issue is that when the vertical scroll bar appears it 
squeezes the horizontal space of the content inside the frame, thus forcing 
the horizontal scroll bar to accommodate the content squeezed by the space 
for the vertical scroll control.  If you can control the size of the space 
of the container and the content so that it has a place holder for the 
vertical scroll control so that the content does not get squeezed maybe this 
will help.





--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-

"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message.






~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245573
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: iframe scrolling

2006-07-06 Thread Gareth
Someone recently pointed me to this nice little piece of JS which 
automatically sets the height of an iframe to exactly accomodate the source 
content. AFAIK it only correctly resizes the frame if the source page is 
local (from same site) but if that's the case for you it would allow you to 
avoid scroll bars altogther. BTW, the resizing is dynamic so if the source 
changes so does the height of the frame.

- Original Message - 
From: "Ian Skinner" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, July 06, 2006 5:35 PM
Subject: RE: iframe scrolling


Can anyone tell me why IE tries to scroll both ways ONLY when there is a 
doctype present in the framed page?

I'm not sure why the doctype has an effect or then that it does make IE or 
standards compliant, so maybe when the IE can parse the document is quirks 
mode it has a different behavior.

The most likely the issue is that when the vertical scroll bar appears it 
squeezes the horizontal space of the content inside the frame, thus forcing 
the horizontal scroll bar to accommodate the content squeezed by the space 
for the vertical scroll control.  If you can control the size of the space 
of the container and the content so that it has a place holder for the 
vertical scroll control so that the content does not get squeezed maybe this 
will help.





--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-

"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message.






~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245572
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: iframe scrolling

2006-07-06 Thread Sandra Clark
Ah, sorry, I thought the stuff was Brad's.  My apologies 


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

CSS HANDS ON
New York City, October 10-13, 2006.
http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&id=1


-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 06, 2006 2:04 PM
To: CF-Talk
Subject: RE: iframe scrolling

I gave you the answer already. (a long with other stuff you didn't ask for,
but will probably make your CSS life a lot easier in the long run).

To paraphrase

set overflow:scroll to overflow:auto


Well actually, you gave ME a long answer to why my CSS was bad, but I was a
reply to the original poster, and I gave an example of the CSS that is
working in an application I have built for my intranet.

Brad Wood has not posted any CSS that he may or may not be using, so your
answer could be a bit confusing, even though it may actually be a good
answer for Brad.

--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any attachments is for the
sole use of the intended
recipient(s) and may contain confidential and privileged information. Any
unauthorized review, use, disclosure or distribution is prohibited. If you
are not the intended recipient, please contact the sender and delete any
copies of this message. 






~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245571
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Where do we webservice exceptions go?

2006-07-06 Thread Jon Gunnip
Tom,

OnError() in Application.cfc is ignored for webservices.  The entire
Application.cfc isn't ignored for web services, however, since you can
do things in OnRequestStart().  I used the following test component.

I didn't try the site-wide error handler, but I assume since a
webservice does not return HTML to the requestor, it would not work
either.

Jon





  
  



  
  
  




On 7/6/06, Tom Chiverton <[EMAIL PROTECTED]> wrote:
> On Wednesday 05 July 2006 18:28, Jon Gunnip wrote:
> > I've grep'd arround and I can't find it.  We could implement our own
> > try/catch with logging in all webservices, but I'm hoping that is not
> > necessary.
>
> There is no other exception handler swallowing it (server setting,
> Application.cfm/cfc) ?
>
> --
> Tom Chiverton
>
> 
>
> This email is sent for and on behalf of Halliwells LLP.
>
> Halliwells LLP is a limited liability partnership registered in England and 
> Wales under registered number OC307980 whose registered office address is at 
> St James's Court Brown Street Manchester M2 2JF.  A list of members is 
> available for inspection at the registered office. Any reference to a partner 
> in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by 
> the Law Society.
>
> CONFIDENTIALITY
>
> This email is intended only for the use of the addressee named above and may 
> be confidential or legally privileged.  If you are not the addressee you must 
> not read it and must not use any information contained in nor copy it nor 
> inform any person other than Halliwells LLP or the addressee of its existence 
> or contents.  If you have received this email in error please delete it and 
> notify Halliwells LLP IT Department on 0870 365 8008.
>
> For more information about Halliwells LLP visit www.halliwells.com.
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245568
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: calling one function inside another

2006-07-06 Thread Crow T. Robot
Actually, all the CFC's are loaded into the application scope, which is 
why the whole thing is confusing me.  In application.cfm, here is one 
example of the code:




Somaybe I'm missing a step in accessing it inside the users component?

Matt Williams wrote:
> Unless the Conferences component is in the session or application scope,
> you'll need to create an instance of the conferences.cfc before you can call
> a method in it.
> 
> 
> 
> 
> 
> 
> On 7/6/06, Crow T. Robot <[EMAIL PROTECTED]> wrote:
>> Using Ray Camden's Galleon software, and I need to modify it a little.
>>
>> I've got a user.cfc file that takes care of all user functions.  I have
>> another, conferences.cfc, that takes care of all conferences.  Now,
>> after a user is inserted using the addUser method inside users.cfc, I
>> have the need to call the GetConferences method that exists inside
>> conferences.cfc inside the addUser function so that I can subscribe the
>> user to all the conferences when they sign up.  However, before I can
>> get into that, I need to know why it seems like I am not able to call
>> the GetConferences() function from with the users.cfc.  I keep getting
>> undefined errors unless I copy the GetConferences function into the
>> users.cfc file.  After that, it works fine.
>>
>> I'm quite new to the cfc thing, so any help in the underlying logic and
>> the "whys" of the above behavior would be great.
>>
>> Thanks
>>
>>
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245570
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: iframe scrolling

2006-07-06 Thread Brad Wood
I tried that after you posted it and I didn't see a change.  

I tried it in a style="" attribute, and in a style block applied through
a class="".

I'm beginning to wonder if I have some CSS elsewhere overriding that, or
if I have a stupid typo somewhere keeping my CSS from being applied.

~Brad

-Original Message-
From: Sandra Clark [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 06, 2006 12:53 PM
To: CF-Talk
Subject: RE: iframe scrolling

I gave you the answer already. (a long with other stuff you didn't ask
for,
but will probably make your CSS life a lot easier in the long run).

To paraphrase

set overflow:scroll to overflow:auto

 


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

CSS HANDS ON
New York City, October 10-13, 2006.
http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&id=
1


-Original Message-
From: Brad Wood [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 06, 2006 1:35 PM
To: CF-Talk
Subject: RE: iframe scrolling

Yes, the amount of horizontal scroll seems to roughly match the width of
the
vertical scroll bar.

My current doctype is 

http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>

I tried a few others, but they didn't seems to make a difference.

~Brad

-Original Message-
From: Rob Wilkerson [mailto:[EMAIL PROTECTED]
Sent: Thursday, July 06, 2006 12:28 PM
To: CF-Talk
Subject: Re: iframe scrolling

What doctype are you using?  In XTHML strict or transitional, IE behaves
differently.  The 1/4" scroll is indicative of the horizontal scrollbar
compensating for the presence of the vertical scrollbar.
The scrolling distance is approximately the size of the vertical
scrollbar,
right?

On 7/6/06, Ian Skinner <[EMAIL PROTECTED]> wrote:
> Here is the CSS I use on a DHTML popup div that only scrolls
vertically in IE.  It is based on DIV's and DL's not IFRAME's so I do
not
know if it will help or not.  But the if you look at the width of the
basic
div (div#defList) is 300px and the width of the dl inside it
(div#defList
dl) is 268px allowing 32px for the scroll bar.
>
> div#defList
> {
> width: 300px;
> height: 200px;
> position: absolute;
> top: 50%;
> left: 50%;
> margin-top: -75px;
> margin-left: -150px;
> padding: 0;
> border: 2px solid #006;
> background-color: white;
> text-align: center;
>
> z-index:2000;
> }
>
> div#defList h2
> {
> border: 0;
> font-size: 100%;
> position: relative;
> }
>
> div#defList h2 a
> {
> position: absolute;
> background-color: #DDD;
> color: black;
> top: 0;
> right: 0;
> font-size: smaller;
> padding: .25em;
> border: 1px solid black;
> text-decoration: none;
> }
>
> div#defList dl
> {
> margin: 0;
> padding: 0 1em;
> height: 174px;
> width: 268px;
> position: absolute;
> bottom: 0;
> left: 0;
> text-align: left;
> overflow: scroll;
> }
>
>
> --
> Ian Skinner
> Web Programmer
> BloodSource
> www.BloodSource.org
> Sacramento, CA
>
> -
> | 1 |   |
> -  Binary Soduko
> |   |   |
> -
>
> "C code. C code run. Run code run. Please!"
> - Cynthia Dunning
>
> Confidentiality Notice:  This message including any attachments is for

> the sole use of the intended
> recipient(s) and may contain confidential and privileged information. 
> Any unauthorized review, use, disclosure or distribution is 
> prohibited. If you are not the intended recipient, please contact the 
> sender and delete any copies of this message.
>
>
>
>
> 







~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245569
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: calling one function inside another

2006-07-06 Thread Josh Nathanson
Also the cfinvoke tag will work if you like that better -- from within your 
addUser function:


-- any arguments, use cfinvokeargument --


-- Josh


- Original Message - 
From: "Cutter (CFRelated)" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, July 06, 2006 10:47 AM
Subject: Re: calling one function inside another


> Yes, you may call function of other cfc's. But, like working with class
> files in java or C++, if the file has no reference to instantiate that
> object (conferences) then it won't find the function. You will need to
> create an object instance [variables.conferences =
> createobject("component","conferences").init(dsn)] prior to calling any
> functions of the object [user.arrConferences =
> variables.conferences.GetConferences(userID)].
>
> Cutter
> __
> http://blog.cutterscrossing.com
>
> Crow T. Robot wrote:
>> Using Ray Camden's Galleon software, and I need to modify it a little.
>>
>> I've got a user.cfc file that takes care of all user functions.  I have
>> another, conferences.cfc, that takes care of all conferences.  Now,
>> after a user is inserted using the addUser method inside users.cfc, I
>> have the need to call the GetConferences method that exists inside
>> conferences.cfc inside the addUser function so that I can subscribe the
>> user to all the conferences when they sign up.  However, before I can
>> get into that, I need to know why it seems like I am not able to call
>> the GetConferences() function from with the users.cfc.  I keep getting
>> undefined errors unless I copy the GetConferences function into the
>> users.cfc file.  After that, it works fine.
>>
>> I'm quite new to the cfc thing, so any help in the underlying logic and
>> the "whys" of the above behavior would be great.
>>
>> Thanks
>>
>>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245567
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: iframe scrolling

2006-07-06 Thread Ian Skinner
I gave you the answer already. (a long with other stuff you didn't ask for, but 
will probably make your CSS life a lot easier in the long run).

To paraphrase

set overflow:scroll to overflow:auto


Well actually, you gave ME a long answer to why my CSS was bad, but I was a 
reply to the original poster, and I gave an example of the CSS that is working 
in an application I have built for my intranet.

Brad Wood has not posted any CSS that he may or may not be using, so your 
answer could be a bit confusing, even though it may actually be a good answer 
for Brad.

--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245566
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFINVOKE/CFHTTP peer not authenticated

2006-07-06 Thread Dave Watts
> (I believe Dave Watts mentioned that you can only use 1.4.2_07 as the 
> latest supported version, but don't quote me on that).

Now, the latest supported version is 1.4.2_09.

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

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


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245565
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: iframe scrolling

2006-07-06 Thread Sandra Clark
The reason it is bad to mix is when people who can't see your typeface
decide to increase the font size in their browser (and a lot of us do that
when the font size is too small), that a mixture of absolute values and
relative values don't work well to keep your layout relative to the font
size.  Relative values will allow for a fluid layout that flows with the
size of the font, absolute values will not.  So by mixing these items, some
of your parts will flow and some will not, which will make for a very
lopsided layout at font sizes that are other than you choose.  (and a lot of
people do choose to increase font sizes).

In terms of moving it, use the offsets only.  CSS is as much an art as a
science so you have to play, but start at 45% and work your offset up or
down from that. The offsets don't have to match. Also remember that when
using an absolutely positioned div, that that div is positioned relative to
the containing parent which is not statically positioned. (position:relative
or position:absolute), so you also need to make sure that the div is
positioned so that it is (structurally speaking) contained only within  the
 tag and not any other tags around it that it might be positioned
relative to. 


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility 
CSS HANDS ON
New York City, October 10-13, 2006.
http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&id=1

Why is it to mix, it does exactly what I want it to do.  Now this may not
work very widely but this is an Intranet application where I have knowledge
of what browsers I am working with.  My logic is that by placing the
container top: 50% and left: 50%, this places the div layer in the middle of
the browser, but it places the top left corner of the div in the middle.
With the negative margins each 1/2 of the width and height move the middle
of the div layer to the middle of the browser.  How would I do that with
positive values?

I'll check out the scroll: auto, but I currently have only one vertical
scroll bar, albeit in the limited set of browsers I am concerned with; again
the advantage of a strictly controlled intranet environment of a small
company.



--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245564
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: calling one function inside another

2006-07-06 Thread Matt Williams
Unless the Conferences component is in the session or application scope,
you'll need to create an instance of the conferences.cfc before you can call
a method in it.






On 7/6/06, Crow T. Robot <[EMAIL PROTECTED]> wrote:
>
> Using Ray Camden's Galleon software, and I need to modify it a little.
>
> I've got a user.cfc file that takes care of all user functions.  I have
> another, conferences.cfc, that takes care of all conferences.  Now,
> after a user is inserted using the addUser method inside users.cfc, I
> have the need to call the GetConferences method that exists inside
> conferences.cfc inside the addUser function so that I can subscribe the
> user to all the conferences when they sign up.  However, before I can
> get into that, I need to know why it seems like I am not able to call
> the GetConferences() function from with the users.cfc.  I keep getting
> undefined errors unless I copy the GetConferences function into the
> users.cfc file.  After that, it works fine.
>
> I'm quite new to the cfc thing, so any help in the underlying logic and
> the "whys" of the above behavior would be great.
>
> Thanks
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245563
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: iframe scrolling

2006-07-06 Thread Sandra Clark
I gave you the answer already. (a long with other stuff you didn't ask for,
but will probably make your CSS life a lot easier in the long run).

To paraphrase

set overflow:scroll to overflow:auto

 


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

CSS HANDS ON
New York City, October 10-13, 2006.
http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&id=1


-Original Message-
From: Brad Wood [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 06, 2006 1:35 PM
To: CF-Talk
Subject: RE: iframe scrolling

Yes, the amount of horizontal scroll seems to roughly match the width of the
vertical scroll bar.

My current doctype is 

http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>

I tried a few others, but they didn't seems to make a difference.

~Brad

-Original Message-
From: Rob Wilkerson [mailto:[EMAIL PROTECTED]
Sent: Thursday, July 06, 2006 12:28 PM
To: CF-Talk
Subject: Re: iframe scrolling

What doctype are you using?  In XTHML strict or transitional, IE behaves
differently.  The 1/4" scroll is indicative of the horizontal scrollbar
compensating for the presence of the vertical scrollbar.
The scrolling distance is approximately the size of the vertical scrollbar,
right?

On 7/6/06, Ian Skinner <[EMAIL PROTECTED]> wrote:
> Here is the CSS I use on a DHTML popup div that only scrolls
vertically in IE.  It is based on DIV's and DL's not IFRAME's so I do not
know if it will help or not.  But the if you look at the width of the basic
div (div#defList) is 300px and the width of the dl inside it (div#defList
dl) is 268px allowing 32px for the scroll bar.
>
> div#defList
> {
> width: 300px;
> height: 200px;
> position: absolute;
> top: 50%;
> left: 50%;
> margin-top: -75px;
> margin-left: -150px;
> padding: 0;
> border: 2px solid #006;
> background-color: white;
> text-align: center;
>
> z-index:2000;
> }
>
> div#defList h2
> {
> border: 0;
> font-size: 100%;
> position: relative;
> }
>
> div#defList h2 a
> {
> position: absolute;
> background-color: #DDD;
> color: black;
> top: 0;
> right: 0;
> font-size: smaller;
> padding: .25em;
> border: 1px solid black;
> text-decoration: none;
> }
>
> div#defList dl
> {
> margin: 0;
> padding: 0 1em;
> height: 174px;
> width: 268px;
> position: absolute;
> bottom: 0;
> left: 0;
> text-align: left;
> overflow: scroll;
> }
>
>
> --
> Ian Skinner
> Web Programmer
> BloodSource
> www.BloodSource.org
> Sacramento, CA
>
> -
> | 1 |   |
> -  Binary Soduko
> |   |   |
> -
>
> "C code. C code run. Run code run. Please!"
> - Cynthia Dunning
>
> Confidentiality Notice:  This message including any attachments is for 
> the sole use of the intended
> recipient(s) and may contain confidential and privileged information. 
> Any unauthorized review, use, disclosure or distribution is 
> prohibited. If you are not the intended recipient, please contact the 
> sender and delete any copies of this message.
>
>
>
>
> 





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245562
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: calling one function inside another

2006-07-06 Thread Cutter (CFRelated)
Yes, you may call function of other cfc's. But, like working with class 
files in java or C++, if the file has no reference to instantiate that 
object (conferences) then it won't find the function. You will need to 
create an object instance [variables.conferences = 
createobject("component","conferences").init(dsn)] prior to calling any 
functions of the object [user.arrConferences = 
variables.conferences.GetConferences(userID)].

Cutter
__
http://blog.cutterscrossing.com

Crow T. Robot wrote:
> Using Ray Camden's Galleon software, and I need to modify it a little.
> 
> I've got a user.cfc file that takes care of all user functions.  I have 
> another, conferences.cfc, that takes care of all conferences.  Now, 
> after a user is inserted using the addUser method inside users.cfc, I 
> have the need to call the GetConferences method that exists inside 
> conferences.cfc inside the addUser function so that I can subscribe the 
> user to all the conferences when they sign up.  However, before I can 
> get into that, I need to know why it seems like I am not able to call 
> the GetConferences() function from with the users.cfc.  I keep getting 
> undefined errors unless I copy the GetConferences function into the 
> users.cfc file.  After that, it works fine.
> 
> I'm quite new to the cfc thing, so any help in the underlying logic and 
> the "whys" of the above behavior would be great.
> 
> Thanks
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245561
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Web Services - Not for production or development - Thanks everybody

2006-07-06 Thread News
Thanks everybody. Have been flat out. Sorry for not posting earlier.

The postprocessor servlet sounds best in the long term. The blog was useful 
too.

I really don't mind having a watermark. I am only using the CFMX Server for 
development. I paid for my software and I am using it legally. I need the 
extra IP addresses. We shouldn't have to spend extra time on things like 
this. Adobe/Macromedia should have been the ones to spend the time on 
inserting watermarks that don't interfere with development. Silly me... I 
thought that inserting well-formed a HTML 4 "loose DTD" tag into XML output 
would have to be bug...





- Original Message - 
From: "Dave Watts" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, July 06, 2006 12:36 AM
Subject: RE: Web Services - Not for production or development


>> The insertion of the "Not for Production Use" meta tag is resulting a
>> validation error which prevents the development and testing of Web
>> Services on my local CF App Server. I currently have Enterprise Edition
>> (DevNet) CFMX 7.0.1 (not an ideal verison for Web services, but need to
>> keep that version for a short while).
>>
>> Does anyone know a work-around for this? Am I doing something wrong?
>> Does 7.0.2 fix this? Having a not for prod use tag is fair enough, but
>> surely it should be well-formed.
>
> The tag itself is well-formed, but it's a well-formed HTML 4 "loose DTD"
> tag, not an XML element, and that's your problem here - you're generating
> XML, not HTML.
>
> There are some suggestions for how you can deal with this in the thread on
> Steven Erat's blog that Charlie Griefer pointed out. In addition, you 
> could
> always install a postprocessor servlet to rewrite your output. This is a
> useful thing to be able to do, not just for this problem, but for lots of
> other problems where you might want to rewrite all output in a very 
> generic
> way.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
>
> Fig Leaf Software provides the highest caliber vendor-authorized
> instruction at our training centers in Washington DC, Atlanta,
> Chicago, Baltimore, Northern Virginia, or on-site at your location.
> Visit http://training.figleaf.com/ for more information!
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245560
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFINVOKE/CFHTTP peer not authenticated

2006-07-06 Thread Bryan Stevenson
Thanks Russ...

I'm not an SSL expert and am having some difficulty interpreting some things 
I'm 
seeing.

When I export the cert and view open it, I see different information if it's on 
my desktop than what I see when it's opened on the web server it came 
fromand yet more different details when opened via IIS.

I have seen some indication that what I suspect are root/intermeadiate certs 
that have expired, but the cert still works fine via a browser.  Even if they 
have expired, the dates indicate they expired BEFORE I applied the initial fix 
that worked.

So for now I'm waiting on the clients IIS/SSL guy to have a look at determine 
if 
there is an issue with any of the certsthen at least I'll know for sure it 
is or is not a cert issue (instead of a keystore issue).

Hope that made sense (or sparks a "I see the problem" in someone) ;-)

Cheers

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245559
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: iframe scrolling

2006-07-06 Thread Ian Skinner
Its a really bad idea to mix absolute (pixels) and relative (em's and
percentages) values.  Use one or the other, (you can use em's and percentages 
together, because 1 em = 100% of the user's base font size). Also if you are 
using absolute positioning to bring your div#defList to an offset of 50% top 
and left, why are you then using negative margins? Use the offsets only.  
Negative margins are not always consistent across browsers when using 
positioning or floating.

Set all items to a margin:0, padding:0 first to make sure you are consistent 
across browsers, then add padding and postive margins to your elements as 
needed.

Also change your overflow:scroll to overflow:auto. the scroll value will ALWAYS 
place both vertical and horizontal scroll bars on an item. auto will only place 
the ones necessary to scroll your content.

Sandra Clark

Why is it to mix, it does exactly what I want it to do.  Now this may not work 
very widely but this is an Intranet application where I have knowledge of what 
browsers I am working with.  My logic is that by placing the container top: 50% 
and left: 50%, this places the div layer in the middle of the browser, but it 
places the top left corner of the div in the middle.  With the negative margins 
each 1/2 of the width and height move the middle of the div layer to the middle 
of the browser.  How would I do that with positive values?

I'll check out the scroll: auto, but I currently have only one vertical scroll 
bar, albeit in the limited set of browsers I am concerned with; again the 
advantage of a strictly controlled intranet environment of a small company.



--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245558
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: iframe scrolling

2006-07-06 Thread Ian Skinner
For the example I provided this is the doctype

http://www.w3.org/TR/html4/strict.dtd";>




--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245557
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: iframe scrolling

2006-07-06 Thread Rob Wilkerson
For giggles, try adding the code below to your page *directly* above
your doctype declaration and see whether anything changes...



On 7/6/06, Brad Wood <[EMAIL PROTECTED]> wrote:
> Yes, the amount of horizontal scroll seems to roughly match the width of
> the vertical scroll bar.
>
> My current doctype is
>
>  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
>
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
>
> I tried a few others, but they didn't seems to make a difference.
>
> ~Brad
>
> -Original Message-
> From: Rob Wilkerson [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 06, 2006 12:28 PM
> To: CF-Talk
> Subject: Re: iframe scrolling
>
> What doctype are you using?  In XTHML strict or transitional, IE
> behaves differently.  The 1/4" scroll is indicative of the horizontal
> scrollbar compensating for the presence of the vertical scrollbar.
> The scrolling distance is approximately the size of the vertical
> scrollbar, right?
>
> On 7/6/06, Ian Skinner <[EMAIL PROTECTED]> wrote:
> > Here is the CSS I use on a DHTML popup div that only scrolls
> vertically in IE.  It is based on DIV's and DL's not IFRAME's so I do
> not know if it will help or not.  But the if you look at the width of
> the basic div (div#defList) is 300px and the width of the dl inside it
> (div#defList dl) is 268px allowing 32px for the scroll bar.
> >
> > div#defList
> > {
> > width: 300px;
> > height: 200px;
> > position: absolute;
> > top: 50%;
> > left: 50%;
> > margin-top: -75px;
> > margin-left: -150px;
> > padding: 0;
> > border: 2px solid #006;
> > background-color: white;
> > text-align: center;
> >
> > z-index:2000;
> > }
> >
> > div#defList h2
> > {
> > border: 0;
> > font-size: 100%;
> > position: relative;
> > }
> >
> > div#defList h2 a
> > {
> > position: absolute;
> > background-color: #DDD;
> > color: black;
> > top: 0;
> > right: 0;
> > font-size: smaller;
> > padding: .25em;
> > border: 1px solid black;
> > text-decoration: none;
> > }
> >
> > div#defList dl
> > {
> > margin: 0;
> > padding: 0 1em;
> > height: 174px;
> > width: 268px;
> > position: absolute;
> > bottom: 0;
> > left: 0;
> > text-align: left;
> > overflow: scroll;
> > }
> >
> >
> > --
> > Ian Skinner
> > Web Programmer
> > BloodSource
> > www.BloodSource.org
> > Sacramento, CA
> >
> > -
> > | 1 |   |
> > -  Binary Soduko
> > |   |   |
> > -
> >
> > "C code. C code run. Run code run. Please!"
> > - Cynthia Dunning
> >
> > Confidentiality Notice:  This message including any
> > attachments is for the sole use of the intended
> > recipient(s) and may contain confidential and privileged
> > information. Any unauthorized review, use, disclosure or
> > distribution is prohibited. If you are not the
> > intended recipient, please contact the sender and
> > delete any copies of this message.
> >
> >
> >
> >
> >
>
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245556
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


calling one function inside another

2006-07-06 Thread Crow T. Robot
Using Ray Camden's Galleon software, and I need to modify it a little.

I've got a user.cfc file that takes care of all user functions.  I have 
another, conferences.cfc, that takes care of all conferences.  Now, 
after a user is inserted using the addUser method inside users.cfc, I 
have the need to call the GetConferences method that exists inside 
conferences.cfc inside the addUser function so that I can subscribe the 
user to all the conferences when they sign up.  However, before I can 
get into that, I need to know why it seems like I am not able to call 
the GetConferences() function from with the users.cfc.  I keep getting 
undefined errors unless I copy the GetConferences function into the 
users.cfc file.  After that, it works fine.

I'm quite new to the cfc thing, so any help in the underlying logic and 
the "whys" of the above behavior would be great.

Thanks

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:24
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: iframe scrolling

2006-07-06 Thread Brad Wood
Yes, the amount of horizontal scroll seems to roughly match the width of
the vertical scroll bar.

My current doctype is 

http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>

I tried a few others, but they didn't seems to make a difference.

~Brad

-Original Message-
From: Rob Wilkerson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 06, 2006 12:28 PM
To: CF-Talk
Subject: Re: iframe scrolling

What doctype are you using?  In XTHML strict or transitional, IE
behaves differently.  The 1/4" scroll is indicative of the horizontal
scrollbar compensating for the presence of the vertical scrollbar.
The scrolling distance is approximately the size of the vertical
scrollbar, right?

On 7/6/06, Ian Skinner <[EMAIL PROTECTED]> wrote:
> Here is the CSS I use on a DHTML popup div that only scrolls
vertically in IE.  It is based on DIV's and DL's not IFRAME's so I do
not know if it will help or not.  But the if you look at the width of
the basic div (div#defList) is 300px and the width of the dl inside it
(div#defList dl) is 268px allowing 32px for the scroll bar.
>
> div#defList
> {
> width: 300px;
> height: 200px;
> position: absolute;
> top: 50%;
> left: 50%;
> margin-top: -75px;
> margin-left: -150px;
> padding: 0;
> border: 2px solid #006;
> background-color: white;
> text-align: center;
>
> z-index:2000;
> }
>
> div#defList h2
> {
> border: 0;
> font-size: 100%;
> position: relative;
> }
>
> div#defList h2 a
> {
> position: absolute;
> background-color: #DDD;
> color: black;
> top: 0;
> right: 0;
> font-size: smaller;
> padding: .25em;
> border: 1px solid black;
> text-decoration: none;
> }
>
> div#defList dl
> {
> margin: 0;
> padding: 0 1em;
> height: 174px;
> width: 268px;
> position: absolute;
> bottom: 0;
> left: 0;
> text-align: left;
> overflow: scroll;
> }
>
>
> --
> Ian Skinner
> Web Programmer
> BloodSource
> www.BloodSource.org
> Sacramento, CA
>
> -
> | 1 |   |
> -  Binary Soduko
> |   |   |
> -
>
> "C code. C code run. Run code run. Please!"
> - Cynthia Dunning
>
> Confidentiality Notice:  This message including any
> attachments is for the sole use of the intended
> recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or
> distribution is prohibited. If you are not the
> intended recipient, please contact the sender and
> delete any copies of this message.
>
>
>
>
> 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245554
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFINVOKE/CFHTTP peer not authenticated

2006-07-06 Thread Russ
CFHTTP over ssl would have the same issues as cfinvoke.  It's possible that
the store got somehow corrupted (or maybe the certificate expired, or the
root or an intermediate certificate expired).  

So if after double checking all the certs you still can't get it to work,
try copying the keystore from dev to prd (make sure you have a backup
first).  I'm not sure if there are any private keys to worry about here.  

Alternatively you can just install a new jdk and have coldfusion use that
(you will probably have to import the cert again if it's not trusted
automatically).  Make sure you only install a supported jdk version as newer
versions break some cf features.  (I believe Dave Watts mentioned that you
can only use 1.4.2_07 as the latest supported version, but don't quote me on
that).  You can download previous version of java at
http://java.sun.com/products/archive/

Russ

> -Original Message-
> From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 06, 2006 1:16 PM
> To: CF-Talk
> Subject: Re: CFINVOKE/CFHTTP peer not authenticated
> 
> > Are you trying to cfhttp to your own server over ssl?  And you have a
> self
> > generated cert?  The easiest thing would be to buy a cert.
> > www.x-registrar.com has them for less then $30.  That's what we ended up
> > getting for our mail server, and now we have no problem connecting to it
> > through CF, without doing any of the key importing mumbo jumbo.
> >
> > Russ
> 
> Nope...invoking a webservice on the server over SSL, but this issue is
> also
> effecting CFHTTP calls (which I haven't seen yet)it's all related to
> the
> keystore.
> 
> It has an Entrust cert already (govt client), so no need to buy another
> one ;-)
> 
> What I'm interested in is why it worked the first time and no longer
> works??
> 
> Cheers
> 
> Bryan Stevenson B.Comm.
> VP & Director of E-Commerce Development
> Electric Edge Systems Group Inc.
> phone: 250.480.0642
> fax: 250.480.1264
> cell: 250.920.8830
> e-mail: [EMAIL PROTECTED]
> web: www.electricedgesystems.com
> 
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245553
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: iframe scrolling

2006-07-06 Thread Rob Wilkerson
What doctype are you using?  In XTHML strict or transitional, IE
behaves differently.  The 1/4" scroll is indicative of the horizontal
scrollbar compensating for the presence of the vertical scrollbar.
The scrolling distance is approximately the size of the vertical
scrollbar, right?

On 7/6/06, Ian Skinner <[EMAIL PROTECTED]> wrote:
> Here is the CSS I use on a DHTML popup div that only scrolls vertically in 
> IE.  It is based on DIV's and DL's not IFRAME's so I do not know if it will 
> help or not.  But the if you look at the width of the basic div (div#defList) 
> is 300px and the width of the dl inside it (div#defList dl) is 268px allowing 
> 32px for the scroll bar.
>
> div#defList
> {
> width: 300px;
> height: 200px;
> position: absolute;
> top: 50%;
> left: 50%;
> margin-top: -75px;
> margin-left: -150px;
> padding: 0;
> border: 2px solid #006;
> background-color: white;
> text-align: center;
>
> z-index:2000;
> }
>
> div#defList h2
> {
> border: 0;
> font-size: 100%;
> position: relative;
> }
>
> div#defList h2 a
> {
> position: absolute;
> background-color: #DDD;
> color: black;
> top: 0;
> right: 0;
> font-size: smaller;
> padding: .25em;
> border: 1px solid black;
> text-decoration: none;
> }
>
> div#defList dl
> {
> margin: 0;
> padding: 0 1em;
> height: 174px;
> width: 268px;
> position: absolute;
> bottom: 0;
> left: 0;
> text-align: left;
> overflow: scroll;
> }
>
>
> --
> Ian Skinner
> Web Programmer
> BloodSource
> www.BloodSource.org
> Sacramento, CA
>
> -
> | 1 |   |
> -  Binary Soduko
> |   |   |
> -
>
> "C code. C code run. Run code run. Please!"
> - Cynthia Dunning
>
> Confidentiality Notice:  This message including any
> attachments is for the sole use of the intended
> recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or
> distribution is prohibited. If you are not the
> intended recipient, please contact the sender and
> delete any copies of this message.
>
>
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245552
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: iframe scrolling

2006-07-06 Thread Josh Nathanson
Hi Brad,

You may want to try creating a css class and applying it to your iframe, if 
you haven't already done so.  Just a simple class will do, something like:

..padder {padding: 0px;}

then do



I found this helped me when I had a similar situation.  You can play around 
with the class and see what results you get.

-- Josh




- Original Message - 
From: "Brad Wood" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, July 06, 2006 10:03 AM
Subject: RE: iframe scrolling


> It actually scrolls about a quarter of an inch.  It is NOT one of the
> "disabled" scrolls bars which are grey and don't actually move.  I can't
> figure out what it is scrolling though, because there is nothing but
> white space over there.
>
> It is like IE is making up a div or something which isn't really there.
>
>
> ~Brad: http://www.houseoffusion.com/tiny.cfm/54 


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245551
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: iframe scrolling

2006-07-06 Thread Sandra Clark
 
Its a really bad idea to mix absolute (pixels) and relative (em's and
percentages) values.  Use one or the other, (you can use em's and
percentages together, because 1 em = 100% of the user's base font size).
Also if you are using absolute positioning to bring your div#defList to an
offset of 50% top and left, why are you then using negative margins? Use the
offsets only.  Negative margins are not always consistent across browsers
when using positioning or floating.

Set all items to a margin:0, padding:0 first to make sure you are consistent
across browsers, then add padding and postive margins to your elements as
needed.


Also change your overflow:scroll to overflow:auto. the scroll value will
ALWAYS place both vertical and horizontal scroll bars on an item. auto will
only place the ones necessary to scroll your content.

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

-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 06, 2006 1:00 PM
To: CF-Talk
Subject: RE: iframe scrolling

Here is the CSS I use on a DHTML popup div that only scrolls vertically in
IE.  It is based on DIV's and DL's not IFRAME's so I do not know if it will
help or not.  But the if you look at the width of the basic div
(div#defList) is 300px and the width of the dl inside it (div#defList dl) is
268px allowing 32px for the scroll bar.

div#defList
{
width: 300px;
height: 200px;
position: absolute;
top: 50%;
left: 50%;
margin-top: -75px;
margin-left: -150px;
padding: 0;
border: 2px solid #006;
background-color: white;
text-align: center;

z-index:2000;
}

div#defList h2
{
border: 0;
font-size: 100%;
position: relative;
}

div#defList h2 a
{
position: absolute;
background-color: #DDD;
color: black;
top: 0;
right: 0;
font-size: smaller;
padding: .25em;
border: 1px solid black;
text-decoration: none;
}

div#defList dl
{
margin: 0;
padding: 0 1em;
height: 174px;
width: 268px;
position: absolute;
bottom: 0;
left: 0;
text-align: left;
overflow: scroll;
}


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any attachments is for the
sole use of the intended
recipient(s) and may contain confidential and privileged information. Any
unauthorized review, use, disclosure or distribution is prohibited. If you
are not the intended recipient, please contact the sender and delete any
copies of this message. 






~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245550
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Old code woes

2006-07-06 Thread Robertson-Ravo, Neil (RX)
Lol!



"This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Bryan Stevenson <[EMAIL PROTECTED]>
To: CF-Talk 
Sent: Thu Jul 06 18:13:26 2006
Subject: Re: Old code woes

> Well yeah, maybe in that app, but there is perfect logic in other apps
which
> need to get the date from the DB.
>
> Are you just meaning a date display? Or for record
insertion/update/delete?

.and that's why I mentioned that in the context of the app it made NO
sense 
(yes just display today's date).

I knew someone wouldn't let it lieand yer the winner Rob!! ;-)

Cheers

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245549
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFINVOKE/CFHTTP peer not authenticated

2006-07-06 Thread Bryan Stevenson
> Are you trying to cfhttp to your own server over ssl?  And you have a self
> generated cert?  The easiest thing would be to buy a cert.
> www.x-registrar.com has them for less then $30.  That's what we ended up
> getting for our mail server, and now we have no problem connecting to it
> through CF, without doing any of the key importing mumbo jumbo.
>
> Russ

Nope...invoking a webservice on the server over SSL, but this issue is also 
effecting CFHTTP calls (which I haven't seen yet)it's all related to the 
keystore.

It has an Entrust cert already (govt client), so no need to buy another one ;-)

What I'm interested in is why it worked the first time and no longer works??

Cheers

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245548
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: multi-lingual spell checker recommendations

2006-07-06 Thread Dan G. Switzer, II
>Yeah I was thinking of updating the interface that I have made to run with
>AJAX request.  One of the moans that the user has is that when adding a
>word to a dictionary, if the word appears twice in the text, it finds it as
>mispelt after adding.  Once all is processed then it does not appear, but
>it would be nice if added on the fly/realtime as it were.

You could always modifying your code to "correct" words added to the
dictionary.

-Dan


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245547
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Old code woes

2006-07-06 Thread Bryan Stevenson
> Well yeah, maybe in that app, but there is perfect logic in other apps which
> need to get the date from the DB.
>
> Are you just meaning a date display? Or for record insertion/update/delete?

and that's why I mentioned that in the context of the app it made NO sense 
(yes just display today's date).

I knew someone wouldn't let it lieand yer the winner Rob!! ;-)

Cheers

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245546
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: iframe scrolling

2006-07-06 Thread Ian Skinner
It is like IE is making up a div or something which isn't really there.


~Brad

Well with an Iframe you have an entire html and body container inside the 
Iframe control do you not?  I do not use iframes very often so I am not fully 
cognizant on its peculiarities.  But I would guess that IE is not resizing at 
least one of these containers when the vertical scroll bar appears so the 
horizontal scroll bar allows you to scroll the width of the vertical scroll bar.


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245545
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: iframe scrolling

2006-07-06 Thread Ian Skinner
Here is the CSS I use on a DHTML popup div that only scrolls vertically in IE.  
It is based on DIV's and DL's not IFRAME's so I do not know if it will help or 
not.  But the if you look at the width of the basic div (div#defList) is 300px 
and the width of the dl inside it (div#defList dl) is 268px allowing 32px for 
the scroll bar.

div#defList
{
width: 300px;
height: 200px;
position: absolute;
top: 50%;
left: 50%;
margin-top: -75px;
margin-left: -150px;
padding: 0;
border: 2px solid #006;
background-color: white;
text-align: center;

z-index:2000;
}

div#defList h2
{
border: 0;
font-size: 100%;
position: relative;
}

div#defList h2 a
{
position: absolute;
background-color: #DDD;
color: black;
top: 0;
right: 0;
font-size: smaller;
padding: .25em;
border: 1px solid black;
text-decoration: none;
}

div#defList dl
{
margin: 0;
padding: 0 1em;
height: 174px;
width: 268px;
position: absolute;
bottom: 0;
left: 0;
text-align: left;
overflow: scroll;
}


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245544
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: iframe scrolling

2006-07-06 Thread Brad Wood
It actually scrolls about a quarter of an inch.  It is NOT one of the
"disabled" scrolls bars which are grey and don't actually move.  I can't
figure out what it is scrolling though, because there is nothing but
white space over there.  

It is like IE is making up a div or something which isn't really there.


~Brad

-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 06, 2006 11:52 AM
To: CF-Talk
Subject: RE: iframe scrolling

Thanks for the suggestions, Ian.

There should be an abundance of horizontal space in the iframe, but I
was thinking the same thing you said, so as a test earlier I put the
content in a div with a width of 95% and there was no change in the
behavior.  :(

~Brad

Does that horizontal scroll control actually scroll or does it just
appear even though you can not scroll it?

If so, then I think it's an IE issue that both scroll controls always
appear.


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 






~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245543
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


  1   2   >