CFGRID with blinking column

2005-09-14 Thread Johnson
Hi,

Is there anyway to make a Particular Row and Particular Column to blink using 
action scripts.
i m using flashing remoting method to fill the grid .

Thanks in advance.
Johnson

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218382
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: SCM deployment options (was Re: Source Code Control Setup)

2005-09-14 Thread Barney Boisvert
> That's a surprise -- though it of course depends on what you're doing.
> I don't have many CF projects that don't have at least *some* java in
> them (usually the credit card API) so using Ant seems pretty natural.

Credit cards?  Ick.  That stuff sucks. ;)  No unhappiness from me that
I have touched CC processing in like 4 years.  But anyway.  We build
the Java pieces separately.  So Java piece X gets built into a JAR,
and then that JAR is included in the CF apps as needed.  Keeps the
dependancies flowing downward, and isolates the CF apps from any
changes to the Java apps until they're ready to deal with them.

> I do a lot with using filter expansion to properly configure
> differences between deployments (e.g. changing the fusebox 
> parameter from development to production as appropriate on the
> specific server).

We don't use FB4 either.  And we maintain our different config stuff
in-code, rather than in external ant properties files, so the app
itself takes care of pulling the right config stuff out based on where
it's at.  Most of the reason is so that we can go right from staging
to production with a minimum of steps.  More steps == more room for
error, especially if you're CHANGING THE CODE!!!.  ;)  If we did use
FB4, we'd switch the mode the same way, in-code.   is just as effective as
changing the XML file, as long as it happens while no request is
actively executing the loader.

> Wouldn't you have to start the testing process again after any change
> in the branch being tested? A change in the staging branch during
> integration testing *should* restart the unit tests for sure,
> functional if they are automated and reasonable in length.

Of course.  But at that point we're not testing a branch, we're
testing a snapshot.  So even if the branch is updated, we don't want
the updates until the next test/release cycle.  I abbreviated my
steps, but a "test phase" usually means a tag, testing and changes,
and another tag.  Then a diff between the tags, and anything that
changed better have a damn good explaination, and anything non-trivial
will require a new cycle to commence, good explaination or not.

Continuous
> integration tools are only going to redeploy code that's changed in
> the repository being monitored -- so a change in the development
> branch does not necessarily redeploy the staging branch. Of course a
> *merge* from dev into staging would, but you'd expect that.

Yes, expected, and intentionally prevented from interfering.  ;)  By
doing it this way, developer X can merge his private branch into
stage, switch his working copy to the stage branch, and then make sure
there aren't any issues now that he's back with everyone else.  And he
can do it during a testing period, without interfering with the test. 
You can make an argument that that's a stupid way to do it for sure,
but having that central point of control sure makes my life easier.

> I'm thrilled we're (the CF community) at the point where more of the
> discussions are about how to implement the tools to improve process
> than "why it's important to use source control".

Amen to that.  It's amazing the change that's happened in the past
couple years.  Not that that question never comes up, but there's so
much more behind it now.

cheers,
barneyb

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218381
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: More on subversion

2005-09-14 Thread John Paul Ashenfelter
On 9/14/05, Paul <[EMAIL PROTECTED]> wrote:
> > > > I am the sole developer for a non-tech company.
> > > >
> > > Lots of us geeks are :)
> > >
> > Agreed :)
> Funny, the discussions here made me think of everyone as part of some
> well-oiled development machine in technical Utopia...  Glad I'm not alone in
> my "loneliness"!

Just b/c you're solo, doesn't mean that source control, build tools,
and the rest of the development toolset are not for you. In some ways,
it's far *easier* to implement them because the only management buyin
you need is yourself!

And quite honestly, it saves you time to implement at least the basics
-- source control at least. It doesn't necessarily save LOTs time, but
it moves the point you *invest* the time earlier in your process where
it keeps everybody sane. Wow -- that's obtuse. Here's a true story:

Company A has a rollout to do. I come in to help their sole developer
(at a nontech company) package everything up for deployment. Turns out
there were at least 5 seperate instances of the code -- his laptop, my
laptop, two staging servers, and a production server. And he had 3-4
more copies laying around. So we ended up with an 8-way diff to sync
up all the code. That's the couple days before the rollout -- everyone
thought it was "tested", but no one was testing the same copy. So
hours of testing wasted and about 10 hours of my time helping them out
of the mess.

Subversion takes about 30 minutes to install, especially if you're one of

a) familiar with Apache
b) happy to run the lightweight svnserve server
c) able to access the files directly

you can get away with (c) unless folks need external access to the
repository. I'd also recommend the additional hour to read the first
few chapters of Pragmatic Version Control with Subversion.

So an hour of setup, an hour of reading, and a few hours over the next
week to get comfortable with the process. And the time's invested
upfront, so when things go to hell close to a milestone/deadline,
you're not diffing 8 filesets, or digging through daily zip archives.

Getting back to company A, we put in source control and made the
developer use it. The next rollout was an emergency fix to handle a
scaling problem that I had to work on from the opposite coast. I had
actually fixed the bug in a larger project to rework the login process
that was not yet complete, but could backport the changes since I
could easily diff my branch against the main development and then
deploy it for testing. The rollout took 5m the next morning with their
graphic designer handline the svn commands for me while I rode the
trolley into Portland...
 
> > In SVN, you're looking at post-commit hooks to automatically push out
> > changes, but I'd suggest looking at Ant -- which lets you create
> > deployment scripts. And then you can take your working
> > deploy-on-demand scripts and put it all into CruiseControl, which is
> > an opensource tool for continuous integration builds (e.g. changes
> > automatically roll out to the target server continuously).
> 
> My brain actually started sweating.  I guess I'll just take this one step at
> a time...

Great plan!

Step 1: Source control
Step 2: Automate deployments

There is no step 3 :)

-- 
John Paul Ashenfelter
CTO/Transitionpoint
(blog) http://www.ashenfelter.com
(email) [EMAIL PROTECTED]

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218380
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: Another radio button problem

2005-09-14 Thread Mark Henderson
Ty Mark and your last post does make sense. I will try that in a couple
of hours when I have time to re-attack it. 

-Original Message-
From: Mark Fuqua [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 15 September 2005 4:33 p.m.
To: CF-Talk
Subject: RE: Another radio button problem

Sorry, real sleepy.  Need to loop though qrynoticeboard in the diplay
and set hidden form field variables to variablename#i# with i = i +1 for
each loop then  in the update query.

Completely bleary eyed. Hope the two emails together made some sense.

Mark

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218379
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: SCM deployment options (was Re: Source Code Control Setup)

2005-09-14 Thread John Paul Ashenfelter
On 9/14/05, Barney Boisvert <[EMAIL PROTECTED]> wrote:
> Nope, no ant anywhere in that process.  No need for it.  Aside from
> the 'svn' commands for merging and stuff, the most complicated command
> is the sync operation, which takes an optional "-n" flag for doing a
> dry run to preview what is actually going to be updated.

That's a surprise -- though it of course depends on what you're doing.
I don't have many CF projects that don't have at least *some* java in
them (usually the credit card API) so using Ant seems pretty natural.
I do a lot with using filter expansion to properly configure
differences between deployments (e.g. changing the fusebox 
parameter from development to production as appropriate on the
specific server).

> And really, no one works on the stage branch, about the only thing
> that ever gets fixed on the stage branch (not the stage working
> directory, mind you) is typos.  Pretty much everything else is done on
> a branch (often developer-specific), and then merged back in when
> complete.  Lot easier that way.  It also has the effect of making the
> stage branch pretty much exclusively for integration testing, and
> having the configuration being tested automatically updating itself
> (necessitating a restart of the test procedure) would be a huge
> headache.

Wouldn't you have to start the testing process again after any change
in the branch being tested? A change in the staging branch during
integration testing *should* restart the unit tests for sure,
functional if they are automated and reasonable in length. Continuous
integration tools are only going to redeploy code that's changed in
the repository being monitored -- so a change in the development
branch does not necessarily redeploy the staging branch. Of course a
*merge* from dev into staging would, but you'd expect that.
 
> I'm a big advocate of using all the neat tools out there to make your
> job easier, but I'm an even bigger advocate of NOT using superfluous
> tools when they're not going to help.  I think that's one of the major
> problems people face these days.  Not just developers, but people in
> general. There are so many tools out there, it takes real discipline
> to research, select, and understand the tools you need, but it takes
> just as much discipline to not use the tools you don't need.

No doubt -- and the key is matching them to your process. If you don't
do continuous integration, you don't need continuous integration
tools. If you don't do automated testing, you don't need CFCUnit,
HttpUnit, Selenium, etc. If you don't use UML tools, you don't need
ArgoUML.

I mean, I love Eclipse, but to make a couple of quick edits, I'm
poppin' open Textpad and using Tortoise to commit it to SVN :)
 
> That being said, I use ant in abundance for all kinds of tasks, but I
> don't think I build a single software package with it.  It's all for
> server administration and stuff like that.  And yes, where
> appropriate, testing is automated.  Still have to test stuff manually
> though, no matter how good your test framework is, particularly with
> HTML stuff.

That last bit is key -- CF web apps can be hard to test, mostly
because CF has such poor unit-testing tools. For legacy apps without
CFCs, you're out of luck. Functional testing with tools like Selenium
though, makes it suprisingly easy to automate user/integration tests
and add test cases for each bug. But setting it all up, especially on
a legacy project, takes a siginficant amount of time.

I'm thrilled we're (the CF community) at the point where more of the
discussions are about how to implement the tools to improve process
than "why it's important to use source control".


-- 
John Paul Ashenfelter
CTO/Transitionpoint
(blog) http://www.ashenfelter.com
(email) [EMAIL PROTECTED]

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218378
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: Another radio button problem

2005-09-14 Thread Mark Fuqua
Sorry, real sleepy.  Need to loop though qrynoticeboard in the diplay and
set hidden form field variables to variablename#i# with i = i +1 for each
loop then  in the update query.

Completely bleary eyed. Hope the two emails together made some sense.

Mark

-Original Message-
From: Mark Henderson [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 15, 2005 12:00 AM
To: CF-Talk
Subject: Another radio button problem


I am having issues with a form that allows multiple deletes (or in this
case simply changing the active db field to no) from a database using
checkboxes.

Hers the deal so far. The query to display all noticeboard items is...


  SELECTnoticeboardID,
title,
description,
dateAdded,
userInitials,
active
  FROM  noticeBoard
  WHERE active = Yes
  ORDER BY  dateAdded DESC


 In the display, I have..




#dateformat(dateAdded, "d/mm/")# -
#timeformat(dateAdded, "hh:mm tt")# :
#title#
#description#
[#userInitials#]











And the processing (which I am pretty sure where my logic is screwed).
Ive tried



  UPDATE   noticeBoard
  SET  active = No
  WHERE  noticeboardID = #listItem#



But naturally this turns off ALL records, because it seems all IDs are
being passed into form.ID. I need a way to pass only the IDs that are
ticked in the display. Any ideas?

Please help! All help greatly appreciated.

regards
Mark






~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218377
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: Another radio button problem

2005-09-14 Thread Mark Fuqua
Try something like this:




  SELECTnoticeboardID,
title,
description,
dateAdded,
userInitials,
active
  FROM  noticeBoard
  WHERE active = Yes
  ORDER BY  dateAdded DESC




Mark
-Original Message-
From: Mark Henderson [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 15, 2005 12:00 AM
To: CF-Talk
Subject: Another radio button problem


I am having issues with a form that allows multiple deletes (or in this
case simply changing the active db field to no) from a database using
checkboxes.

Hers the deal so far. The query to display all noticeboard items is...


  SELECTnoticeboardID,
title,
description,
dateAdded,
userInitials,
active
  FROM  noticeBoard
  WHERE active = Yes
  ORDER BY  dateAdded DESC


 In the display, I have..




#dateformat(dateAdded, "d/mm/")# -
#timeformat(dateAdded, "hh:mm tt")# :
#title#
#description#
[#userInitials#]











And the processing (which I am pretty sure where my logic is screwed).
Ive tried



  UPDATE   noticeBoard
  SET  active = No
  WHERE  noticeboardID = #listItem#



But naturally this turns off ALL records, because it seems all IDs are
being passed into form.ID. I need a way to pass only the IDs that are
ticked in the display. Any ideas?

Please help! All help greatly appreciated.

regards
Mark






~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218376
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


Another radio button problem

2005-09-14 Thread Mark Henderson
I am having issues with a form that allows multiple deletes (or in this
case simply changing the active db field to no) from a database using
checkboxes.

Hers the deal so far. The query to display all noticeboard items is...


  SELECTnoticeboardID, 
title, 
description, 
dateAdded, 
userInitials,
active
  FROM  noticeBoard
  WHERE active = Yes
  ORDER BY  dateAdded DESC


 In the display, I have..




#dateformat(dateAdded, "d/mm/")# -
#timeformat(dateAdded, "hh:mm tt")# :
#title#
#description# 
[#userInitials#]











And the processing (which I am pretty sure where my logic is screwed).
Ive tried

 

  UPDATE   noticeBoard
  SET  active = No 
  WHERE  noticeboardID = #listItem# 
 
 

But naturally this turns off ALL records, because it seems all IDs are
being passed into form.ID. I need a way to pass only the IDs that are
ticked in the display. Any ideas?

Please help! All help greatly appreciated.

regards
Mark




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218375
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: SCM deployment options (was Re: Source Code Control Setup)

2005-09-14 Thread Barney Boisvert
Nope, no ant anywhere in that process.  No need for it.  Aside from
the 'svn' commands for merging and stuff, the most complicated command
is the sync operation, which takes an optional "-n" flag for doing a
dry run to preview what is actually going to be updated.

And really, no one works on the stage branch, about the only thing
that ever gets fixed on the stage branch (not the stage working
directory, mind you) is typos.  Pretty much everything else is done on
a branch (often developer-specific), and then merged back in when
complete.  Lot easier that way.  It also has the effect of making the
stage branch pretty much exclusively for integration testing, and
having the configuration being tested automatically updating itself
(necessitating a restart of the test procedure) would be a huge
headache.

I'm a big advocate of using all the neat tools out there to make your
job easier, but I'm an even bigger advocate of NOT using superfluous
tools when they're not going to help.  I think that's one of the major
problems people face these days.  Not just developers, but people in
general. There are so many tools out there, it takes real discipline
to research, select, and understand the tools you need, but it takes
just as much discipline to not use the tools you don't need.

That being said, I use ant in abundance for all kinds of tasks, but I
don't think I build a single software package with it.  It's all for
server administration and stuff like that.  And yes, where
appropriate, testing is automated.  Still have to test stuff manually
though, no matter how good your test framework is, particularly with
HTML stuff.

cheers,
barneyb

On 9/14/05, John Paul Ashenfelter <[EMAIL PROTECTED]> wrote:
> On 9/14/05, Barney Boisvert <[EMAIL PROTECTED]> wrote:
> > My method of choice is typically to have a 'staging' working directory
> > checked out on the central dev server, in addition to personal working
> > directories for each developer.  That staging directory is then
> > rsynced up to the production cluster when changes are made.  This
> > ensures two things:
> >
> > 1) since no one directly edits the stage working directory, it's
> > impossible to push anything live that isn't checked into the
> > repository (since that's the only way to get it to staging).
> 
> This is key -- no "just a quick change" on the staging server which
> gets missed in source control. Pushing through a process is a great
> idea
> 
> > 2) pushes to the production cluster are always from a consistent
> > source; no way to push a partial version and get version conflicts.
> >
> > Basic routine looks like this:
> >
> > 1) developer makes changes and tests
> > 2) developer commits
> > 3) I update staging server
> > 4) testing on staging server
> > 5) tag release
> > 6) push to production
> >
> > Obviously steps 1-4 happen a lot more frequently than 5-6, and 1-2
> > happen a lot more than 3-4 as well.
> 
> I'd suggest giving CruiseControl a shot to remove the manual step 3,
> especially since you're already using Ant (right?). Then your staging
> server is always current and problems get noticed soon.
> 
> Of course this raises the whole issue of automating the *testing* in
> steps 1 and 4 :)
> 
> > cheers,
> > barneyb
> 

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218374
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: Detecting CFLOCK

2005-09-14 Thread Jim Davis
> -Original Message-
> From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 14, 2005 8:18 PM
> To: CF-Talk
> Subject: Re: Detecting CFLOCK
> 
> Well that's essentially what Jim suggested, but it's not thread-safe
> unless you write it the way Jim described.

Yeah... what he said.  ;^)

But, really - it's essentially the same thing.  The locks are server-wide,
so they take care of the multi-threading issue handily without having to
deal with the application scope.

So this solution will work in cases where you have no application defined. 

Jim Davis




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218373
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: Formatting text in IM Gateway

2005-09-14 Thread dcooper
You might try sending one to your bot with formatted text and see what it comes 
across as pretty easily.  It might be that each service uses it's own scheme 
(or something standard such as RTF).

Not sure...


>I am using an IM gateway. I would like some of the responses to have basic 
>formatting in the text (bold, ital).
>
>Anyone know how a message sent via gateways should be formatted to achieve 
>this?
>
>-- 
>Scott Stroz
>Boyzoid.com 
>___
>Some days you are the dog,
>Some days you are the tree.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218372
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: More on subversion

2005-09-14 Thread Paul
> > > I am the sole developer for a non-tech company.
> > >
> > Lots of us geeks are :)
> >
> Agreed :)
Funny, the discussions here made me think of everyone as part of some
well-oiled development machine in technical Utopia...  Glad I'm not alone in
my "loneliness"!

> In SVN, you're looking at post-commit hooks to automatically push out
> changes, but I'd suggest looking at Ant -- which lets you create
> deployment scripts. And then you can take your working
> deploy-on-demand scripts and put it all into CruiseControl, which is
> an opensource tool for continuous integration builds (e.g. changes
> automatically roll out to the target server continuously).
 
My brain actually started sweating.  I guess I'll just take this one step at
a time...

-pm


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218371
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: Using built-in zip Windows 2003/XP

2005-09-14 Thread Scott Stroz
Why not use the built-in java classes?

On 9/14/05, YC Nyon <[EMAIL PROTECTED]> wrote:
> 
> Hi,
> 
> I need to unzip and zip some files that is submitted by users. Got Winzip
> command line working using CF. However, i was wondering if i can utilitize
> the zip functions built-into Windows ZP/ Server 2003. That would save some
> licensing costs.
> 
> Thank you.
> 
> Nyon
> 
> 
> 
> 
> 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218370
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


Formatting text in IM Gateway

2005-09-14 Thread Scott Stroz
I am using an IM gateway. I would like some of the responses to have basic 
formatting in the text (bold, ital).

Anyone know how a message sent via gateways should be formatted to achieve 
this?

-- 
Scott Stroz
Boyzoid.com 
___
Some days you are the dog,
Some days you are the tree.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218369
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: SCM deployment options (was Re: Source Code Control Setup)

2005-09-14 Thread John Paul Ashenfelter
On 9/14/05, Barney Boisvert <[EMAIL PROTECTED]> wrote:
> My method of choice is typically to have a 'staging' working directory
> checked out on the central dev server, in addition to personal working
> directories for each developer.  That staging directory is then
> rsynced up to the production cluster when changes are made.  This
> ensures two things:
> 
> 1) since no one directly edits the stage working directory, it's
> impossible to push anything live that isn't checked into the
> repository (since that's the only way to get it to staging).

This is key -- no "just a quick change" on the staging server which
gets missed in source control. Pushing through a process is a great
idea
 
> 2) pushes to the production cluster are always from a consistent
> source; no way to push a partial version and get version conflicts.
> 
> Basic routine looks like this:
> 
> 1) developer makes changes and tests
> 2) developer commits
> 3) I update staging server
> 4) testing on staging server
> 5) tag release
> 6) push to production
> 
> Obviously steps 1-4 happen a lot more frequently than 5-6, and 1-2
> happen a lot more than 3-4 as well.

I'd suggest giving CruiseControl a shot to remove the manual step 3,
especially since you're already using Ant (right?). Then your staging
server is always current and problems get noticed soon.

Of course this raises the whole issue of automating the *testing* in
steps 1 and 4 :)
 
> cheers,
> barneyb


-- 
John Paul Ashenfelter
CTO/Transitionpoint
(blog) http://www.ashenfelter.com
(email) [EMAIL PROTECTED]

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218368
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: Using built-in zip Windows 2003/XP

2005-09-14 Thread YC Nyon
Hi,

I need to unzip and zip some files that is submitted by users. Got Winzip
command line working using CF. However, i was wondering if i can utilitize
the zip functions built-into Windows ZP/ Server 2003. That would save some
licensing costs.

Thank you.

Nyon




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218367
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: Newbie to XML

2005-09-14 Thread Stan Winchester
That was too easy! Thanks Andy & Michael!

>Try
>
>
>-Original Message-
>From: Stan Winchester [mailto:[EMAIL PROTECTED] 
>Sent: Wednesday, September 14, 2005 8:05 PM
>To: CF-Talk
>Subject: Newbie to XML
>
>I and am having trouble converting an XmlText element to a numeric value. 
>
>The scenario: I receive an XML packet from USPS where an XmlText element has
>a value of say 13.95. However, if I try and do any math on the XmlText it
>throws an error because it is not numeric. If I put a val function around
>it, the value is 0. How am I supposed to do any math with this XmlText
>element and other CF variables?
>
>For example:
>
>
>
>isXMLElem(theRate) == YES
>
>val(theRate) == 0
>
>Thank you,
>Aftershock Web Design, Inc.
>by: Stan Winchester
>President/Developer
>[EMAIL PROTECTED]  
>http://www.aftershockweb.com/   
>Phone 503-244-3440
>Fax 503-244-3454

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218366
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: cf_twoselectsrelated

2005-09-14 Thread Aaron Rouse
He was refering to this, I think he put the link in his email.

http://www.pengoworks.com/workshop/js/gateway/

It is not something built into CF

On 9/14/05, Mark Fuqua <[EMAIL PROTECTED]> wrote:
> 
> 
> 
> Second:
> 
> What is "the Client/Server Gateway JSAPI"? Is that one of the built-in
> gateways in cf7?
> 
> Third (sorry can't help myself):
> 
> How does that work?
> 
> Mark
> 
> 
> 
> 
> 
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218365
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: Can CF do this?

2005-09-14 Thread Claude Schneegans
 >>Most printers prefer 300dpi images for maximum quality...

Printers don't give a dam about DPIs...
Image do not have DPIs*, they just have pixels, the more pixels there are,
the better the image looks on the printer, period.

An image with 1000 pix at 75 dpi looks better than an image with 200 pis 
at 300 dpi (MUCH better)

*I know, there is some kind of "image resolution" info stored in some 
image format,
but this is one of the most stupid things I ever heard of:
- printers have a resolution**,
- scanners have a resolution**,
- camera have a resolution**,
but images are just virtual data with no dimension, so how could it have 
a "resolution" ?
An (electronic) image has NO INCHES, then what are "dots per inch" ?

** Note two: the correct term is not even "resolution", it should be 
"defininition", but anyway... ;-)


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


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218364
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: form validation utilizing database field types/sizes/etc

2005-09-14 Thread Claude Schneegans
 >>So how are you pulling your info?

As I said I use CFX_ODBCinfo 


 >> I'm guessing you're doing it all via odbc instead of java. 

Right, ODBCinfo was developped far before Allaire and MM went (crazy) 
with Java.
I'm working on some sort of CFX_JDBCinfo however.
It might take some times since Java is so much more cumbersome than C ;-)

 >>Do you look at the db type and then query it accordingly?

Actually not, this is the beauty of ODBC: it is (well almost) DB 
independant.
The only things that are DB dependent are a couple of things (flaws) not 
supported by some ODBC drivers.

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


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218363
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: cf_twoselectsrelated

2005-09-14 Thread Mark Fuqua
Hey, that is very cool.

Two questions:

What did you mean by:

"that accepts a parameter to 'preselect' records in the second select"
It seemed to me, and I don't mean this in a challenging way, that they
worked the same as , though without the skittish
javascript jiggies.

Second:

What is "the Client/Server Gateway JSAPI"?  Is that one of the built-in
gateways in cf7?

Third (sorry can't help myself):

How does that work?

Mark






~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218362
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: cf_twoselectsrelated

2005-09-14 Thread Aaron Rouse
I actually do my n-selects slightly different than the q-forms example and 
would not think it would effect the speed. However mine are near instant and 
use them for things like our organizational hierarchy and usually 5-selects 
related. I tried out that gateway a few years ago and was rather impressed 
with it, I seem to recall it running quickly. My tests with CFAJAX recently 
had kind of a noticeable pause to them that I did not care for.

On 9/14/05, Graham Pearson <[EMAIL PROTECTED]> wrote:
> 
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> While looking at the qforms for a 3-way related select box, I found
> that it was easier to use the Client/Server Gateway JSAPI to complete
> my task. I have also found that using the gateway is faster in
> processing then qforms. To see what I did with the Client/Server
> Gateway in a 3 Related Select Box head over to
> http://workshops.niesc.k12.in.us/index.cfm and Register for an Event.
> The first page displays the Related Select Boxes.
> 
> http://www.pengoworks.com/workshop/js/gateway/
> 
> 
> Just my .02
> 
> 
> Aaron Rouse wrote:
> 
> >I tried to send a old copy of two selects related that I think has the
> >requested feature. However if looking into alternatives to the tag then
> also
> >look here:
> >
> >http://www.pengoworks.com/qforms/docs/examples/n-related_selectboxes.htm
> >
> >On 9/14/05, Andrew Grosset <[EMAIL PROTECTED]> wrote:
> >
> >>>Does anyone have a version of cf_twoselectsrelated (or something 
> similar)
> >>>that accepts a parameter to 'preselect' records in the second select
> >>>depending upon what is selected in the first? Thanks.
> >>>
> >>>Mike
> >>
> >>CFAJAX
> >>
> >>http://www.indiankey.com/cfajax/examples/keyvalue.htm
> >>
> >>Andrew
> >>
> >>
> >
> >
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218361
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: cf_twoselectsrelated

2005-09-14 Thread Graham Pearson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
 
While looking at the qforms for a 3-way related select box, I found
that it was easier to use the Client/Server Gateway JSAPI to complete
my task. I have also found that using the gateway is faster in
processing then qforms. To see what I did with the Client/Server
Gateway in a 3 Related Select Box head over to
http://workshops.niesc.k12.in.us/index.cfm and Register for an Event.
The first page displays the Related Select Boxes.

http://www.pengoworks.com/workshop/js/gateway/


Just my .02


Aaron Rouse wrote:

>I tried to send a old copy of two selects related that I think has the
>requested feature. However if looking into alternatives to the tag then
also
>look here:
>
>http://www.pengoworks.com/qforms/docs/examples/n-related_selectboxes.htm
>
>On 9/14/05, Andrew Grosset <[EMAIL PROTECTED]> wrote:
>
>>>Does anyone have a version of cf_twoselectsrelated (or something similar)
>>>that accepts a parameter to 'preselect' records in the second select
>>>depending upon what is selected in the first? Thanks.
>>>
>>>Mike
>>
>>CFAJAX
>>
>>http://www.indiankey.com/cfajax/examples/keyvalue.htm
>>
>>Andrew
>>
>>
>
>

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218360
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: Newbie to XML

2005-09-14 Thread Andy
Try


-Original Message-
From: Stan Winchester [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, September 14, 2005 8:05 PM
To: CF-Talk
Subject: Newbie to XML

I and am having trouble converting an XmlText element to a numeric value. 

The scenario: I receive an XML packet from USPS where an XmlText element has
a value of say 13.95. However, if I try and do any math on the XmlText it
throws an error because it is not numeric. If I put a val function around
it, the value is 0. How am I supposed to do any math with this XmlText
element and other CF variables?

For example:



isXMLElem(theRate) == YES

val(theRate) == 0

Thank you,
Aftershock Web Design, Inc.
by: Stan Winchester
President/Developer
[EMAIL PROTECTED]  
http://www.aftershockweb.com/   
Phone 503-244-3440
Fax 503-244-3454





~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218359
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: Newbie to XML

2005-09-14 Thread Dawson, Michael
You probably need to add .xmlText to your xml element such as:



Also, use CFDUMP to show you everything in the xml packet if this
doesn't work.

M!ke

-Original Message-
From: Stan Winchester [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, September 14, 2005 8:05 PM
To: CF-Talk
Subject: Newbie to XML

I and am having trouble converting an XmlText element to a numeric
value. 

The scenario: I receive an XML packet from USPS where an XmlText element
has a value of say 13.95. However, if I try and do any math on the
XmlText it throws an error because it is not numeric. If I put a val
function around it, the value is 0. How am I supposed to do any math
with this XmlText element and other CF variables?

For example:



isXMLElem(theRate) == YES

val(theRate) == 0

Thank you,
Aftershock Web Design, Inc.
by: Stan Winchester
President/Developer
[EMAIL PROTECTED]
http://www.aftershockweb.com/
Phone 503-244-3440
Fax 503-244-3454





~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218358
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


Newbie to XML

2005-09-14 Thread Stan Winchester
I and am having trouble converting an XmlText element to a numeric value. 

The scenario: I receive an XML packet from USPS where an XmlText element has
a value of say 13.95. However, if I try and do any math on the XmlText it
throws an error because it is not numeric. If I put a val function around
it, the value is 0. How am I supposed to do any math with this XmlText
element and other CF variables?

For example:



isXMLElem(theRate) == YES

val(theRate) == 0

Thank you,
Aftershock Web Design, Inc.
by: Stan Winchester
President/Developer
[EMAIL PROTECTED]  
http://www.aftershockweb.com/   
Phone 503-244-3440
Fax 503-244-3454



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218357
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: Create Excel file

2005-09-14 Thread dcooper
You can use CFREPORT to create formatted Excel files very easily, using query 
data but we don't currently support multi-tabbed Excel spreadsheets.

HTH 

Damon

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218356
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: Can CF do this?

2005-09-14 Thread dcooper
fyi, here's a simple little business card designer we ship this as a simple 
sample app with ColdFuison 7 (done with simple Flash Forms):

http://www.macromedia.com/examples/cfgettingstarted/experience/snippets/Tags/cfform/examples/Business%20Card%20Wizard/index.cfm?locale=en

(mind the wrap)

It's in the Snippets Explorer if you installed Sample Apps and the "Getting 
Started Experience" when you installed ColdFusion 7.

Damon



> http://bluegelmedia.com.ecardbuilder.com/showcard.
> asp?CustomerID=EN849411462013889.
> 473&u=&P=1&C=&gs=&f=5&x=ac2&y=1&n=1&card_side=FRONT
> 
> Can CF do this? cfdocument and cfreport aren't that robust.
> 
> Is this example using some sort of Microsoft Word object model? 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218355
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: date error

2005-09-14 Thread Mark Fuqua
Thanks for your help.  I was using eq instead of = to set
session.reportdate.  CF did not like.

Mark

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 14, 2005 7:53 PM
To: CF-Talk
Subject: Re: date error


Are you passing in a string or a date object?  If the former, use
parseDateTime() first to parse the string into a date object.

cheers,
barneyb

On 9/14/05, Mark Fuqua <[EMAIL PROTECTED]> wrote:
> The query is actually not throwing an error any more.  Fixed the
> session.jobId, changed to #session.jobId#, duh.
>
> But, the query doen't return any records because the date is set to
> 1899-12-31.  Something to do with the createodbc fuction (or more
> truthfully, how I am using it).  The date is going in as 1899-12-31, even
> though I am passing in (or mean to anyway) 09/14/05.
>
> Thanks
>
> Mark
>
>

--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 100 invites.



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218354
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: Replace String

2005-09-14 Thread S . Isaac Dealey
Heh... Yeah, well... what can I say, I like to use XML tools for XML.
:) Except I generate XML with cfsavecontent... but I always use XML
tools to read it. :)

Your example needs a couple extra spaces tho, otherwise she'll get

from555-1212to555-5000

> Isaac you crazy guy!

> #ReplaceList(myString,
> ",,", "Phone
> number changed from,to,")#

> -Original Message-
> From: S.Isaac Dealey [mailto:[EMAIL PROTECTED]
> Sent: Thursday, 15 September 2005 2:46 a.m.
> To: CF-Talk
> Subject: Re: Replace String

> Hi Becky,

> What you're looking at is XML and it should be reasonably
> easy to
> convert this into your desired output using CF's native
> XML tools.
> Give this a shot:

> #mystring#

> 
>   Phone number changed from
>   #myxml.xml.token1.xmlText# to
>   #myxml.xml.token2.xmlText#
> 

> I could have given you an XSL template to translate the
> tokens, but
> that's a little more involved -- I figured this would be
> shorter and
> easier to follow in this case.


s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218353
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: Detecting CFLOCK

2005-09-14 Thread S . Isaac Dealey
Well that's essentially what Jim suggested, but it's not thread-safe
unless you write it the way Jim described.

> Why not just set an application variable when you enter
> the lock, and
> test for the value of that application variable.  If it is
> set to true
> for instance, tell them no, and use a meta refresh to try
> again in so
> many seconds... Just make sure you set the variable to
> false when then
> process finishes...

> On 9/14/05, S. Isaac Dealey <[EMAIL PROTECTED]> wrote:
>> >> -Original Message-
>> >> From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]
>> >> Sent: Wednesday, September 14, 2005 9:54 AM
>> >> To: CF-Talk
>> >> Subject: Re: Detecting CFLOCK
>> >>
>> >>
>> >> I don't usually write locks that are designed to throw
>> >> errors... I
>> >> generally write locks that are designed to wait for
>> >> the
>> >> previous lock
>> >> to release, and so I think my memory of how exactly
>> >> the
>> >> timeout works
>>
>> > I agree - I don't like to include exceptions as logic
>> > gates unless you
>> > really, really need to.
>>
>> > A slight variation on this that would eliminate the
>> > need
>> > for the exception
>> > is:
>>
>> Good call, Jim! :)
>>
>> I've just not worked with situations where I needed to
>> use cflock on
>> an optional process. At least not that I can recall...
>>
>>
>> s. isaac dealey   954.522.6080
>> new epoch : isn't it time for a change?
>>
>> add features without fixtures with
>> the onTap open source framework
>>
>> http://www.fusiontap.com
>> http://coldfusion.sys-con.com/author/4806Dealey.htm
>>
>>
>>
>>
>>

> ~~
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218352
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: date error

2005-09-14 Thread Barney Boisvert
Are you passing in a string or a date object?  If the former, use
parseDateTime() first to parse the string into a date object.

cheers,
barneyb

On 9/14/05, Mark Fuqua <[EMAIL PROTECTED]> wrote:
> The query is actually not throwing an error any more.  Fixed the
> session.jobId, changed to #session.jobId#, duh.
> 
> But, the query doen't return any records because the date is set to
> 1899-12-31.  Something to do with the createodbc fuction (or more
> truthfully, how I am using it).  The date is going in as 1899-12-31, even
> though I am passing in (or mean to anyway) 09/14/05.
> 
> Thanks
> 
> Mark
> 
> 

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218351
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: date error

2005-09-14 Thread Mark Fuqua
The query is actually not throwing an error any more.  Fixed the
session.jobId, changed to #session.jobId#, duh.

But, the query doen't return any records because the date is set to
1899-12-31.  Something to do with the createodbc fuction (or more
truthfully, how I am using it).  The date is going in as 1899-12-31, even
though I am passing in (or mean to anyway) 09/14/05.

Thanks

Mark




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218350
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: CSS and Firefox

2005-09-14 Thread Rick Faircloth
Thanks for the reply, Cutter...

It does seem an elegant and efficient way to design,
but I've been following discussions on the css-discuss
mailing list, and they sure spend a lot of time figuring out
design issues.

I'm just wondering if I'll be spending too much time trying
to make CSS design behave and not enough time coding CF.

I guess there's probably a common set of functional design
patterns that work well with all (mostly all) browsers and I
could learn what to stay away from...

What's been the key for making CSS work well for you
in dealing with incompatabilities between browsers?  Or does
it just seem that there are a lot of issues because the problems
are usually the only hot topics that are discussed on lists...

Rick


-Original Message-
From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 14, 2005 3:33 PM
To: CF-Talk
Subject: Re: CSS and Firefox


Rick,

Yes, I'm using CSS for all of my design (only using tables for tabular
data). Irie Radio is my first foray into Mach II, and every page
contains some dynamic data (much more to come). I've really had to
rethink some things structurally to leverage CF with a total CSS layout,
but in the end run I'm finding it to be much more flexible from a design
standpoint, especially as I modularize my code. Much easier to change
and maintain.

Cutter



Rick Faircloth wrote:

>Hi, Cutter...
>
>Are you using CSS as your primary design approach or tables?
>I say primary, because I'm sure you use both, but what do you
>use to do your basic page layout?
>
>And if you use CSS, how has it worked with dynamic pages and CF?
>
>Rick
>
>
>-Original Message-
>From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED]
>Sent: Wednesday, September 14, 2005 9:08 AM
>To: CF-Talk
>Subject: Re: CSS and Firefox
>
>
>! Thanks Damien. I had tried adjusting the internal content
>block sizes and forgot about my primaryContent container.
>
>The WebDeveloper Toolbar extension for Firefox is great for this as
>well. It's got an option in the Outline menu to Outline Block Level
>Elements, so I don't have to adjust my stylesheet to see all of these
>elements. Overall it's not perfect, but it has been a great tool.
>
>Thanks again Damien (and all those others who posted). Dropping that
>width just 5px (460px) was all it needed.
>
>Cutter
>
>Damien McKenna wrote:
>
>
>>Its simply a case of your content being too wide.  I made the following
>>change and it worked fine:
>>
>>#primaryContent {
>>  width:455px;
>>}
>>
>>I suggest adding the following to your main DIVs to see where everything
>>is *really* positioning:
>>
>>  border: 1px dashed red;
>>
>>
>>
>
>
>
>



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218349
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: Server Error

2005-09-14 Thread Ryan Guill
You can also view the logs in the administrator, its under the
debugging and loggins section.  At least you can on 7, i cant remember
on 6.1

On 9/14/05, Thomas Chiverton <[EMAIL PROTECTED]> wrote:
> On Wednesday 14 September 2005 03:50, Dwayne Cole wrote:
> > how do I check the log.
> 
> There is a log directory :-) Can't say where because you don't see if you are
> running any particular version, on any particular platfrom.
> 
> You can also go into the administrator and turn on the debugging options.
> 
> --
> 
> Tom Chiverton
> Advanced ColdFusion Programmer
> 
> 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218348
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: date error

2005-09-14 Thread Barney Boisvert
With Access, that error is usually because you've got an invalid field
in your statement, if I recall correctly.

cheers,
barneyb

On 9/14/05, Mark Fuqua <[EMAIL PROTECTED]> wrote:
> Tried that one (I guess 1899-12-31 is a default of some sort), now I get:
> 
> 
> Error Occurred While Processing Request
> Error Executing Database Query.
> [Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft
> Access Driver] Too few parameters. Expected 1.
> 

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218347
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: date error

2005-09-14 Thread Dave Watts
> Tried that one (I guess 1899-12-31 is a default of some 
> sort), now I get:
>
> Error Occurred While Processing Request
> Error Executing Database Query.
> [Macromedia][SequeLink JDBC Driver][ODBC 
> Socket][Microsoft][ODBC Microsoft
> Access Driver] Too few parameters. Expected 1.
> 
> The error occurred in
> C:\CFusionMX7\wwwroot\marylandPro\Reports\TheDailyFeed.cfm: line 20
> 
> 18 : FROM TimeCard
> 19 : WHERE TimeCard.Associate = session.Associate

Since there's no table called "Session" within your query, I assume that
session.Associate should be a CF variable and therefore wrapped in hashes
for evaluation?

In addition, I'd recommend that you use CFQUERYPARAM for all these variables
within your query.

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!


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218346
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: Your experience of Bluedragon.net?

2005-09-14 Thread Dave Watts
> my experience was this:
> 
> 1. it took a bit of finagling to get it up and running right.
> 2. when i finally got it up and running i felt like i was in a
> different world where errors werent the same, and i didnt know what to
> do to fix them
> 2.5 it really felt like a one's off kinda thing
> 3. my code that was working perfect on 6.1 didnt work perfect 
> on bd.net
> 4. i quickly removed it and put 6.1 back on
> 5. my company bought cfmx 7 and we arent about to do anything 
> different.

I suspect that you'd have had similar feelings if you started with BD and
moved to CFMX 6.1.

> 6. i felt like a traitor.

That's kind of silly. Macromedia is a software company; I don't recall
seeing a blood oath in the EULA.

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!


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218345
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: Detecting CFLOCK

2005-09-14 Thread Ryan Guill
Why not just set an application variable when you enter the lock, and
test for the value of that application variable.  If it is set to true
for instance, tell them no, and use a meta refresh to try again in so
many seconds... Just make sure you set the variable to false when then
process finishes...

On 9/14/05, S. Isaac Dealey <[EMAIL PROTECTED]> wrote:
> >> -Original Message-
> >> From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]
> >> Sent: Wednesday, September 14, 2005 9:54 AM
> >> To: CF-Talk
> >> Subject: Re: Detecting CFLOCK
> >>
> >>
> >> I don't usually write locks that are designed to throw
> >> errors... I
> >> generally write locks that are designed to wait for the
> >> previous lock
> >> to release, and so I think my memory of how exactly the
> >> timeout works
> 
> > I agree - I don't like to include exceptions as logic
> > gates unless you
> > really, really need to.
> 
> > A slight variation on this that would eliminate the need
> > for the exception
> > is:
> 
> Good call, Jim! :)
> 
> I've just not worked with situations where I needed to use cflock on
> an optional process. At least not that I can recall...
> 
> 
> s. isaac dealey   954.522.6080
> new epoch : isn't it time for a change?
> 
> add features without fixtures with
> the onTap open source framework
> 
> http://www.fusiontap.com
> http://coldfusion.sys-con.com/author/4806Dealey.htm
> 
> 
> 
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218344
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: date error

2005-09-14 Thread Mark Fuqua
Tried that one (I guess 1899-12-31 is a default of some sort), now I get:


Error Occurred While Processing Request
Error Executing Database Query.
[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft
Access Driver] Too few parameters. Expected 1.

The error occurred in
C:\CFusionMX7\wwwroot\marylandPro\Reports\TheDailyFeed.cfm: line 20

18 : FROM TimeCard
19 : WHERE TimeCard.Associate = session.Associate AND timeCard.ReportDate =
20 : #createodbcDate (session.ReportDate)# and TimeCard.job =
#session.jobId#
21 : 
22 :





SQLSELECT Associate, Job, ReportDate, TotalHours FROM TimeCard WHERE
TimeCard.Associate = session.Associate AND timeCard.ReportDate = {d
'1899-12-31'} and TimeCard.job = 26
DATASOURCE   mdfinish
VENDORERRORCODE   -3010
SQLSTATE   07002

Please try the following:
Check the ColdFusion documentation to verify that you are using the correct
syntax.
Search the Knowledge Base to find a solution to your problem.


Browser   Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR
1.0.3705; .NET CLR 1.1.4322)
Remote Address   127.0.0.1
Referrer
Date/Time   14-Sep-05 07:28 PM



-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 14, 2005 7:23 PM
To: CF-Talk
Subject: Re: date error


Remove the quotes from "session.reportDate".  You're passing a literal
string, not a variable reference.

cheers,
barneyb

On 9/14/05, Mark Fuqua <[EMAIL PROTECTED]> wrote:
> Hey there,
>
> Sorry for my ignorance.  Trying to test out .  Having trouble
with
> using a date in the where clause of my query.  I know I am more than
likely
> doing something really dumb and imagine the solution is quite simple.  So,
> before I spend more hours trying to figure this out...Thought I would ask
> for help.  Here is the code:
>
> 
>
> 
> 
> 
> 
> 
> SELECT Associate, Job, ReportDate, TotalHours
> FROM TimeCard
> WHERE TimeCard.Associate = session.Associate AND timeCard.ReportDate =
> #createodbcDate ("session.ReportDate")# and TimeCard.job = #session.jobId#
> 
>
>
> 
> 
> 
>
> 
> 
>
> 
>
>
>
>
> Here is the error message:
>
> Parameter validation error for function CREATEODBCDATE.
> The value of the parameter 1, which is currently "session.ReportDate",
must
> be a class java.util.Date value.
>
> Thanks,
>
> Mark
>
>

--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 100 invites.



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218343
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: Studio 8 available for download

2005-09-14 Thread Dave Watts
> i downloaded dreamweaver trial, and am getting an error 
> trying to install it...

I've often downloaded large MM installers, and had to download them again
because they've been corrupted. For CF, at least, they list checksums for
the files so you can use md5sums or a similar tool to ensure that it's not
corrupted.

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!


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218342
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: date error

2005-09-14 Thread Barney Boisvert
Remove the quotes from "session.reportDate".  You're passing a literal
string, not a variable reference.

cheers,
barneyb

On 9/14/05, Mark Fuqua <[EMAIL PROTECTED]> wrote:
> Hey there,
> 
> Sorry for my ignorance.  Trying to test out .  Having trouble with
> using a date in the where clause of my query.  I know I am more than likely
> doing something really dumb and imagine the solution is quite simple.  So,
> before I spend more hours trying to figure this out...Thought I would ask
> for help.  Here is the code:
> 
> 
> 
> 
> 
> 
> 
> 
> SELECT Associate, Job, ReportDate, TotalHours
> FROM TimeCard
> WHERE TimeCard.Associate = session.Associate AND timeCard.ReportDate =
> #createodbcDate ("session.ReportDate")# and TimeCard.job = #session.jobId#
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> Here is the error message:
> 
> Parameter validation error for function CREATEODBCDATE.
> The value of the parameter 1, which is currently "session.ReportDate", must
> be a class java.util.Date value.
> 
> Thanks,
> 
> Mark
> 
> 

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218341
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: Click-once submit button techniques?

2005-09-14 Thread Tony
maybe so, i havent tested that... all i know is the way i said, and it
worked, so i did not test further :)

if you do, let me knnow.

thanks.
tony

On 9/13/05, Charlie Griefer <[EMAIL PROTECTED]> wrote:
> hmmdid not know that.
> 
> somebody else had posted a similar response but appended a return
> true; after the this.disabled=true.  wonder if it was for the same
> reason...?
> 
> On 9/13/05, Tony <[EMAIL PROTECTED]> wrote:
> > charlie...
> >
> > in IE if you do not add ",this.form.submit();"
> > to your idea, it never submits.
> >
> > 
> >
> >
> > tony
> >
> >
> > On 9/12/05, Charlie Griefer <[EMAIL PROTECTED]> wrote:
> > > 
> > >
> > > On 9/12/05, Damien McKenna <[EMAIL PROTECTED]> wrote:
> > > > Anyone got a simple JS function to block multiple submit-button clicks?
> > > > I've looked a few times but never found anything simple that worked and
> > > > was cross-browser compatible.  Thanks.
> > > >
> > > > --
> > > > Damien McKenna - Web Developer - [EMAIL PROTECTED]
> > > > The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
> > > > #include 
> > > >
> > > >
> > > >
> > >
> > >
> >
> >
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218340
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


date error

2005-09-14 Thread Mark Fuqua
Hey there,

Sorry for my ignorance.  Trying to test out .  Having trouble with
using a date in the where clause of my query.  I know I am more than likely
doing something really dumb and imagine the solution is quite simple.  So,
before I spend more hours trying to figure this out...Thought I would ask
for help.  Here is the code:








SELECT Associate, Job, ReportDate, TotalHours
FROM TimeCard
WHERE TimeCard.Associate = session.Associate AND timeCard.ReportDate =
#createodbcDate ("session.ReportDate")# and TimeCard.job = #session.jobId#















Here is the error message:

Parameter validation error for function CREATEODBCDATE.
The value of the parameter 1, which is currently "session.ReportDate", must
be a class java.util.Date value.

Thanks,

Mark



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218339
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: Your experience of Bluedragon.net?

2005-09-14 Thread Matt Robertson
Something else I had forgotten but remembered once I checked LiveDocs... 
setvariable() is deprecated, so I stayed away from it.

Nowadays I prefer to never dump a var into a just the scope (i.e. 
variables.foo). Everything goes into structs if for no other reason than 
grouping related stuff together that belongs on a particular template. So I 
would be creating scope.structname.varname and never leaving the local scope 
undeclared like i did with 

#admin_boss.helloWorld#

-- 
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com 


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218338
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: SCM deployment options (was Re: Source Code Control Setup)

2005-09-14 Thread Barney Boisvert
My method of choice is typically to have a 'staging' working directory
checked out on the central dev server, in addition to personal working
directories for each developer.  That staging directory is then
rsynced up to the production cluster when changes are made.  This
ensures two things:

1) since no one directly edits the stage working directory, it's
impossible to push anything live that isn't checked into the
repository (since that's the only way to get it to staging).

2) pushes to the production cluster are always from a consistent
source; no way to push a partial version and get version conflicts.

Basic routine looks like this:

1) developer makes changes and tests
2) developer commits
3) I update staging server
4) testing on staging server
5) tag release
6) push to production

Obviously steps 1-4 happen a lot more frequently than 5-6, and 1-2
happen a lot more than 3-4 as well.

cheers,
barneyb

On 9/14/05, Douglas Knudsen <[EMAIL PROTECTED]> wrote:
> Curious how everyone is deploying code from an SCM tool like CVS.  CVS
> has an export function, but the darn thing will not overwrite files.
> I just forced my team into CVS use and I'm having them use tags for
> each release.  I'm thinking of using ANT to
> 1) perform a CVS export of module mymodule to mymodule_new folder
> 2) delete mymodule folder
> 3) rename mymodule_new folder to mymodule
> 
> Any other possible approaches?  I don't really want to 'checkout' the
> code to the production environment either.
> 
> DK
> 
-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218337
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: Query in application.cfm

2005-09-14 Thread Matthew Walker
If you are setting an application variable, it will be maintained for
the runtime of the app (i.e. until the server restarts). Why do you need
to rerun the query on every page view? Is the data static or does it
need to expire after a certain timeframe?

How about...


 


-Original Message-
From: Richard Colman [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 15 September 2005 11:01 a.m.
To: CF-Talk
Subject: Query in application.cfm

I need to keep track of a production system configuration. So, is is OK
to put a query into application.cfm, like:

--> Do a query into production settings table

--> set application variable depending on query results

--> drink a beer ;-)

Are there any issues, other than a query that runs every time a page is
executed and perhaps slows things down just a bit ... Would it be
quicker to read a file with CFFILE to get the application variable value
than run a very simple query??

Richard Colman






~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218336
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: CFCHART X-Axis Labelling...

2005-09-14 Thread Dan G. Switzer, II
Tom,

>Thanks for the hard work. It'll help me, too. I didn't know about the
>"isHideOverlapped" attribute, and that's obviously key.

I've been playing around with it to see if I should just create a wrapper
for another Java API or whether CFCHART will do the trick. Or even if I
should write another wrapper to the WebChart3D to allow for more
flexibility.

>The Macromedia folks readily acknowledge that many/most of the settings
>available through the .xml are not accessible within the cfchart tag. The
>argument is that they've exposed almost 30, and they didn't want to make
>the
>tag's attributes too confusing.

I can understand the confusing part. I think it's almost a little too
confusing now. However, what makes it difficult is how the tag syntax
doesn't really match up at all w/the actual WebChart3D syntax. This is what
makes it such a pain to map functionality from the WebCharts3D XML syntax to
what CF is actually doing.

That said they still need more flexibility. 

>What I'm suggesting, I guess, is that we make a feature request. Either to
>expose certain additional attributes that we have found to be relatively
>common needs -- or a way, within the cfchart tag, to have some sort of
>passthrough attribute that could take an xml string and override matching
>settings within the stylesheet (which I guess is sorta what the cfchart tag
>attributes do).

I'd at least like to see being able to pass in an XML file--at least then
you could load an XML sheet, modify it w/dynamic values and use it for the
chart.

I wonder if it would work to give us a  tag where we
could do something like:



Something like that could allow us to change properties/tag values of a
pre-defined stylesheet. If the branch/node doesn't exist in the sheet, CF
would generate an error.

That would at least give us flexibility to change some of the advanced
features without having to add a bunch of new attributes to the tags.

I think there a few features people would use in CFCHART if they knew they
existed.

For example, I was also able to figure out how to get a stacked bar chart to
print data labels on each segment of the chart. You can only do this by
modifying the XML files right now.

The one thing I'm trying to figure out now is if I can print the $(rowTotal)
on the outside, but have it just do it just once per series instead of for
each element. It doesn't make sense to have a stacked bar chart that prints
the total on the outside of each segment in the series--only after the very
last element in the series. 

Have you found a way to do that?

-Dan



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218335
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: form validation utilizing database field types/sizes/etc

2005-09-14 Thread Dave Carabetta
On 9/14/05, Mike Soultanian <[EMAIL PROTECTED]> wrote:
> I was wondering if there is a way to pull column information from oracle
> to help with form validation.  It would be really nice if I could set up
> my database and then have coldfusion read the setup of my tables and
> perform its form validation based on that.
> 
> I did some research on this and it seems like SQL server supports a
> standard format using INFORMATION_SCHEMA to return the column types and
> sizes and what not.  Is there some way to pull similar information from
> oracle so I can use that for form validation purposes?
> 

Yep. Look into using the USER_* tables (specifically, USER_TABLES and
USER_TAB_COLS). You can simply query those tables to get everything
you need.

Regards,
Dave.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218334
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: cf_twoselectsrelated

2005-09-14 Thread Aaron Rouse
I tried to send a old copy of two selects related that I think has the 
requested feature. However if looking into alternatives to the tag then also 
look here:

http://www.pengoworks.com/qforms/docs/examples/n-related_selectboxes.htm

On 9/14/05, Andrew Grosset <[EMAIL PROTECTED]> wrote:
> 
> >Does anyone have a version of cf_twoselectsrelated (or something similar)
> >that accepts a parameter to 'preselect' records in the second select
> >depending upon what is selected in the first? Thanks.
> >
> >Mike
> 
> CFAJAX
> 
> http://www.indiankey.com/cfajax/examples/keyvalue.htm
> 
> Andrew
> 
> 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218333
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: Replace String

2005-09-14 Thread Matthew Walker
Isaac you crazy guy! 

#ReplaceList(myString, ",,", "Phone
number changed from,to,")#

-Original Message-
From: S.Isaac Dealey [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 15 September 2005 2:46 a.m.
To: CF-Talk
Subject: Re: Replace String

Hi Becky,

What you're looking at is XML and it should be reasonably easy to
convert this into your desired output using CF's native XML tools.
Give this a shot:

#mystring#


Phone number changed from
#myxml.xml.token1.xmlText# to
#myxml.xml.token2.xmlText#


I could have given you an XSL template to translate the tokens, but
that's a little more involved -- I figured this would be shorter and
easier to follow in this case.


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218332
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: More on subversion

2005-09-14 Thread John Paul Ashenfelter
On 9/13/05, Damien McKenna <[EMAIL PROTECTED]> wrote:
> > -Original Message-
> > From: Paul [mailto:[EMAIL PROTECTED]
> >
> > I am the sole developer for a non-tech company.
> 
> Lots of us geeks are :)
> 
Agreed :)

> You could also investigate some scripts to automatically copy submitted
> code to the testing server, Subversion (and CVS and Perforce and..) can
> do some fun things like that.

In SVN, you're looking at post-commit hooks to automatically push out
changes, but I'd suggest looking at Ant -- which lets you create
deployment scripts. And then you can take your working
deploy-on-demand scripts and put it all into CruiseControl, which is
an opensource tool for continuous integration builds (e.g. changes
automatically roll out to the target server continuously).

-- 
John Paul Ashenfelter
CTO/Transitionpoint
(blog) http://www.ashenfelter.com
(email) [EMAIL PROTECTED]

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218331
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: Your experience of Bluedragon.net?

2005-09-14 Thread Matt Robertson
On 9/14/05, Raymond Camden <[EMAIL PROTECTED]> wrote:
> 
> Wow... no offense, but you use this?
> 
> 
> 
> #FirstName#
> 

Sort of. In looking at this I could have been mistaken. The code in question 
is



which contains among other things...

and then code to populate the struct...

and display like this:
#admin_boss.helloWorld#

My impression at the time was that the cfset would have not worked without a 
prepend of "variables." in front of it, so I would then be outputting

#variables.admin_boss.helloWorld#

I'm using an include rather than a tag for the sake of speed. I know thats 
heinous but the whole code block tested out to a decent speed improvement 
back when I originally worked it up, and I was trying to shave all I could 
off overall execution time.

I've never used setariable(). RTFM.

-- 
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218330
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: cf_twoselectsrelated

2005-09-14 Thread Andrew Grosset
>Does anyone have a version of cf_twoselectsrelated (or something similar)
>that accepts a parameter to 'preselect' records in the second select
>depending upon what is selected in the first?  Thanks.
>
>Mike

CFAJAX

http://www.indiankey.com/cfajax/examples/keyvalue.htm

Andrew

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218329
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: ColdFusion->Flex Struct

2005-09-14 Thread Ryan Guill
try referring to the structure keys as all caps.  Flex is case
sensative, and I believe the keys come in as all capital letters.

On 9/14/05, Greg Johnson <[EMAIL PROTECTED]> wrote:
> I have a CFC that query's a database to return 1 person and then creates
> a structure that has the individual fields then return the structure to
> Flex and use that to populate text areas.  But it won't work.  How
> should this be done?
> 
> --
> Greg Johnson
> Owner & Lead Technician
> [EMAIL PROTECTED]
> 
> Techno-Fix-It
> Filling the Gap Between the Store and the Repair Shop
> --
> www.technofixit.com
> Phone:(919)-371-1476
> Fax:(919)-882-9804
> P.O. Box 1094
> Morrisville, N.C. 27560
> 
> 
> 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218328
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: ColdFusion->Flex Struct

2005-09-14 Thread Fred Urban
Check with MM. A bug was found recently where MXML chokes on a struct due to 
the dot in the name.


 On 9/14/05, Greg Johnson <[EMAIL PROTECTED]> wrote: 
> 
> I have a CFC that query's a database to return 1 person and then creates
> a structure that has the individual fields then return the structure to
> Flex and use that to populate text areas. But it won't work. How
> should this be done?
> 
> --
> Greg Johnson
> Owner & Lead Technician
> [EMAIL PROTECTED]
> 
> Techno-Fix-It
> Filling the Gap Between the Store and the Repair Shop
> --
> www.technofixit.com 
> Phone:(919)-371-1476
> Fax:(919)-882-9804
> P.O. Box 1094
> Morrisville, N.C. 27560
> 
> 
> 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218327
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: SCM deployment options (was Re: Source Code Control Setup)

2005-09-14 Thread John Paul Ashenfelter
On 9/14/05, Douglas Knudsen <[EMAIL PROTECTED]> wrote:
> Curious how everyone is deploying code from an SCM tool like CVS.  CVS
> has an export function, but the darn thing will not overwrite files.
> I just forced my team into CVS use and I'm having them use tags for
> each release.  I'm thinking of using ANT to
> 1) perform a CVS export of module mymodule to mymodule_new folder
> 2) delete mymodule folder
> 3) rename mymodule_new folder to mymodule
> 
> Any other possible approaches?  I don't really want to 'checkout' the
> code to the production environment either.
> 

Regardless of the specific details, using Ant is pretty helpful since
you can abstract all of your deployment/release logic into a
cross-platform container that can integrate w/ darn near anything.

With Ant, all it sounds like you really need is the standard
build/compile/dist set of directories. The standard ant drill:
+ init directories (clear everything out, so you get a clean build.
can also use checkout or export, but have the problems you indicated)
+ CVS export into the build directory
+ copy to the compile directory (not necessary, but gives you a step
where you can use Ant filters)
+ copy the results to dist dir

Now you've got a dir of the latest files. If you can reach the server,
you can copy straight to the server in the last step. If you need to
(s)FTP/etc, Ant has tasks to help with that as well.

And then you can put it all in cruisecontrol :)
-- 
John Paul Ashenfelter
CTO/Transitionpoint
(blog) http://www.ashenfelter.com
(email) [EMAIL PROTECTED]

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218326
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


Query in application.cfm

2005-09-14 Thread Richard Colman
I need to keep track of a production system configuration. So, is is OK to
put a query into application.cfm, like:

--> Do a query into production settings table

--> set application variable depending on query results

--> drink a beer ;-)

Are there any issues, other than a query that runs every time a page is
executed and perhaps slows things down just a bit ... Would it be quicker to
read a file with CFFILE to get the application variable value than run a
very simple query??

Richard Colman




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218325
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: deselect grid item in flash form

2005-09-14 Thread Fred Urban
Sure is. Add this to your button: yourDatagrid.selectedIndex = undefined

 On 9/9/05, Ida Chen <[EMAIL PROTECTED]> wrote: 
> 
> Is there any way to deselect an item in cfgrid (flash form) without 
> holding ctrl key? For example, is there anyway to bind a DESELECT button to 
> the flash grid? Thanks.
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218324
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: Migrating verity collections

2005-09-14 Thread Rich Brant
That sounded so good, but I tried that as well as ther various other
possibilities, but none worked :(



On 9/13/05, Jeff Garza <[EMAIL PROTECTED]> wrote:
> Try setting the search type to "internet basic".  That did the trick for me.
> The default search type seems to have changed.
> 
> Cheers,
> 
> Jeff Garza
> 
> 
> -Original Message-
> From: Rich Brant [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 13, 2005 5:29 PM
> To: CF-Talk
> Subject: Migrating verity collections
> 
> I have a client who's migrated from CF5 to 7 and is finding differing search
> results produced by the Verity collections on the new site. I'm aware of the
> fact that 7 ships with a very different Verity than did 5, but beyond that
> I'm not clear on what would cause the results to be different. Maybe that's
> just the nature of the new Verity engine and how it indexes data, I'm just
> looking to see if a) someone can confirm that behavior and hopefully, b)
> provide some insight as to how to get the same results out of the search
> from the site running 5 to the new site running 7.
> 
> I can verify that the databases are the same and the queries which populate
> the collections are also identical..
> 
> Thanks!
> 
> 
> -rich
> 
> 
> 
> 
> 
> 
> 
> 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218323
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: possible CFMX 6.1 cfschedule bug

2005-09-14 Thread Tom Kitta
You should always check whatever a scheduled process run and whatever that
run was successful (i.e. no error was thrown). One simple way to make sure
it run and the run was a success is to send an email at the end of the
process file to your (or some designated for that purpose) email account.
Unless your process runs very often, this is a simple and quick solution to
process running check - minimal work needed. Also, outlook and most other
mail clients can be set to sort your incoming mail into folders allowing you
to just take a quick look and know whatever there was a problem or not.

TK
http://www.tomkitta.com

-Original Message-
From: Ryan Guill [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 14, 2005 3:38 PM
To: CF-Talk
Subject: Re: possible CFMX 6.1 cfschedule bug


Not sure if it is supposed to work that way or not, but one thing you

could do is to log if a scheduled task is successfull or not (this may
already be logged for you) and create another scheduled task that runs
every couple hours or so and have it check that success.  if it finds
a scheduled task that did not run correctly it could fire it off
again... might take some work but it should solve the problem.

On 9/14/05, Victor Moore <[EMAIL PROTECTED]> wrote:
> I think I found a problem with cfschedule. If the CFMX service is
restarted
> at the same time when a scheduled task is running, the task is not
> rescheduled to run as planned and subsequently it doesn't run after the
> service is restarted. It needs a manual "push". Is this a known behaviour?
> anyway to fix it short of using an external scheduler?
>   Thanks
> Victor
>
>
>



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218322
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: Your experience of Bluedragon.net?

2005-09-14 Thread Tony
my experience was this:

1. it took a bit of finagling to get it up and running right.
2. when i finally got it up and running i felt like i was in a
different world where errors werent the same, and i didnt know what to
do to fix them
2.5 it really felt like a one's off kinda thing
3. my code that was working perfect on 6.1 didnt work perfect on bd.net
4. i quickly removed it and put 6.1 back on
5. my company bought cfmx 7 and we arent about to do anything different.
6. i felt like a traitor.

just my opinion and experience.

tony

On 9/14/05, Andy Mcshane <[EMAIL PROTECTED]> wrote:
> Hi all, I am in the process of setting up a development machine to evaluate 
> Bluedragon .Net edition. The intention is to merge 2 of our .Net & Coldfusion 
> MX & 7 servers into 1 server (for reasons unknown to me, hey-ho!). I would 
> like to hear of anybody's experience, good & bad, of using Bluedragon.net, 
> specifically any tags not suported, tags that work differently, any 
> Coldfusion 7 functionality, ease of integration/problems etc. This is not 
> meant to cause any flame war as to which is better as there is no intention 
> of moving from one specific version to another, we will still be running 
> Coldfusion & .Net servers anyway. I would just like to keep my options open 
> and have experience of multitple environments.
> 
> 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218321
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: Studio 8 available for download

2005-09-14 Thread Tony
i downloaded dreamweaver trial, and am getting an error trying to install it...

i know my machine has the balls to run the program? what gives?

anyone else having the same issue?

tony

On 9/13/05, Damien McKenna <[EMAIL PROTECTED]> wrote:
> FYI the various Studio 8 tools are now available for download from
> macromedia.com.
> 
> --
> Damien McKenna - Web Developer - [EMAIL PROTECTED]
> The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
> #include 
> 
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218320
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: possible CFMX 6.1 cfschedule bug

2005-09-14 Thread Ryan Guill
Not sure if it is supposed to work that way or not, but one thing you
could do is to log if a scheduled task is successfull or not (this may
already be logged for you) and create another scheduled task that runs
every couple hours or so and have it check that success.  if it finds
a scheduled task that did not run correctly it could fire it off
again... might take some work but it should solve the problem.

On 9/14/05, Victor Moore <[EMAIL PROTECTED]> wrote:
> I think I found a problem with cfschedule. If the CFMX service is restarted
> at the same time when a scheduled task is running, the task is not
> rescheduled to run as planned and subsequently it doesn't run after the
> service is restarted. It needs a manual "push". Is this a known behaviour?
> anyway to fix it short of using an external scheduler?
>   Thanks
> Victor
> 
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218319
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


Migrating verity collections

2005-09-14 Thread Rich Brant
(this is repost - my apologies if anyone gets this twice, but I sent
this last night and it appears to have gotten lost in space)

I have a client who's migrated from CF5 to 7 and is finding differing
search results produced by the Verity collections on the new site. I'm
aware of the fact that 7 ships with a very different Verity than did
5, but beyond that I'm not clear on what would cause the results to be
different. Maybe that's just the nature of the new Verity engine and
how it indexes data, I'm just looking to see if a) someone can confirm
that behavior and hopefully, b) provide some insight as to how to get
the same results out of the search from the site running 5 to the new
site running 7.

I can verify that the databases are the same and the queries which
populate the collections are also identical..

Thanks!


-rich

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218318
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: When to use Application var?

2005-09-14 Thread Calvin Ward
You can also have fun with creating a Settings Object to store in the
application scope as well instead of just placing the values directly in the
application scope... 

-Original Message-
From: Matt Robertson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, September 14, 2005 12:53 PM
To: CF-Talk
Subject: Re: When to use Application var?

I would use the cached query / request scope if I had to worry about CF5
compatibility. Then it will keep you from having to worry about cflocking. 
If you are on CF6+ and know your code will always stay there use the
application scope.
 --
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com 




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218317
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


CFC caching?

2005-09-14 Thread George Abraham
All,
I am relatively new to CFCs, so pardon the (perhaps) stupid question. I have 
a CFC like so:
















I made a simple mistake of misspelling the stored procedure and named it 
'CreateNewAuditLogEntry'. Of course there was a spitting out of "This SP 
name CreateNewAuditLogEntry is not available". I go back and change the name 
and add that prefix "upIns_". However on running the routine, I get the 
error again that the "This SP name CreateNewAuditLogEntry is not available". 
But, I changed the spelling and how come it is repeating the old error? 
Which leads me to believe that somewhere, something is being cached. Now I 
am also reminded of other CFCs that I inherited or worked with previously 
that gave me similar problems of retention of old settings.

Oh mighty CF-Talkers, what have I encountered? Is there some setting that I 
have not set? CFMX7 on Windows 2000, by the way.

TIA
George


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218316
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: 2005 Dates bug

2005-09-14 Thread Barney Boisvert
dayOfWeek takes a date, not a day.  You want this:

dayOfWeekAsString(dayOfWeek(createDate(year(date), month(date), 1)))

firstDayOfMonth returns the day offset from the year for that date,
not the date itself.

cheers,
barneyb

On 9/14/05, Doug Bedient <[EMAIL PROTECTED]> wrote:
> Is this a bug? When I run this code it does not give me the correct first day 
> of the month. 2006 is fine.
> 
> 
> #DayOfWeekAsString(DayOfWeek(FirstDayOfMonth(date)))#
> 
> 

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218315
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


2005 Dates bug

2005-09-14 Thread Doug Bedient
Is this a bug? When I run this code it does not give me the correct first day 
of the month. 2006 is fine.


#DayOfWeekAsString(DayOfWeek(FirstDayOfMonth(date)))#

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218314
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: Your experience of Bluedragon.net?

2005-09-14 Thread Calvin Ward
Keep in mind that the compatibility guide is not up to date with the current
version of ColdFusion MX (7 which was released in March I believe, so we are
closing in a year since that release)...

-Original Message-
From: Matt Robertson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, September 14, 2005 4:10 PM
To: CF-Talk
Subject: Re: Your experience of Bluedragon.net?

Check out the BD compatibility guide on their site. 

http://www.newatlanta.com/products/bluedragon/self_help/docs/6_2/BlueDragon_
62_CFML_Compatibility_Guide.pdf

"Item 3.2: Setting variable names indirectly" was the first brick wall I hit
and stopped me dead in my tracks. I would have to rewrite how every text
system-level element is displayed everywhere in my CMS, given how I display
text to allow its translateability.

If they ever fix that I'd take another look.

--
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com 




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218313
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: Your experience of Bluedragon.net?

2005-09-14 Thread Raymond Camden
Yeah, I pretty much only do that now. Although I'll sometimes use
setVariable in a custom tag to return data. It 'feels" like it is more
obvious to me, when reading the code, that Im returning it.

Either way - I'm waiting on Matt to respond. :) I really want to know
why he did that. (And I hope that doesn't sound antagonistic - I
really am curious.)

On 9/14/05, Mark A Kruger <[EMAIL PROTECTED]> wrote:
> Ray... even setvariable( ) is overkill in mx - right?
> 
> How about
> 
>  
> 
> #firstname#
> 

-- 
===
Raymond Camden, Director of Development for Mindseye, Inc (www.mindseye.com)

Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : ray.camdenfamily.com
Yahoo IM : cfjedimaster

"My ally is the Force, and a powerful ally it is." - Yoda

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218312
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: Can CF do this?

2005-09-14 Thread S . Isaac Dealey
>  >>I figured this would work:

> It won't do exactly the same:
> First it will not generate an image file,
> second, if the fonts are not istalled on client side,
> results are
> unpredictable.
> With ColdFusion, a CFX tag using the TG library would do
> it.

I thought the cfdocument tag would import the font from the OS into
the PDF.

s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218311
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: XML - force empty tag

2005-09-14 Thread S . Isaac Dealey
> The main thing I hate about the functions is having to
> keep a "handle"
> to each element, when nesting elements, and then having to
> append child
> elements to the parent.  It is kind of messy doing that,
> too.

It's more overhead, but you should be able to get the document root
for any given element using XMLSearch(packet,"/") -- which can then be
used to generate nodes, so you don't have to explicitly pass the
document around along with the individual nodes.

s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218310
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: Can CF do this?

2005-09-14 Thread S . Isaac Dealey
> Would the generated PDF with print ready? In other words,
> even if I am using a 300 dpi jpeg image as the background,
> use cfdocument to create a PDF, at what resolution is it
> distilled at? I had heard 96 dpi which is n't high enough
> for print...

Why would we create a tool to distill print documents that doesn't
distill them with enough quality to print them?


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218309
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: form validation utilizing database field types/sizes/etc

2005-09-14 Thread Mike Soultanian
Hey Claude,
So how are you pulling your info?  I'm guessing you're doing it all via 
odbc instead of java.  Do you look at the db type and then query it 
accordingly?

Thanks,
Mike

Claude Schneegans wrote:
> I'm working on a db tool based on CFX_ODBCinfo
> (see 
> http://www.contentbox.com/claude/customtags/ODBCInfo/E/TestODBCInfo.cfm?p=hf 
> )
> It is able to generate source code for FORMs with many parameters set 
> according to
> information about table, fields, etc.
> For example, MAXLENGTH are set automatically in INPUT fields, VALUEs are
> initialized from columns names, etc.
> A query to get the values is also generated.
>  From there, adding some code for data validation wouldn't be too difficult.
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218308
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: Can CF do this?

2005-09-14 Thread Bryan Stevenson
Don't know Rick...but if not, you can use iText (which is behind CFDOCUMENT) 
directly to do whatever you want in the creation process of a PDF (including 
DPI)

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
- Original Message - 
From: "Rick King" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, September 14, 2005 1:55 PM
Subject: Re: Can CF do this?


> Would the generated PDF with print ready? In other words, even if I am 
> using a 300 dpi jpeg image as the background, use cfdocument to create a 
> PDF, at what resolution is it distilled at? I had heard 96 dpi which is 
> n't high enough for print...
>
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218307
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: Can CF do this?

2005-09-14 Thread Claude Schneegans
 >>I figured this would work:

It won't do exactly the same:
First it will not generate an image file,
second, if the fonts are not istalled on client side, results are 
unpredictable.
With ColdFusion, a CFX tag using the TG library would do it.


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218306
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: XML as a database? Please say yes!

2005-09-14 Thread S . Isaac Dealey
>>Yeah, these queries in particular look like they
>>could both easily be shortened down to something
>>along the lines of
>>
>>SELECT * FROM vProductOptions where prodID = #url.prodid#
>>
>>With a view -- which would probably be useful in several
>>places and a much easier solution than XML.
>>
>>> Why don't you use DB Views? A couple of Views
>>> should make your db access a lot easier.
>>

> K, thanks for the input! I'll be workin' on it.

> Thanks,
> Will

Welcome

I got busy before and didn't actually look at the samples you'd posted
until I saw Nimer's suggestion to use a view and then I looked at them
and thought "you know, he's right". :)


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218305
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: XML - force empty tag

2005-09-14 Thread Dawson, Michael
If you use CFSAVECONTENT to create your XML, there is no reason why you
can't validate it afterwards with the xmlValidate() function.  Unless,
you don't have a DTD or schema.

I use the xml functions to create relatively large packets of xml data
every week.  I previously used CFSAVECONTENT, but that left me with tons
of whitespace.  I could have then wrapped all my elements with CFOUTPUT,
but this xml packet contains some logic to determine if child elements
should be created or not.  That would have been more-cumbersome that
using the functions.

The main thing I hate about the functions is having to keep a "handle"
to each element, when nesting elements, and then having to append child
elements to the parent.  It is kind of messy doing that, too.

I never did a performance comparison, however, so I can't say which is
better.

M!ke 

-Original Message-
From: Jim Davis [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, September 14, 2005 10:00 AM
To: CF-Talk
Subject: RE: XML - force empty tag 

There may be performance differences... I would guess that
CFSAVEDCONTENT is quicker than multiple function calls.

CFSAVEDCONTENT may also be more error prone (since you're essentially
hand-coding the XML)... but then again the native XML functions are
cumbersome and numerous so that may lead to more debugging.

All told it seems very similar to the long and heated debate in the
JavaScript community over whether you should just produce XML and use
things like "innerHTML" to fetch it or use the DOM model to
produce/build it (and the DOM JavaScript model is much, MUCH more
complex than the CF model).

In the end I think, in both cases, it's pretty much free choice.
Although the proponents for "real" DOM manipulation seem a bit more
rabid to me.  But for all their passion they aren't really any more
convincing.  ;^)

Jim Davis

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218304
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: Can CF do this?

2005-09-14 Thread Kevin Aebig
There are a few issues with the following concept:

>> The only sure way to do this is to create 
>> a single file that will go to the printer
>> and can be viewed on the screen.

Most printers prefer 300dpi images for maximum
quality... and needless to say that most printers
also prefer getting the concept as a high 
resolution TIFF or TARGA.

I've done this app with Flash, but only for
designing and client interaction, not to output 
the actual proof.

Cheers,

Kevin

-Original Message-
From: S.Isaac Dealey [mailto:[EMAIL PROTECTED] 
Sent: September 14, 2005 2:43 PM
To: CF-Talk
Subject: Re: Can CF do this?

Ahh... gotcha...

> Yes, PDF will work, and coldfusion is getting better all
> the time at
> manipulating them. As is Java.

> I was just pointing out that a background image with text
> over the top
> might not give enough fidelity.

> Although PDFs require additional plugins installed to view
> it in a
> browser, where a .jpg does not. And a jpg is easier to
> embed in a page
> than is a pdf file surrounded by userinterface.

> On 9/14/05, S. Isaac Dealey <[EMAIL PROTECTED]> wrote:
>> > This would not give you the exact positioning of text,
>> > nor
>> > the color
>> > and fonts that will be on the final printed card.
>>
>> > The idea is to output to the screen basically pixel
>> > exact
>> > representations of the print version of the product.
>>
>> > The only sure way to do this is to create a single file
>> > that will go
>> > to the printer and can be viewed on the screen.
>>
>> Wouldn't that be the case if you used the same PDF to
>> generate the
>> card (and had the same fonts installed on the computer
>> that prints
>> them)? I thought that was part of the purpose of the PDF
>> format.

s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm






~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218303
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: Can CF do this?

2005-09-14 Thread Rick King
Would the generated PDF with print ready? In other words, even if I am using a 
300 dpi jpeg image as the background, use cfdocument to create a PDF, at what 
resolution is it distilled at? I had heard 96 dpi which is n't high enough for 
print...

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218302
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: Your experience of Bluedragon.net?

2005-09-14 Thread S . Isaac Dealey
I agree... though I'd hate to have to rewrite a whole system that used
that...

> Wow... no offense, but you use this?

> 
> 
> #FirstName#

> Can I ask why? I've never liked that format, preferring
> setVariable or
> variables[..] instead. Is there a reason why you chose to
> use this?

> On 9/14/05, Matt Robertson <[EMAIL PROTECTED]> wrote:
>> Check out the BD compatibility guide on their site.
>>
>> http://www.newatlanta.com/products/bluedragon/self_help/d
>> ocs/6_2/BlueDragon_62_CFML_Compatibility_Guide.pdf
>>
>> "Item 3.2: Setting variable names indirectly" was the
>> first brick wall I hit
>> and stopped me dead in my tracks. I would have to rewrite
>> how every text
>> system-level element is displayed everywhere in my CMS,
>> given how I display
>> text to allow its translateability.
>>
>> If they ever fix that I'd take another look.
>>
>> --
>> --mattRobertson--
>> Janitor, MSB Web Systems
>> mysecretbase.com 


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218301
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: XML as a database? Please say yes!

2005-09-14 Thread Will Tomlinson
>Yeah, these queries in particular look like they could both easily be
>shortened down to something along the lines of
>
>SELECT * FROM vProductOptions where prodID = #url.prodid#
>
>With a view -- which would probably be useful in several places and a
>much easier solution than XML.
>
>> Why don't you use DB Views? A couple of Views
>> should make your db access a lot easier.
>


K, thanks for the input! I'll be workin' on it. 

Thanks,
Will

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218300
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: Can CF do this?

2005-09-14 Thread S . Isaac Dealey
Ahh... gotcha...

> Yes, PDF will work, and coldfusion is getting better all
> the time at
> manipulating them. As is Java.

> I was just pointing out that a background image with text
> over the top
> might not give enough fidelity.

> Although PDFs require additional plugins installed to view
> it in a
> browser, where a .jpg does not. And a jpg is easier to
> embed in a page
> than is a pdf file surrounded by userinterface.

> On 9/14/05, S. Isaac Dealey <[EMAIL PROTECTED]> wrote:
>> > This would not give you the exact positioning of text,
>> > nor
>> > the color
>> > and fonts that will be on the final printed card.
>>
>> > The idea is to output to the screen basically pixel
>> > exact
>> > representations of the print version of the product.
>>
>> > The only sure way to do this is to create a single file
>> > that will go
>> > to the printer and can be viewed on the screen.
>>
>> Wouldn't that be the case if you used the same PDF to
>> generate the
>> card (and had the same fonts installed on the computer
>> that prints
>> them)? I thought that was part of the purpose of the PDF
>> format.

s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218299
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: Your experience of Bluedragon.net?

2005-09-14 Thread Mark A Kruger
Ray... even setvariable( ) is overkill in mx - right?

How about



#firstname#

...eh?

I do remember a lot of code like the sample in the old 4.x days

-mark

P.S. Are you going to give us your lecture on how expensive evaluate( )
is... seems like a natural segue.


-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 14, 2005 3:36 PM
To: CF-Talk
Subject: Re: Your experience of Bluedragon.net?


Wow... no offense, but you use this?



#FirstName#

Can I ask why? I've never liked that format, preferring setVariable or
variables[..] instead. Is there a reason why you chose to use this?

On 9/14/05, Matt Robertson <[EMAIL PROTECTED]> wrote:
> Check out the BD compatibility guide on their site.
>
>
http://www.newatlanta.com/products/bluedragon/self_help/docs/6_2/BlueDragon_
62_CFML_Compatibility_Guide.pdf
>
> "Item 3.2: Setting variable names indirectly" was the first brick wall I
hit
> and stopped me dead in my tracks. I would have to rewrite how every text
> system-level element is displayed everywhere in my CMS, given how I
display
> text to allow its translateability.
>
> If they ever fix that I'd take another look.
>
> --
> --mattRobertson--
> Janitor, MSB Web Systems
> mysecretbase.com 
>
>
>



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218298
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: Your experience of Bluedragon.net?

2005-09-14 Thread Raymond Camden
Wow... no offense, but you use this?



#FirstName#

Can I ask why? I've never liked that format, preferring setVariable or
variables[..] instead. Is there a reason why you chose to use this?

On 9/14/05, Matt Robertson <[EMAIL PROTECTED]> wrote:
> Check out the BD compatibility guide on their site.
> 
> http://www.newatlanta.com/products/bluedragon/self_help/docs/6_2/BlueDragon_62_CFML_Compatibility_Guide.pdf
> 
> "Item 3.2: Setting variable names indirectly" was the first brick wall I hit
> and stopped me dead in my tracks. I would have to rewrite how every text
> system-level element is displayed everywhere in my CMS, given how I display
> text to allow its translateability.
> 
> If they ever fix that I'd take another look.
> 
> --
> --mattRobertson--
> Janitor, MSB Web Systems
> mysecretbase.com 
> 
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218297
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: Your experience of Bluedragon.net?

2005-09-14 Thread Rey Bango
Hi Matt,

Get ready to take another look.

You'll see a fix for that in the BD 6.2.1 updater, which is
planned for release in mid-November.

Rey...

Matt Robertson wrote:
> Check out the BD compatibility guide on their site. 
> 
> http://www.newatlanta.com/products/bluedragon/self_help/docs/6_2/BlueDragon_62_CFML_Compatibility_Guide.pdf
> 
> "Item 3.2: Setting variable names indirectly" was the first brick wall I hit 
> and stopped me dead in my tracks. I would have to rewrite how every text 
> system-level element is displayed everywhere in my CMS, given how I display 
> text to allow its translateability.
> 
> If they ever fix that I'd take another look.
> 

-- 
http://www.ReyBango.com

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218296
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: Can CF do this?

2005-09-14 Thread Bryan Stevenson
> Yes, PDF will work, and coldfusion is getting better all the time at
> manipulating them. As is Java.

and guess how CF does itJava (iText on SourceForge) ;-)

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

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218295
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: Can CF do this?

2005-09-14 Thread Jerry Johnson
Yes, PDF will work, and coldfusion is getting better all the time at
manipulating them. As is Java.

I was just pointing out that a background image with text over the top
might not give enough fidelity.

Although PDFs require additional plugins installed to view it in a
browser, where a .jpg does not. And a jpg is easier to embed in a page
than is a pdf file surrounded by userinterface.

On 9/14/05, S. Isaac Dealey <[EMAIL PROTECTED]> wrote:
> > This would not give you the exact positioning of text, nor
> > the color
> > and fonts that will be on the final printed card.
> 
> > The idea is to output to the screen basically pixel exact
> > representations of the print version of the product.
> 
> > The only sure way to do this is to create a single file
> > that will go
> > to the printer and can be viewed on the screen.
> 
> Wouldn't that be the case if you used the same PDF to generate the
> card (and had the same fonts installed on the computer that prints
> them)? I thought that was part of the purpose of the PDF format.
>

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218294
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: Your experience of Bluedragon.net?

2005-09-14 Thread Matt Robertson
Check out the BD compatibility guide on their site. 

http://www.newatlanta.com/products/bluedragon/self_help/docs/6_2/BlueDragon_62_CFML_Compatibility_Guide.pdf

"Item 3.2: Setting variable names indirectly" was the first brick wall I hit 
and stopped me dead in my tracks. I would have to rewrite how every text 
system-level element is displayed everywhere in my CMS, given how I display 
text to allow its translateability.

If they ever fix that I'd take another look.

-- 
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218293
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: Can CF do this?

2005-09-14 Thread Ken Ferguson
Here's the link to ASPImage: 
http://www.reg.net/product.asp?ID=1072&templateid=128
There you go. It's $69. Like I said, I used it and it was simple -- 
worked perfectly too.
You can check it out in the checkout process at www.citm.com (please 
don't blame me for the nasty site please, it was like 7 years ago and I 
was young... I thought it was nice at the time..)

--Ferg



Jerry Johnson wrote:

>This would not give you the exact positioning of text, nor the color
>and fonts that will be on the final printed card.
>
>The idea is to output to the screen basically pixel exact
>representations of the print version of the product.
>
>The only sure way to do this is to create a single file that will go
>to the printer and can be viewed on the screen.
>
>The closest I have been able to get on this is the PS->pdf and PS->jpg version.
>
>I think on newer versions of CF (I'm still in 5.0 land), this will be
>possible with a combination of cfdocument, cfcontent and some open
>source java libs.
>
>On 9/14/05, S. Isaac Dealey <[EMAIL PROTECTED]> wrote:
>  
>
>>Boy everybody's throwing out complicated solutions...
>>
>>I figured this would work:
>>
>>
>>
>>stuff here
>>
>>
>>
>>
>>
>>>dunno exactly how this site is doing it, but I have played
>>>with
>>>something similar in PHP. Just use an image file as a
>>>template an
>>>doverlay it with teh user data...BAMM!  Can do this in CF
>>>via Java or
>>>one of the custom tags around for image manipulation.
>>>  
>>>
>>>DK
>>>  
>>>
>>>On 9/14/05, Rick King <[EMAIL PROTECTED]> wrote:
>>>  
>>>
http://bluegelmedia.com.ecardbuilder.com/showcard.asp?Cus
tomerID=EN849411462013889.473&u=&P=1&C=&gs=&f=5&x=ac2&y=1
&n=1&card_side=FRONT

Can CF do this? cfdocument and cfreport aren't that
robust.

Is this example using some sort of Microsoft Word object
model?


>>s. isaac dealey   954.522.6080
>>new epoch : isn't it time for a change?
>>
>>add features without fixtures with
>>the onTap open source framework
>>
>>http://www.fusiontap.com
>>http://coldfusion.sys-con.com/author/4806Dealey.htm
>>
>>
>>
>>
>>
>>
>>
>
>

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218291
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: Can CF do this?

2005-09-14 Thread S . Isaac Dealey
> This would not give you the exact positioning of text, nor
> the color
> and fonts that will be on the final printed card.

> The idea is to output to the screen basically pixel exact
> representations of the print version of the product.

> The only sure way to do this is to create a single file
> that will go
> to the printer and can be viewed on the screen.

Wouldn't that be the case if you used the same PDF to generate the
card (and had the same fonts installed on the computer that prints
them)? I thought that was part of the purpose of the PDF format.


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218292
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: Can CF do this?

2005-09-14 Thread S . Isaac Dealey
> S. Isaac Dealey wrote:
>> Boy everybody's throwing out complicated solutions...
>>
>> I figured this would work:
>>
>> 
>>  
>>  stuff here
>>  
>> 

> Don't you mean 

> ;)

Bite me Style Boy. :P

Usually yeah... though I tend to revert to older markup for things
like generating Excel sheets because I've seen some style elements
flat ignored by Excel. That may just be Excel tho, so it may not have
any bearing on a cfdocument PDF...


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218290
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: CFCHART X-Axis Labelling...

2005-09-14 Thread Tom McNeer
Dan,

On 9/14/05, Dan G. Switzer, II <[EMAIL PROTECTED]> wrote:
> 
> Ok, after playing around w/the WebCharts3D Designer for a couple of days 
> off
> and on, I finally figured out how to get all the labels to show up.



And so you've found the wonders of the intuitive interface of WebCharts3D 
Designer and its equally wonderful (lack of) meaningful documentation. 

 orientation="Horizontal"/>
> 
> 
> * Change the  tag's "isHideOverlapped" attribute to "false".


Thanks for the hard work. It'll help me, too. I didn't know about the 
"isHideOverlapped" attribute, and that's obviously key.

The Macromedia folks readily acknowledge that many/most of the settings 
available through the .xml are not accessible within the cfchart tag. The 
argument is that they've exposed almost 30, and they didn't want to make the 
tag's attributes too confusing.

On the other hand, I've already run into several instances where I needed to 
set dynamic values for some of the non-exposed attributes -- much the way 
you're suggesting for the already-exposed "height" attribute.

In one case, for instance, the x-axis of my chart contains date values, and 
the recordset used for the charting may well contain a value for each day of 
a given period. When a user chooses to view a 3-month span, for instance, I 
want the axis to show labels for individual days. But when "1 Year" is 
selected, I want the labels to show for a week, not a day.

That can be accomplished with 

[code omitted]



But since there's no way to pass the dynamic value through, I have to switch 
stylesheets to switch the label units.

So there are clearly many cases where one needs to create multiple 
stylesheets, sometimes with only a difference in a single attribute.

Sorta clunky, huh?

What I'm suggesting, I guess, is that we make a feature request. Either to 
expose certain additional attributes that we have found to be relatively 
common needs -- or a way, within the cfchart tag, to have some sort of 
passthrough attribute that could take an xml string and override matching 
settings within the stylesheet (which I guess is sorta what the cfchart tag 
attributes do).

Thoughts?


-- 
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
530 Means St NW, Suite 110
Atlanta, GA 30318
404.589.0560


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218289
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: Can CF do this?

2005-09-14 Thread Jerry Johnson
This would not give you the exact positioning of text, nor the color
and fonts that will be on the final printed card.

The idea is to output to the screen basically pixel exact
representations of the print version of the product.

The only sure way to do this is to create a single file that will go
to the printer and can be viewed on the screen.

The closest I have been able to get on this is the PS->pdf and PS->jpg version.

I think on newer versions of CF (I'm still in 5.0 land), this will be
possible with a combination of cfdocument, cfcontent and some open
source java libs.

On 9/14/05, S. Isaac Dealey <[EMAIL PROTECTED]> wrote:
> Boy everybody's throwing out complicated solutions...
> 
> I figured this would work:
> 
> 
> 
> stuff here
> 
> 
> 
> > dunno exactly how this site is doing it, but I have played
> > with
> > something similar in PHP. Just use an image file as a
> > template an
> > doverlay it with teh user data...BAMM!  Can do this in CF
> > via Java or
> > one of the custom tags around for image manipulation.
> 
> > DK
> 
> > On 9/14/05, Rick King <[EMAIL PROTECTED]> wrote:
> >> http://bluegelmedia.com.ecardbuilder.com/showcard.asp?Cus
> >> tomerID=EN849411462013889.473&u=&P=1&C=&gs=&f=5&x=ac2&y=1
> >> &n=1&card_side=FRONT
> >>
> >> Can CF do this? cfdocument and cfreport aren't that
> >> robust.
> >>
> >> Is this example using some sort of Microsoft Word object
> >> model?
> 
> s. isaac dealey   954.522.6080
> new epoch : isn't it time for a change?
> 
> add features without fixtures with
> the onTap open source framework
> 
> http://www.fusiontap.com
> http://coldfusion.sys-con.com/author/4806Dealey.htm
> 
> 
> 
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218288
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: Configuration problem - CFMX7

2005-09-14 Thread Jacob
Go to C:\CfusionMX7\bin\connectors

Try Upgrade IIS connectors .bat file.

Jacob

-Original Message-
From: Tom McNeer [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, September 14, 2005 12:37 PM
To: CF-Talk
Subject: Configuration problem - CFMX7

Hi Folks,

I have done a few CFMX7 upgrades, and a couple of clean installs, with no 
issues. But today, I ran into one.

The server OS is Windows Server 2003. New server, never had CF installed.

The install went as usual. The installer identified that IIS was installed, 
and was told to use all IIS websites.

I allowed the installation of the CFIDE at the default location, underneath 
wwwroot.

At the completion of the install, the CF Admin opened properly. I have used 
it to add datasources, etc. All works fine.

Until -- I attempt to access a .cfm file outside of the CFIDE directory. I 
get the basic IIS "Unable to display this page" message.

It does not appear to be a file permissions issue, since I can access an 
HTML file at the root of the site. But when I change the extension of the 
same file to .cfm, the error appears.

As you'd expect, given the fact that the CF Admin is running, Macromedia 
Extensions are enabled in the IIS manager. I've gone through all the IIS 
settings I can find, and compared them to another server where everything's 
okay, and I can find no differences.

Has anyone run into this before?

-- 
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
530 Means St NW, Suite 110
Atlanta, GA 30318
404.589.0560




~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218287
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: Can CF do this?

2005-09-14 Thread Rick Root
S. Isaac Dealey wrote:
> Boy everybody's throwing out complicated solutions...
> 
> I figured this would work:
> 
> 
>   
>   stuff here
>   
> 

Don't you mean 

;)



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218286
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


cf_twoselectsrelated

2005-09-14 Thread Mike Klostermeyer
Does anyone have a version of cf_twoselectsrelated (or something similar)
that accepts a parameter to 'preselect' records in the second select
depending upon what is selected in the first?  Thanks.

Mike



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218285
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


Configuration problem - CFMX7

2005-09-14 Thread Tom McNeer
Hi Folks,

I have done a few CFMX7 upgrades, and a couple of clean installs, with no 
issues. But today, I ran into one.

The server OS is Windows Server 2003. New server, never had CF installed.

The install went as usual. The installer identified that IIS was installed, 
and was told to use all IIS websites.

I allowed the installation of the CFIDE at the default location, underneath 
wwwroot.

At the completion of the install, the CF Admin opened properly. I have used 
it to add datasources, etc. All works fine.

Until -- I attempt to access a .cfm file outside of the CFIDE directory. I 
get the basic IIS "Unable to display this page" message.

It does not appear to be a file permissions issue, since I can access an 
HTML file at the root of the site. But when I change the extension of the 
same file to .cfm, the error appears.

As you'd expect, given the fact that the CF Admin is running, Macromedia 
Extensions are enabled in the IIS manager. I've gone through all the IIS 
settings I can find, and compared them to another server where everything's 
okay, and I can find no differences.

Has anyone run into this before?

-- 
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
530 Means St NW, Suite 110
Atlanta, GA 30318
404.589.0560


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218284
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: CSS and Firefox

2005-09-14 Thread Cutter (CF-Talk)
Rick,

Yes, I'm using CSS for all of my design (only using tables for tabular 
data). Irie Radio is my first foray into Mach II, and every page 
contains some dynamic data (much more to come). I've really had to 
rethink some things structurally to leverage CF with a total CSS layout, 
but in the end run I'm finding it to be much more flexible from a design 
standpoint, especially as I modularize my code. Much easier to change 
and maintain.

Cutter



Rick Faircloth wrote:

>Hi, Cutter...
>
>Are you using CSS as your primary design approach or tables?
>I say primary, because I'm sure you use both, but what do you
>use to do your basic page layout?
>
>And if you use CSS, how has it worked with dynamic pages and CF?
>
>Rick
>
>
>-Original Message-
>From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED]
>Sent: Wednesday, September 14, 2005 9:08 AM
>To: CF-Talk
>Subject: Re: CSS and Firefox
>
>
>! Thanks Damien. I had tried adjusting the internal content
>block sizes and forgot about my primaryContent container.
>
>The WebDeveloper Toolbar extension for Firefox is great for this as
>well. It's got an option in the Outline menu to Outline Block Level
>Elements, so I don't have to adjust my stylesheet to see all of these
>elements. Overall it's not perfect, but it has been a great tool.
>
>Thanks again Damien (and all those others who posted). Dropping that
>width just 5px (460px) was all it needed.
>
>Cutter
>
>Damien McKenna wrote:
>  
>
>>Its simply a case of your content being too wide.  I made the following
>>change and it worked fine:
>>
>>#primaryContent {
>>  width:455px;
>>}
>>
>>I suggest adding the following to your main DIVs to see where everything
>>is *really* positioning:
>>
>>  border: 1px dashed red;
>>
>>
>>
>
>
>
>

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218283
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


  1   2   3   >