Re: Subversion appliance use attempt...

2007-10-21 Thread Zaphod Beeblebrox
yep, that's exactly right.  The vmplayer is acting like a completely
separate server so you'll need a client on your xp machine and
TortoiseSVN is an awesome one.

I got my repo configured exactly how I wanted it and then moved the
virtual machine to another machine on my network.  I still get giddy
thinking how easy it is to move and configure virtual servers.


On 10/21/07, Rick Faircloth <[EMAIL PROTECTED]> wrote:
> Alright... got the passwd file edited and added myself
> as a user.
>
> Now the instructions say I can access repo with "my favorite
> Subversion Client."  The author recommends TortoiseSVN, which
> sounds good to me, but at this point I'm confused about something.
>
> I've got vmware player running a Linux distro with Subversion running.
> So I'm going to install a *Windows* Subversion client to access my repo?
>
> I install TortoiseSVN in Windows XP, then it will reach into Subversion
> running on the Linux distro for my access to the repo?  Huh???
>
> So, I'm downloading TortoiseSVN now...
>
> Rick
>
>
> > -Original Message-
> > From: Zaphod Beeblebrox [mailto:[EMAIL PROTECTED]
> > Sent: Sunday, October 21, 2007 7:42 PM
> > To: CF-Talk
> > Subject: Re: Subversion appliance use attempt...
> >
> > no no noo.don't make someone use vim ! :)
> >
> > the subversion appliance has nano (which has the common commands
> > displayed at all times)  installed on it.
> >
> > use this command
> >
> > sudo nano /var/svnroot/wsmrepo/conf/passwd
> >
> > Then, I think there's an example in the text file itself.  but the format is
> >
> > user = password
> >
> > after that, save it with ctrl-o, then enter, then ctrl-x then you're done.
> >
> > almost any configuration file in a linux system is editable by any
> > text editor.
> >
> > On 10/21/07, Matthew Williams <[EMAIL PROTECTED]> wrote:
> > > Rick,
> > >
> > > To edit that file, you need to run a command like vi 
> > > (http://en.wikipedia.org/wiki/Vi), or vim 
> > > (http://en.wikipedia.org/wiki/Vim_%28text_editor%29), or emacs
> > >  (http://en.wikipedia.org/wiki/Emacs).  Let's say you pick
> > > "vi" as your editor of choice.  After vi  you'll be shown the
> > > contents of the file.  It is NOT editable at this point.  You can use
> > > the pageup, pagedown, and arrow keys on the keyboard to navigate the
> > > file.  To make edits, you need to first hit the insert key (or "I", if I
> > > remember correctly) and then edit away.  When finished, you need to type
> > > ":", then either "wq" and enter to write changes to disk, or "!q" and
> > > enter to cancel your changes.
> > >
> > > Matthew Williams
> > > Geodesic GraFX
> > > www.geodesicgrafx.com/blog
> > >
> > >
> >
> >
>
> 

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

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


Re: parsing problem

2007-10-21 Thread Zaphod Beeblebrox
You could use this regular expression:

rereplace(file_contents,"([^,]*), (.*)\n(.*)\n[ ](.*)\n","line:\1|\2|\3","ALL)

This will convert the 3 lines into something like this:

line:Abbot|John|[EMAIL PROTECTED]
line:Abrahams|Fred|[EMAIL PROTECTED]
etc

You might have to tweak it a little, but that should get you started.




On 10/21/07, Seamus Campbell <[EMAIL PROTECTED]> wrote:
> Hi, I'm trying to parse this list below and am having problems.
> The list comes to me in this format and I have no control over it. I want to 
> parse it to insert first name, last name, email into a database.
> I'm trying to read the file and cannot work out a way to have 2 line/para 
> breaks as a delimiter.
> Can somebody please help
> Seamus
>
>
> Abbott, John
> E-mail Address(es):
>   [EMAIL PROTECTED]
>
> Abrahams, Fred
> E-mail Address(es):
>   [EMAIL PROTECTED]
>
> Adams, Kerin
> E-mail Address(es):
>   [EMAIL PROTECTED]
>
> Allen, Norman
> E-mail Address(es):
>   [EMAIL PROTECTED]
>
> Allen, Xerxes
> E-mail Address(es):
>   [EMAIL PROTECTED]
>
> 

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

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


Re: Subversion appliance use attempt...

2007-10-21 Thread Zaphod Beeblebrox
By default it's called SvnSrv.  You can edit that, but I haven't done it yet.

How do I rename the computer?
You need to edit /etc/hostname and /etc/hosts. Both need to be
changed at the same time, or the sudo command will no longer work. If
that happens, use the recovery option at bootup to fix it. One option
is to use the command gksudo gedit /etc/hosts /etc/hostname, edit both
and save both.


On 10/21/07, Rick Faircloth <[EMAIL PROTECTED]> wrote:
> Thanks for the offer to help, Zaphod.
>
> I get to the server login... login successfully.
>
> I used the command line to create '/var/svnroot/wsmrepo' successfully.
>
> Now, it says to
>
> Then I have no idea how to accomplish the next
> instructions:
>
> "Next, we need to add at least 1 user,
>  so that we can access our repository,
>  and have at least a little bit of security.
>  In the folder for the repository you just created,
>  go into the "conf" folder. You then need to edit the "passwd" file."
>
> I am able to change the dir on the command line to
> /var/svnroot/wsmrepo/conf, but I have no idea what to type in
> to edit the passwd file.  It doesn't give me a file extension, either.
>
> "There are instructions in that file, so it should be pretty obvious.
>  Once that is done, you can simply access the repository using
>  svn://servername/reponame, in your favorite Subversion client.
>  Mine is TortoiseSVN."
>
> At this point, once I'm not sure what my servername is... Where would I get
> that info?
>
> Rick
>
>
>
>
> > -Original Message-
> > From: Zaphod Beeblebrox [mailto:[EMAIL PROTECTED]
> > Sent: Sunday, October 21, 2007 3:35 PM
> > To: CF-Talk
> > Subject: Re: Subversion appliance use attempt...
> >
> > nope, no graphical interface for the server at all.
> >
> > The instructions on the Young Tech. site were decent, what step are
> > you lost on, maybe I could help.
> >
> > The great thing is, once you've configured it, it' really a "set and
> > forget" type of thing.
> >
> > On 10/21/07, Rick Faircloth <[EMAIL PROTECTED]> wrote:
> > > Well... that didn't go well.
> > >
>
>
>
> 

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

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


Re: Subversion appliance use attempt...

2007-10-21 Thread Zaphod Beeblebrox
no no noo.don't make someone use vim ! :)

the subversion appliance has nano (which has the common commands
displayed at all times)  installed on it.

use this command

sudo nano /var/svnroot/wsmrepo/conf/passwd

Then, I think there's an example in the text file itself.  but the format is

user = password

after that, save it with ctrl-o, then enter, then ctrl-x then you're done.

almost any configuration file in a linux system is editable by any
text editor.

On 10/21/07, Matthew Williams <[EMAIL PROTECTED]> wrote:
> Rick,
>
> To edit that file, you need to run a command like vi 
> (http://en.wikipedia.org/wiki/Vi), or vim 
> (http://en.wikipedia.org/wiki/Vim_%28text_editor%29), or emacs
>  (http://en.wikipedia.org/wiki/Emacs).  Let's say you pick
> "vi" as your editor of choice.  After vi  you'll be shown the
> contents of the file.  It is NOT editable at this point.  You can use
> the pageup, pagedown, and arrow keys on the keyboard to navigate the
> file.  To make edits, you need to first hit the insert key (or "I", if I
> remember correctly) and then edit away.  When finished, you need to type
> ":", then either "wq" and enter to write changes to disk, or "!q" and
> enter to cancel your changes.
>
> Matthew Williams
> Geodesic GraFX
> www.geodesicgrafx.com/blog
>
> 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

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


Re: Subversion appliance use attempt...

2007-10-21 Thread Zaphod Beeblebrox
nope, no graphical interface for the server at all.

The instructions on the Young Tech. site were decent, what step are
you lost on, maybe I could help.

The great thing is, once you've configured it, it' really a "set and
forget" type of thing.

On 10/21/07, Rick Faircloth <[EMAIL PROTECTED]> wrote:
> Well... that didn't go well.
>
> I ran the Subversion appliance from Young Technologies,
> but couldn't get past the command line interface and couldn't
> figure out how to implement the instructions that
> Young Tech has on their site.
>
> I'm not sure I was at the spot they wanted me to be in their
> instructions, but I couldn't accomplish anything other than
> logging on.
>
> Add a user went nowhere, so I couldn't get into a repository.
>
> Isn't there supposed to be a graphical interface with this thing?
>
> Rick
>
>
>
> > -Original Message-
> > From: Rick Faircloth [mailto:[EMAIL PROTECTED]
> > Sent: Sunday, October 21, 2007 11:33 AM
> > To: CF-Talk
> > Subject: RE: DEATH to HOMESITE
> >
> > Thanks, Zaphod...
> >
> > I areadyhave vmWare player installed, so I'll give this
> > appliance a look-over.
> >
> > Rick
> >
> > > -Original Message-
> > > From: Zaphod Beeblebrox [mailto:[EMAIL PROTECTED]
> > > Sent: Sunday, October 21, 2007 12:37 AM
> > > To: CF-Talk
> > > Subject: Re: DEATH to HOMESITE
> > >
> > > This one.
> > >
> > > http://www.young-technologies.com/Software/Subversion-Virtual-Machine/
> > >
> > >
> > >
>
>
>
>
> 

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

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


Re: DEATH to HOMESITE

2007-10-20 Thread Zaphod Beeblebrox
This one.

http://www.young-technologies.com/Software/Subversion-Virtual-Machine/



On 10/20/07, Rick Faircloth <[EMAIL PROTECTED]> wrote:
> Which subversion appliance are you using?
>
> Rick
>
> > -Original Message-
> > From: Zaphod Beeblebrox [mailto:[EMAIL PROTECTED]
> > Sent: Saturday, October 20, 2007 10:39 PM
> > To: CF-Talk
> > Subject: Re: DEATH to HOMESITE
> >
> > I've started using a subversion vmware appliance in the free vmware
> > player.  Best of both worlds there.
> >
> >
> >
>
>
>
>
> 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

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


Re: DEATH to HOMESITE

2007-10-20 Thread Zaphod Beeblebrox
I've started using a subversion vmware appliance in the free vmware
player.  Best of both worlds there.



On 10/20/07, Cutter (CF Related) <[EMAIL PROTECTED]> wrote:
> It can be confusing. Fortunately other's have gone before you on this road.
>
> http://www.trajiklyhip.com/blog/index.cfm/2007/3/12/Configuring-a-Development-Environment-with-Apache-Subversion-TortoiseSVN-and-Subclipse
>
> Steve 'Cutter' Blades
> Adobe Certified Expert
> Advanced Macromedia ColdFusion MX 7 Developer
> 
> http://blog.cutterscrossing.com
>
> "The best way to predict the future is to help create it"
>
>
>
> Robert Rawlins - Think Blue wrote:
> > This is very true Brian, I agree whole heartedly,
> >
> > However, in the past I've always found subversion a total pain in the arse
> > to setup and configure, it's just very confusing. My guess is that this
> > stems from the fact that it was seemingly developed with Linux in mind, with
> > command lines and compiling binaries, if they made it a little more
> > intuitive to people (I suspect a large number of new developers will opt for
> > windows OS as its 'what they know'), instead of the linuxy style methods
> > they've used, I'm sure it would be more widely adopted by less experienced
> > developers.
> >
> > It reminds me of the same reason why so many people pick up the bad habit of
> > developing using access databases, it's simply because to a beginner
> > developer they seem more accessible than a proper DBMS, As a novice
> > developer trying to figure out installation and configuration of MySQL or
> > SQL Server is quite confusing, especially when you have to setup management
> > studio or phpMyAdmin, whereas the concept of a single file which can be
> > easily created in a nice desktop based GUI is very simple to grasp, so most
> > novice developers will start with access, especially considering all that
> > functionality comes 'out of the box' with m$ office.
> >
> > I completely agree that source control through a proper SVN approach will
> > pay dividends, but it's just one of those concepts that isn't
> >
> > A) Publicised to people properly, if you mention subversion to most amateur
> > developers they would stare blankly back at you, however, ftp is very
> > familiar.
> >
> > And.
> >
> > B) Accessible and simple enough to implement, even with these 'one touch'
> > style solutions that subversion released for windows users.
> >
> > They're just my thoughts,
> >
> > Another quick gripe is with some of the guides and support documents I've
> > read in the past, they're always typical Linux user style blog posts and
> > forum remarks, showing a total lack of sympathy toward new and learning
> > developers, making wide sweeping statements like 'and then simply update
> > your system environment variables, and you're done!'... amateur users won't
> > have a clue what you're on about, even someone whom is reasonably
> > experienced with Linux development finds that stuff confusing.
> >
> > Heh, man I'm in a tired and grouchy mood today, can you tell? Lol
> >
> > Sorry for the rantish post chaps,
> >
> > Rob
> >
> > -Original Message-
> > From: Brian Kotek [mailto:[EMAIL PROTECTED]
> > Sent: 20 October 2007 15:43
> > To: CF-Talk
> > Subject: Re: DEATH to HOMESITE
> >
> > I was going to say the same thing. This issue isn't really a case of
> > Homesite vs. Eclipse, it's about always, always, always using source
> > control. Always.
> >
> >
> > On 10/19/07, Paul Vernon <[EMAIL PROTECTED]> wrote:
> >
> >>> F*cking HomeSite+ wiped out my file on the server (AGAIN). I do a file
> >>> write, it hangs, and I have to kill HomeSite. When I start homesite
> >>> again, guess what, the file is gone from the server.
> >>>
> >> Source control, Source control, Source control or to put it more
> >> concisely,
> >> SVN, SVN, SVN!
> >>
> >> There are some great Subversion plugins for CFEclipse :-) Subclipse is the
> >> one I believe most of the CFEclipse users use...
> >>
> >> Paul
> >>
> >>
> >>
> >>
> >>
> >
> >
> >
> >
>
> 

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

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


Re: Frameworks: Post vs. Get

2007-10-15 Thread Zaphod Beeblebrox
I thought that the google web accelerator did all the convincing
anyone needed.  If I recall correctly, a lot of intranets had a
problem with it in that lots of GET operations would alter data.  The
user would be logged in, and gwa would automatically fetch all GET
links.  There'd be no security concerns since deleting records would
be a valid operation for a logged in user.


On 10/15/07, Brian Kotek <[EMAIL PROTECTED]> wrote:
> You're proving my point. Going through your app and changing any 
> tag that targets a link that changes data on the server to use POST instead
> of GET *is* an increase in complexity. And, if I understand you correctly,
> you're doing it just to get a pop-up window from your browser? A pop up that
> anyone can ignore, or that a spider can just bypass anyway? When under the
> hood you're still going to have to have logic to make sure the user is
> logged in, and editing data that they are allowed to edit, etc.?
>
> Is this really the best reason someone can offer to justify making all
> data-editing URLs use the POST method? I know it isn't anyone's job here to
> convince me, and that I'm the one ignoring this rule, but so far I'm still
> not seeing any particularly compelling reason to be concerned.
>
>
> On 10/15/07, Jochem van Dieten <[EMAIL PROTECTED]> wrote:
> >
> > Brian Kotek wrote:
> > > I'm aware of this "rule", it just doesn't make any sense to me. In fact,
> > if
> > > adhered to it would add a good bit of complexity to otherwise simple
> > apps.
> >
> > I don't believe it adds complexity for the developer. Have you ever seen
> > that popup that says: "The page you are trying to view contains
> > POSTDATA. If you resend the data, any action the form carried out (such
> > as a search or online purchase) will be repeated. To resend the data,
> > click OK. Otherwise, click Cancel."
> >
> > Have you ever tried coding something like that throughout your entire
> > application? How much complexity did that add compared to just using the
> > proper HTTP method and let the browser take care of warning the user?
> > Not to mention the usability gains in using GET where appropriate and
> > *not* confronting the user with this popup on pages that don't make
> > changes.
> >
> > Jochem
> >
> >
> >
>
>
> 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

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


Re: connectstring in CF8

2007-10-13 Thread Zaphod Beeblebrox
It's odd because I've been using jruby lately which uses jdbc
connections and it allows you to dynamically set your datasources all
day long.  It's one feature of CF5 that I really miss.

On 10/13/07, Dave Watts <[EMAIL PROTECTED]> wrote:
> > Was there a problem with it?
>
> I seem to recall that JDBC didn't support it.
>
> Dave Watts, CTO, Fig Leaf Software
>
>
> 

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

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


Re: ColdFusion stopped?!?!

2007-10-10 Thread Zaphod Beeblebrox
We had a windows update roll through today that screwed up a bunch of
our servers until a complete powerdown and reboot.


On 10/10/07, Tim Do <[EMAIL PROTECTED]> wrote:
> PLEASE help!  Ever since 8am this morning ColdFusion has gone down every
> few minutes.
>
>
>
> The only thing that I can see in the server.log is:
> "Information","Thread-0","10/10/07","09:34:45",,"ColdFusion stopped"
>
>
>
> I've checked all the log files under cfusionmx7/logs and
> cfusionmx7/runtime/logs but didn't see anything that stands out.  Any
> ideas of what to do?
>
>
>
> Thanks!
>
> Tim
>
>
>
>
>
>
>
> 

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

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


Re: SOT: How do you version control with your CF code?

2007-10-07 Thread Zaphod Beeblebrox
This is where something like Rails migrations would be a great thing
for a CF framework to copy.  All of your database changes are kept in
ruby files that describe table creation, column additions, table
deletions, and if so needed, raw sql statements to create functions or
stored procs.  Every ruby migration file is a migration point and has
two methods 'up' and 'down', anything you do in the up method must be
reflected as an opposite action in the down method.  So if you're at
migration 18 and you want to go back to version 16, "rake db:migrate
VERSION=16" will do all the necessary changes for you.



On 10/7/07, Aaron Rouse <[EMAIL PROTECTED]> wrote:
> Could you explain that with a little more detail.  What code(language) is
> going to track all of the table/column changes and track any data
> manipulation that is needed between versions of the database structure?
> Also if you are creating a database of that era, say version 1.5, does this
> mean it is going to drop the database of the version 2.0 era in order to
> have a place to put the 1.5 era?
>
> On 10/7/07, Dale Fraser <[EMAIL PROTECTED]> wrote:
> >
> > Control the databases through code.
> >
> > Then if you check out your code at 1.3.2
> >
> > It should be able to create databases of that era.
> >
> > Regards
> > Dale Fraser
> >
> > http://learncf.com
> >
> > -Original Message-
> > From: Aaron Rouse [mailto:[EMAIL PROTECTED]
> > Sent: Monday, 8 October 2007 11:23 AM
> > To: CF-Talk
> > Subject: Re: SOT: How do you version control with your CF code?
> >
> > What do you do when client needs a fix on version 1.5 which has
> > significant
> > database differences when compared to version 2.0 that you are currently
> > working on?  We just maintain a separate copy of the DB for the versions
> > for
> > cases like that but just curious on  how others do it.
> >
> > On 10/7/07, J.J. Merrick <[EMAIL PROTECTED]> wrote:
> > >
> > > Rick,
> > >
> > >
> > >
> > > 3. Branch and tagging. "me: ::working on version 2.0:: client: I need
> > > to you fix something that is broken on the live server! me: ok::
> > > switch to the trunk which is version 1.5, fix, deploy, switch back to
> > > v2.0 branch" no mess and no thought
> > >
> >
> >
> >
> >
> >
>
> 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

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


Re: SOT: How do you version control with your CF code?

2007-10-07 Thread Zaphod Beeblebrox
yeah, I've really started relying more on the unix model of smaller
specialized tools working together to make a whole.  Sometimes I think
eclipse is starting to get too large once you load cfeclipse,
subclipse, and all the other multitude of plugins.

On 10/7/07, Aaron Rouse <[EMAIL PROTECTED]> wrote:
> Yeah, guess I am just not all that sold on having everything to do my job
> all within one single interface.  Just seems like there would be some
> compromises when doing it that way but really that is not the issue for me,
> I just have no issue with alt-tab'n over to what I need be it SVN, SQL,
> email, music, ordering a pizza or whatever other needs.
>
> On 10/7/07, Eric Roberts <[EMAIL PROTECTED]> wrote:
> >
> > The only benefit of having that, or any other plugin is to have it in a
> > single interface.  It's not a real big deal.  I have never used the plug
> > in
> > myself...I do the same...just flip over to explorer and use tortoise ;-)
> >
> > Eric
> >
> > -Original Message-
> > From: Aaron Rouse [mailto:[EMAIL PROTECTED]
> > Sent: Sunday, October 07, 2007 11:45 AM
> > To: CF-Talk
> > Subject: Re: SOT: How do you version control with your CF code?
> >
> > This is what I do as well, never tried the DW plugin though and actually
> > can
> > not see a reason as to why I would need it.  It just is not that hard to
> > alt-tab over to something.
> >
> > On 10/7/07, Zaphod Beeblebrox <[EMAIL PROTECTED]> wrote:
> > >
> > > I've used the Dreamweaver add in and don't really think it adds that
> > > much to the experience.  If I'm on my machine that has DW, I'll do all
> > > my coding in DW, when I done and ready to commit back to the
> > > repository, I'll drop out to TortoiseSVN and do all my interactions
> > > with Subversion that way.
> > >
> > >
> > > On 10/5/07, J W <[EMAIL PROTECTED]> wrote:
> > > > subversion seems to be the thing... so how are your hardware setups???
> > > We
> > > > are a total windows environment. dreamweaver 8 is our tool of choice
> > for
> > > > coding. i know there is a 60 buck version that allows subversion
> > access
> > > > directly from dreamweaver that might be worth it.
> > > >
> > > > Dev server --> Production Server (current setup)
> > > >
> > > > Dev server --> UAT --> Production server (can move to this if its more
> > > > advantageous for us)
> > > >
> > > > How do you guys handle moves to production and keeping track of which
> > > files
> > > > are where? This is a pretty manual process for us now.
> > > >
> > > > jeff
> > > >
> > > >
> > > >
> > >
> > >
> >
> >
> >
> >
>
> 

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

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


Re: SOT: How do you version control with your CF code?

2007-10-07 Thread Zaphod Beeblebrox
I've used the Dreamweaver add in and don't really think it adds that
much to the experience.  If I'm on my machine that has DW, I'll do all
my coding in DW, when I done and ready to commit back to the
repository, I'll drop out to TortoiseSVN and do all my interactions
with Subversion that way.


On 10/5/07, J W <[EMAIL PROTECTED]> wrote:
> subversion seems to be the thing... so how are your hardware setups??? We
> are a total windows environment. dreamweaver 8 is our tool of choice for
> coding. i know there is a 60 buck version that allows subversion access
> directly from dreamweaver that might be worth it.
>
> Dev server --> Production Server (current setup)
>
> Dev server --> UAT --> Production server (can move to this if its more
> advantageous for us)
>
> How do you guys handle moves to production and keeping track of which files
> are where? This is a pretty manual process for us now.
>
> jeff
>
>
> 

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

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


Re: CF Code readability (Where Clause)

2007-10-06 Thread Zaphod Beeblebrox
yep, I pretty much do the same thing, also my selects look like this:

SELECT   col1
  ,col2
  ,col3
FROM  table1
  INNER JOIN table2 ON table1.col1 = table2.col2
WHERE  x = 1
 AND   Deleted = 0

In essence, I capitalize my sql keywords, I place the commas in from
of field names (for the same reason as the AND placement), alias any
table over 4 characters, and I keep all my indentation equal.  I
despise the MS Enterprise Manager because invariably some coworker
will submit a query to me that's a clump of unformatted text.

On 10/6/07, ColdFusion <[EMAIL PROTECTED]> wrote:
> How many use the query coding (where clause) as:
>
> where
> x = 1 and
> Deleted = 0
>
>
> OR
>
>
> where
> x = 1
> and Deleted = 0
>
>
>
> I prefer the second one as if I need to remove or simply comment the line
> out for testing, I only do the one line rather than having the comment tags
> skew over multiple lines?
>
> Thanks for your input.
>
>
>
>
> 

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

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


Re: Visual confirmation code

2007-10-02 Thread Zaphod Beeblebrox
I'd read somewhere about a method for spam control where you throw an
extra field into your form that should always be blank.  You hide it
with css so the users don't see it.  When the spambots come through
and fill in all the blanks, you discard it based on whether your
hidden field is filled in or not.

Beats those "crazy whacked-out images" any day.


On 10/2/07, Michael David <[EMAIL PROTECTED]> wrote:
> Hi Folks!
>
> I need to provide a visual confirmation code for a form submission on
> one of my sites. You know, the "type the code you see in the crazy
> whacked-out image to the right" sorta thing. Might one of you know of a
> preexisting CF solution out there?
>
> I really hate wasting time reinventing the wheel. Seems like I am
> doing a lot of that lately, and it make me so very grumpy...
>
> --
> Cheers!
> Michael David
>
>
>
> 

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

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


Re: Am I the only one who thinks Flex 2 isn't

2007-09-05 Thread Zaphod Beeblebrox
I tend more towards the REST type services so CFC's aren't the best
vehicle for me.  Since I'm doing that API, it usually doesn't make
sense for me to do another type of API strictly for Flex interfaces.
Also for debugging and troubleshooting, nothing beats a human readable
format.  Plus when it comes right down to it, how much data are you
transferring to the client?  If you're transferring enough data to
make a huge difference in speed across the wire, I think you're
probably transferring too much data for the users' needs

On 9/5/07, Brian Kotek <[EMAIL PROTECTED]> wrote:
> A CFC will respond to web service requests and AMF without you having to do
> anything. Further, if custom XML is being generated, it has to come from
> somewhere. So the XML generation could stay in place but the underlying CFC
> supplying the data could easily be exposed for AMF calls, allowing you to do
> AMF, raw XML, and web services. The bottom line is that however else you
> want to expose the data, there is no reason not to use AMF to feed a Flex
> app.
>
>
> On 9/5/07, Zaphod Beeblebrox <[EMAIL PROTECTED]> wrote:
> >
> >
> > portabilityyou could use any client technology to consume your
> > service if it uses xml versus amf.
> >
> >
>
>
> 

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

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


Re: Am I the only one who thinks Flex 2 isn't

2007-09-05 Thread Zaphod Beeblebrox
On 9/5/07, Brian Kotek <[EMAIL PROTECTED]> wrote:
> On 9/5/07, Tom Chiverton <[EMAIL PROTECTED]> wrote:
> >
> >
> > > 2. Flex 2 AND database: We have created an XML for the data, that's
> > makes
> > > the application sluggish as hell! XML data have much overhead ( I
> > believe
> > > something like 2/3 )
> >
> > Yes. And ?
> > There is a reason ColdFusion talks AMF3 to Flex, not XML REST-style.
>
>
> +1 here. If you're using CF as the back end, why would you use XML over AMF?
>
portabilityyou could use any client technology to consume your
service if it uses xml versus amf.

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

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


Re: CF8 Flash froms VS. AJAX (javascript)

2007-09-03 Thread Zaphod Beeblebrox
In a CMS, you probably want something a lot more powerful than the
Rich Text Editor control.  Among it's weaknesses is the fact it can't
display tables (at least that's how I remember it)  which is a real
biggie to me.



On 9/3/07, Joeri B <[EMAIL PROTECTED]> wrote:
> Hi Guys,
>
> I want to build a new CMS in Coldfusion 8. First I thought, I could build the 
> backoffice with Coldfusion 8 Flash Forms. This way I can use cftree, rich 
> text area etc. But every flash form function in CF 8 can be build with AJAX 
> too, like treeview, FCK editor.
>
> I have thought of these points:
>
> PRO Flash Form
> 1. Browser independent. (although you need a Flash plugin)
> 2. Quick developement. (format = flash)
>
> PRO AJAX (javascript)
> 1. Fast ( almost no loading times on tree for ex, Flash Form (CF7) are 
> sluggish)
> 2. CFM engine indepent, could deploy CMS on for example Railo too.
>
> What are your opinions/experiences on the use of CF8 flash forms?
>
> 

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

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


Re: Planning For FLEX Integration

2007-09-03 Thread Zaphod Beeblebrox
my experience so far has been that Flex not only replaces the views,
but also a lot of the controllers and it has it's own models.
Accordingly, the architecture of my apps has been to create a both a
backend and a frontend.

The backend can either be RESTful services or full blown web services.
 I'll usually start with this layer first, testing them out with xml
output to make sure things work as planned.

Then, once you've got a good portion of the backend done, I'll start
working the frontend.  This is the most tricky for me to do in html
since I've been doing apps with no seperation for ages.  One thing
I've tried is create a new project for the front end and then pretend
the backend is a remote web server.

Once you've created your html interface, the Flex interface should be
a lot easier to create since you've already created the remote calls
once in the html interface.


On 9/3/07, Robert Rawlins - Think Blue
<[EMAIL PROTECTED]> wrote:
> Hello People,
>
>
>
> I'm the throws of planning a rebuild on one of my applications, which will
> be pretty much from the ground up. One of the prospects for the application
> is to have a FLEX front end, in addition to a standard XHTML based UI. I
> know next to nothing about flex at the moment and plan to work on my skills
> whilst I progress the project along.
>
>
>
> The thing that troubles me at the moment is planning for that integration
> from a ColdFusion point of view. I will be developing the app with an MVC
> design, what steps should I be taking to ensure that a FLEX UI can be
> implemented simply over the top at a later date? Does it require any special
> requisites of my Controller or Model? Or can I leave those as standard and
> simply replace the view layer with the FLEX base?
>
>
>
> I suppose this question really stems from a lack of knowledge of FLEX and
> the way in which it interacts with the ColdFusion app, I mean, can FLEX
> handle and deal with standard data types like structures, arrays and
> queries? Or should I be looking to output all data as XML? Perhaps in a
> separate controller/proxy layer, so both the XHTML and FLEX are working from
> a different set of controller API's once outputting standard CF data types
> and the other publishing xml?
>
>
>
> Thanks chaps, I know it's a bit of an open ended question but I wasn't to
> try and get a feel for things and perhaps learn a little from your personal
> experience of how this stuff works, I really am very keen to push FLEX
> forward in my applications.
>
>
>
> Rob
>
>
>
> 

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

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


Re: multiple sites with cf 8 and iis

2007-08-21 Thread Zaphod Beeblebrox
cool!  I had no idea that restriction was lifted for vista.

is there a top limit?

On 8/21/07, Dave Watts <[EMAIL PROTECTED]> wrote:
> > unless you're using a server version of windows, IIS isn't
> > going to serve more than 1 site at a time.
>
>  unless you're using Vista.
>
> 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!
>
>
> 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

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


Re: multiple sites with cf 8 and iis

2007-08-21 Thread Zaphod Beeblebrox
unless you're using a server version of windows, IIS isn't going to
serve more than 1 site at a time.

BTW,  entries in the hosts file would take on this form:
127.0.0.1localhost
127.0.0.1redhotkitties.com

Then, in IIS you'd set up multiple sites and have them use the host
header to determine which site was being visited.  All of this is moot
though if you don't have a server version of windows



On 8/21/07, Matthew Smith <[EMAIL PROTECTED]> wrote:
> I have modified my host file as follows:
> --
>
> 127.0.0.1   localhost
> www_redhotkitties_com   localhost/www_redhotkitties_com
>
> --
>
> When I browse to http://www_redhotkitties_com/, I get "Internet Explorer
> cannot display the webpage".
>
> If I go to http://localhost/www_redhotkitties_com/, I get an error that
> it cannot find an included template, which should not be the case.
>
> Do I have something configured wrong?
>
> -Original Message-
> From: James Holmes [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, August 21, 2007 1:05 AM
> To: CF-Talk
> Subject: Re: multiple sites with cf 8 and iis
>
> Assuming you are on windows (a safe bet if you're using IIS) it's
> typically in c:\windows\system32\drivers\etc\hosts.
>
> On 8/21/07, Matthew Smith <[EMAIL PROTECTED]> wrote:
> > Where is "etc/hosts"?  Thanks for the help.
> >
> > -Original Message-
> > From: James Holmes [mailto:[EMAIL PROTECTED]
> > Sent: Monday, August 20, 2007 10:37 PM
> > To: CF-Talk
> > Subject: Re: multiple sites with cf 8 and iis
> >
> > Set up entries in etc/hosts so you don't need to swap anything - make
> > the IIS sites respond to the relevant host names.
> >
> > On 8/21/07, Matthew Smith <[EMAIL PROTECTED]> wrote:
> > > I just did a clean install of my development machine.  In the past,
> I
> > used coldfusion's built in web server, but had a problem configuring
> it
> > to use a different folder for it's root.
> > >
> > > This time around I think I'll give IIS a try.  I have five sites I
> am
> > responsible for.  I would like to be able to switch between them in as
> > few steps as possible.  Do I need to create a virtual directory for
> each
> > one?  How would I switch between sites for http://localhost/ shows the
> > proper site?  Or can I just change the mapping for / to the current
> > site's folder?  If so, where should I locate the folder for each site?
> > Do I set up a different site in IIS for each site?  If so, would I
> have
> > to manually apply coldfusion to each site?
> > >
> > > I'm not really sure what I need to do so any help would be
> > appreciated.  Thanks!
> >
> >
> > --
> > mxAjax / CFAjax docs and other useful articles:
> > http://www.bifrost.com.au/blog/
> >
> >
> >
> >
>
>
>
> 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

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


Re: cfimage resize running very slow

2007-08-21 Thread Zaphod Beeblebrox
I'm curious what cfimage uses behind the scenes.  If it's the java
image libraries, I wouldn't be surprised with the speed issues as I
had trouble with them when used as a cfobject.



On 8/20/07, Steve Sequenzia <[EMAIL PROTECTED]> wrote:
> I am trying to figure out if it is normal for the cfimage resize to be very 
> slow. I am reading photos from a database then resizing them and writing them 
> to a directory. The the process works fine but it gets through about 17 
> pictures and then errors out with this error "The request has exceeded the 
> allowable time limit Tag: CFLOOP"
>
> Am I missing something here? Here is some of the code:
>
> 
>
> 
>
> 
>
> 
> 
>
> 
> 
>
> 
>
> 
> 
>
> 
> 
>
>  source="#photoPath#/#photoName#" 
> destination="#application.viewPhotoDir#/thumbnails/#photoName#" 
> overwrite="yes">
>
>  source="#photoPath#/#photoName#"
> destination="#application.viewPhotoDir#/full/#photoName#" overwrite="yes">
>
> 
>
> Any help on this would be great.
>
> 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

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


Re: Frameset Reloading

2007-08-19 Thread Zaphod Beeblebrox



On 8/19/07, Will Tomlinson <[EMAIL PROTECTED]> wrote:
> I'm trying to get my login/logouts workin with a frameset and having trouble 
> with it.
>
> In the frameset page, I check the SESSION.isLoggedin status and display the 
> login form.
> The user logs in and it loads up everything correctly.
>
> the problem is the logout link. It's placed in the left menu frame. It passes 
> a URL variable that I read and log the user out.
>
> But how can I make it reload the entire frameset when the user clicks the 
> link? So it only shows the login form again.
>
> Thanks,
> Will
>
> 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

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


Re: REST Webservices

2007-08-17 Thread Zaphod Beeblebrox
hthat's really a wide description from the client.  It may
mean that he only wants the results returned as straight xml.  It may
also mean that he wants cleaner urls like

http://www.myservice.com/users

vs

http://www.myservices.com/index.cfm?method=getUsers

or

http://www.myservice.com/users/1

vs

http://www.myservice.com/index.cfm?method=getUser&user_id=1



On 8/17/07, Robert Rawlins - Think Blue
<[EMAIL PROTECTED]> wrote:
> Hello Chaps,
>
>
>
> This is just a quick 'start the ball rolling' kind of message. I've got a
> client who wants me to publish my web services in REST instead of SOAP as
> it'll be simpler for him to parse as it's what he's used too.
>
>
>
> Now, SOAP is obviously native to CF and publishing a few classes as SOAP is
> very simple for me, how simple is it to work with REST in ColdFusion? Has
> anyone here got any experience with it? I'm hoping there will be an easy
> answer to my problem.
>
>
>
> Thanks guys,
>
>
>
> Rob
>
>
>
> 

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

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


Re: OT: SQL Manager?

2007-08-15 Thread Zaphod Beeblebrox
You do it from the client side.

Open the SQL Server client network utility.  On the 'Alias' tab, set
up a new alias.  Go into EM and register the alias as a new sql
server.


On 8/15/07, Adkins, Randy <[EMAIL PROTECTED]> wrote:
> Problem with that is, I do not run the server. It is a shared hosting
> server
>
> -Original Message-----
> From: Zaphod Beeblebrox [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 15, 2007 12:28 PM
> To: CF-Talk
> Subject: Re: OT: SQL Manager?
>
> You can always set up an alias for the 2nd instance of the server and
> then register the alias in EM.
>
>
> On 8/15/07, Adkins, Randy <[EMAIL PROTECTED]> wrote:
> > Who can recommend a SQL Management utility other than Enterprise
> > Manager to manage multiple Microsoft SQL Databases and not having
> > multiple pieces installed like EMS SQL Management Studio for SQL
> > Server  ( http://www.sqlmanager.net/en/products/studio/mssql ).
> >
> > Don't get me wrong they have a nice utility but I can not afford
> > spending $500+ on a utility to manage databases on a shared hosting
> > provider.
> > They have everything is various applications so unless you buy the
> > studio, you would need SQL Manager, Data Export, Data Import, SQL
> > Query, and others just to have a complete package like MS SQL Servers
> > Enterprise Manager.
> >
> > Only reason I am looking else where is that I want to be able to
> > register more than one database with the same host.
> >
> > ex:
> > host: sql.somehost.com
> > username: Client_A_Name
> > password: Client_A_Pass
> > database: clientA
> >
> > host: sql.somehost.com
> > username: Client_B_Name
> > password: Client_B_Pass
> > database: clientB
> >
> > Notice the same host... EM will not allow you to register more than
> > one host. Since the databases are unique to the client, I want to keep
>
> > them separated.
> >
> > I also looked at Aqua Data Fold, which isn't bad either. There is alot
>
> > to that program and well running at $400 per user still up there is
> > cost.
> >
> > I am sure there is something a bit cheaper.
> >
> >
> >
> >
> >
> >
> >
>
>
>
> 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

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


Re: OT: SQL Manager?

2007-08-15 Thread Zaphod Beeblebrox
You can always set up an alias for the 2nd instance of the server and
then register the alias in EM.


On 8/15/07, Adkins, Randy <[EMAIL PROTECTED]> wrote:
> Who can recommend a SQL Management utility other than Enterprise Manager
> to manage multiple Microsoft SQL Databases and not having multiple
> pieces installed like EMS SQL Management Studio for SQL Server  (
> http://www.sqlmanager.net/en/products/studio/mssql ).
>
> Don't get me wrong they have a nice utility but I can not afford
> spending $500+ on a utility to manage databases on a shared hosting
> provider.
> They have everything is various applications so unless you buy the
> studio, you would need SQL Manager, Data Export, Data Import, SQL Query,
> and others just to have a complete package like MS SQL Servers
> Enterprise Manager.
>
> Only reason I am looking else where is that I want to be able to
> register more than one database with the same host.
>
> ex:
> host: sql.somehost.com
> username: Client_A_Name
> password: Client_A_Pass
> database: clientA
>
> host: sql.somehost.com
> username: Client_B_Name
> password: Client_B_Pass
> database: clientB
>
> Notice the same host... EM will not allow you to register more than one
> host. Since the databases are unique to the client, I want to keep them
> separated.
>
> I also looked at Aqua Data Fold, which isn't bad either. There is alot
> to that program and well running at $400 per user still up there is
> cost.
>
> I am sure there is something a bit cheaper.
>
>
>
>
>
>
> 

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

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


Re: MySQL front end...

2007-08-09 Thread Zaphod Beeblebrox
I've used this in the past and it wasn't too bad.

http://code.google.com/p/sqlyog/

Plus, you could contribute code back to it and feel really good about
yourself :)


On 8/9/07, Che Vilnonis <[EMAIL PROTECTED]> wrote:
> Besides Aqua Data Studio, what else is out there that is free and runs on
> Windows. Thanks, Che
>
>
> 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

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


Re: any idea how to

2007-08-08 Thread Zaphod Beeblebrox


On 8/8/07, Scott Stewart <[EMAIL PROTECTED]> wrote:
> Convert 20060523
>
>
>
> Into 5/23/2006
>
>
>
> I'm at a loss.
>
>
>
> Thanks in advance
>
>
>
> sas
>
>
>
> --
>
> Scott Stewart
>
> ColdFusion Developer
>
>
>
> SSTWebworks
>
> 4405 Oakshyre Way
>
> Raleigh, NC. 27616
>
> (703) 220-2835
>
>
>
> http://www.sstwebworks.com
>
>  
> http://www.linkedin.com/in/sstwebworks
>
>
>
>
>
>
>
> 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

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


Re: Getting windows explorer to search ColdFusion files

2007-08-02 Thread Zaphod Beeblebrox
my solution was to download AstroGrep which let's me search *all*
files on my system.

http://astrogrep.sourceforge.net/

Also shows you a snippet of the files showing where your search term is.


On 8/2/07, Michael Dinowitz <[EMAIL PROTECTED]> wrote:
> Does anyone know how to force windows explorer to search through .cfm and 
> .cfc files? Every time I try to use explorer to find text within a file of 
> those extensions, it always returns no results.
> Thanks
>
> 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

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


Re: error occured while Parsing an XML document

2007-07-17 Thread Zaphod Beeblebrox
try using 

On 7/17/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> Any ideas? I'm getting the following error message ...
>
> The following information is meant for the website developer for debugging 
> purposes.
>
> Error Occurred While Processing Request
> An error occured while Parsing an XML document.
> The entity name must immediately follow the '&' in the entity reference.
>
> The error occurred in D:\Inetpub\wwwroot\Yobaby\index_CB_test.cfm: line 29
>
> 27 : 
> 28 : 
> 29 : 
> 30 : 
> 31 : 
>
>
>
>
>
>
> CODE
>
>
> 
>  
> SELECT *
> FROM dbo.tbl_contest_2007
> WHERE (cb_email_confirmed = 1) AND (cb_image_resized IS NOT NULL)
>  
> 
> 
> 
>  lgPath="/images/contest/2007/large/">
> 
> 
> 
> 
> 
> 
> 
>
> 

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

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


Re: CF Site scraper

2007-07-16 Thread Zaphod Beeblebrox
well, they do have rss feeds based on search terms that would do the
same thing

On 7/16/07, Brad Wood <[EMAIL PROTECTED]> wrote:
> So I had an idea this morning for a simple CF site, but I wanted
> feedback on the practicality, usefulness, or even the legality of it.
>
>
>
>
> My wife is now CONSTANTLY trolling craigslist.com for stuff, and I will
> occasionally hit the free stuff or tools with a couple things in mind.
> All the good deals get eaten up quick though and I can't live on the
> site 24/7
>
>
>
> What if I wrote a simple spider in CF to scrape their content for my
> city once an hour or so into a database and then setup automatic
> notifications when certain keywords appear like "chainsaw" in the "free"
> category?
>
>
>
> Would people use that?
>
> Would that be a waste of CF code?
>
> Would I get sued?
>
> Am I only the 58th person to think of this?
>
>
>
> ~Brad
>
>
>
> 

~|
CF 8 – Scorpio beta now available, 
easily build great internet experiences – Try it now on Labs
http://www.adobe.com/cfusion/entitlement/index.cfm?e=labs_adobecf8_beta

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


Re: Quicktime Movie

2007-07-16 Thread Zaphod Beeblebrox
I've used the Riva FLV encoder (free version) to convert a number of
different files to FLV with good results.

http://www.download.com/Riva-FLV-Encoder/3000-2140-10320097.html

On 7/16/07, Greg Luce <[EMAIL PROTECTED]> wrote:
> I was hoping there was some free or low cost program for converting them.
> :-)
>
> G
>
> On 7/16/07, Nick Tong <[EMAIL PROTECTED]> wrote:
> >
> > flash pro
> >
> > On 16/07/07, Greg Luce <[EMAIL PROTECTED]> wrote:
> > >
> > > What program did you use to convert them to flv?
> > >
> > > Thanks,
> > > Greg
> > >
> > > On 7/15/07, Will Tomlinson <[EMAIL PROTECTED]> wrote:
> > > >
> > > > I've done some movies but converted them to flv's, then displayed them
> > > > with flash.
> > > >
> > > > http://wtomlinson.com/london/movies.cfm
> > > >
> > > > It seemed to work nicely.
> > > >
> > > > Will
> > > >
> > > >
> > >
> > >
> >
> >
>
> 

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

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


Re: Dreamweaver and Vista

2007-07-03 Thread Zaphod Beeblebrox
let's not talk hypotheticals here

On 7/3/07, Charlie Griefer <[EMAIL PROTECTED]> wrote:
> If people take screen shots of Vista not freezing up on them... will
> that prove that it doesn't suck? :)
>
>

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

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


Re: Dreamweaver and Vista

2007-07-01 Thread Zaphod Beeblebrox
It's the way they handled it that I don't like.  There's no sudo to
avoid being asked for your password umpteen times during regular
maintenance.  It's just a bit frustrating which I think will lead to
users turning off that feature and having no security once again.


On 7/1/07, Eric Roberts <[EMAIL PROTECTED]> wrote:
> Yeah...that is pretty humorous.  All the Mac and Linux geeks are bitching
> and moaning because MS actually put in some security.  Oy!
>
>
> Eric
>
> -Original Message-
> From: Dave Watts [mailto:[EMAIL PROTECTED]
> Sent: Sunday, July 01, 2007 2:23 PM
> To: CF-Talk
> Subject: RE: Dreamweaver and Vista
>
> 
>
> I am amazed that someone who, a year ago, complained that Windows was too
> susceptible to viruses and other malware, is now complaining about the
> security required to prevent Windows from being susceptible to viruses and
> other malware. Shocked, SHOCKED I tell you! Of course, had you run Windows
> securely before - not as an Administrator - you would already be familiar
> with needing to provide administrative credentials for administrative
> actions, just like you have to do on a Mac, or on any Unix.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
>
> 
>
>
> 

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

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


Re: Dreamweaver and Vista

2007-06-30 Thread Zaphod Beeblebrox
yep, though I've had the same problem with "compressed folders" on
WinXP.  For some reason their zip utility is crappy.

As for Vista, I didn't like it much either.  I uninstalled it 24 short
hours after installing it.  My feeling is that it really shouldn't be
touted as an upgrade since upgrades are usually more backward
compatible than it was.  It really is more like a "new" operating
system.  It's got all new quirks, lots of incompatibilities, new ways
of addressing hardware, etc.



On 6/30/07, Will Tomlinson <[EMAIL PROTECTED]> wrote:
> Not gonna waste both our time with this, because nobody will ever be able to 
> convince me vista doesn't suck, except vista itself. And so far, it isn't 
> doin a good job.
>
> I'm not exagerating with the ZIP. I ended up downloading a free utility for 
> unzipping. It unzipped a file in 5 seconds that was taking vista's 20 
> minutes. I kid you not.
>
> Here ya go:
>
> http://www.google.com/search?q=vista+zip+slow&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a
>
> if you want, I'll make a movie about it and post it on youtube. lol! 
> Actually, you can probably find some on there already.  :)
>
>
> Thanks,
> Will
>
> 

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

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


Re: OT:Great CSS Selector test suite

2007-06-12 Thread Zaphod Beeblebrox
actually, on my tests, Safari was the fastest by far.  IE was the
performance dog.


On 6/12/07, Rey Bango <[EMAIL PROTECTED]> wrote:
> Yeah. It always seems to be the hardest to work with and every library
> seems to have issues with it at some point. I wish Apple would get off
> their rears and help out with this. Its shameful when IE performs better
> than Safari.
>
> Rey
>
> Zaphod Beeblebrox wrote:
> > and then try running it with FF, IE, and now Safari.  Safari is
> > definitely a rump kicker in the javascript dept.
> >
> >
> > On 6/12/07, Andy Matthews <[EMAIL PROTECTED]> wrote:
> >> Evaluates the speed of the various JS libraries at "querying" the dom.
> >>
> >> http://ajaxian.com/archives/slickspeed-css-selector-testsuite
> >>
> >> Interesting results.
> >>
> >> 
> >>
> >> Andy Matthews
> >> Senior ColdFusion Developer
> >>
> >> Office:  877.707.5467 x747
> >> Direct:  615.627.9747
> >> Fax:  615.467.6249
> >> [EMAIL PROTECTED]
> >> www.dealerskins.com <http://www.dealerskins.com/>
> >>
> >>
> >>
> >>
> >
> >
>
> 

~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


Re: OT:Great CSS Selector test suite

2007-06-12 Thread Zaphod Beeblebrox
and then try running it with FF, IE, and now Safari.  Safari is
definitely a rump kicker in the javascript dept.


On 6/12/07, Andy Matthews <[EMAIL PROTECTED]> wrote:
> Evaluates the speed of the various JS libraries at "querying" the dom.
>
> http://ajaxian.com/archives/slickspeed-css-selector-testsuite
>
> Interesting results.
>
> 
>
> Andy Matthews
> Senior ColdFusion Developer
>
> Office:  877.707.5467 x747
> Direct:  615.627.9747
> Fax:  615.467.6249
> [EMAIL PROTECTED]
> www.dealerskins.com 
>
>
>
> 

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

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


Re: Subversion and Dreamweaver 8

2007-06-09 Thread Zaphod Beeblebrox
it looks like the web site is down right now, but there is an
extension for Dreamweaver that integrates with TortoiseSVN.  It's
called SVN4DW.  It's free and it works.

http://www.nearlygeek.com/tools/subversion-for-dreamweaver/introduction/



On 6/9/07, Robertson-Ravo, Neil (RX)
<[EMAIL PROTECTED]> wrote:
> Yep +1 for Subclipse.
>
>
>
> "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> Registered in England, Number 678540.  It contains information which is
> confidential and may also be privileged.  It is for the exclusive use of the
> intended recipient(s).  If you are not the intended recipient(s) please note
> that any form of distribution, copying or use of this communication or the
> information in it is strictly prohibited and may be unlawful.  If you have
> received this communication in error please return it to the sender or call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
> communication are not necessarily those expressed by Reed Exhibitions."
> Visit our website at http://www.reedexpo.com
>
> -Original Message-
> From: Eric Roberts
> To: CF-Talk
> Sent: Sat Jun 09 17:23:07 2007
> Subject: RE: Subversion and Dreamweaver 8
>
> It wasn't worth it to me...when I was using DW I was using TortoiseSVN
> (which is an excellent product).  I have since switched to Eclipse since I
> have to use it at work (still don't like it very much) and tend to use
> Subclipse...which is a good interface in itself.
>
> Eric
>
> -Original Message-
> From: J.J. Merrick [mailto:[EMAIL PROTECTED]
> Sent: Saturday, June 09, 2007 11:03 AM
> To: CF-Talk
> Subject: Re: Subversion and Dreamweaver 8
>
> ah cool... though I don't know if it is $59 cool :-)
>
>
>
> On 6/9/07, Eric Roberts <[EMAIL PROTECTED]> wrote:
> >
> > http://www.grafxsoftware.com/product.php/SVN_for_Dreamweaver_10/135/
> >
> > -Original Message-
> > From: J.J. Merrick [mailto:[EMAIL PROTECTED]
> > Sent: Saturday, June 09, 2007 6:06 AM
> > To: CF-Talk
> > Subject: Re: Subversion and Dreamweaver 8
> >
> > Congrats on the first step to bad development recovery :-)
> >
> > I have been using subversion for about 4 years now and haven't found
> > anything for DW yet... though it looks like some people have some ideas.
> >
> > My take is that if you are using windows that you will need to install
> > TortoiseSVN regardless. It is one of the better shell integrated clients
> > out
> > there. It has been under development for many years and  most of the bugs
> > seems to be worked out of it. It makes the tag/branch/merge processes very
> > manageable. Most of your integrated clients just don't seem to be as
> > robust
> > as you will find you will need. Most can do it but for some reason I don't
> > trust them as much as I do TortoiseSVN.
> >
> > I also use Eclipse with CFeclipse and subclipse. This allows quick access
> > to
> > the update and commit command and also shows you what branch you are on,
> > what has been updated via icons etc.
> >
> > So since there is not really anything for DW it is not the end of the
> > world
> > since you can just drop down to explorer and do stuff with TortoiseSVN. If
> > you want to move to eclipse there are tools for it that help get the job
> > done.
> >
> >
> > J.J.
> >
> >
> >
> > On 6/8/07, Elena Aminova <[EMAIL PROTECTED]> wrote:
> > >
> > > I was asked to select and configure code repository for our development
> > > environment and since I have heard and read so much about subversion, so
> > far
> > > it is my pick, unless anyone has any compelling reasons for me not to.
> > The
> > > questions I have are the following:
> > >
> > > How does Subversion version control system work with Dreamweaver 8?
> > >
> > > Any other open source alternatives to Subversion (using Apache OS)?
> > >
> > > Thanks!
> > >
> > >
> >
> >
> >
> >
>
>
>
>
>
> 

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

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


Re: CFC Typeof()

2007-06-06 Thread Zaphod Beeblebrox
regardless of whether or not CF is duck typed or dynamic, the dynamic
languages I've used   have all had this ability.  Say you have an cfc
that expects a vehicle, you send it a bike and you send it a car, both
are vehicles, but both behave differently in some aspects.  They may
both have a 'go', but only the car will have 'checkFuelLevel'.  Which
would be the bigger performance hit, using a try catch block or just
checking the type or class of an object?



On 6/6/07, Jake Pilgrim <[EMAIL PROTECTED]> wrote:
> You don't want to do that in Coldfusion - it is unnecessary and is actually a 
> performance hit as well. Read up on 'duck typing' - Sean Corfield has a nice 
> powerpoint that outlines this concept. You have to remember that Coldfusion 
> does not enforce strict typing; Coldfusion is not Java!! The basic idea is 
> that if you pass in a value (be it a string, query, object, whatever) and it 
> works within your code, it is of the correct type (if it walks like a duck, 
> quacks like a duck, it's a duck!). If you pass in a numeric value to a 
> function that is expecting a string, it's going to work. If you pass in an 
> object with properties x, y, and z to a function expecting an object with 
> properties x, y, and z it's going to work. If you were to restrict your 
> function to only accept objects with a type of cfc.exampleObj, you are 
> unnecessarily restricting the possible input of your function as well as 
> creating a performance loss by making your function check the object's type 
> in the first place!
>
> As defined by Wikipedia - http://en.wikipedia.org/wiki/Duck_typing
>
> Jake Pilgrim
>
> 

~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


Re: Any see what is wrong with this query?

2007-06-06 Thread Zaphod Beeblebrox
is name a char type vs a varchar, if so, you'll have to pad with
spaces on the right.


On 6/6/07, Ian Skinner <[EMAIL PROTECTED]> wrote:
> Logs Record Set - query - Top 4 of 4 Rows
>ATTRIBUTES DATELASTMODIFIED DIRECTORY MODE NAME SIZE TYPE
> 1 [empty string]  06/06/2007 10:59:17 AM  G:\Tracker\wwwRoot\Data
> [empty string]  ChargedOut_06Jun2007_ILS_105634322.txt  828  File
> 2 [empty string]  06/06/2007 10:57:00 AM  G:\Tracker\wwwRoot\Data
> [empty string]  Error_06Jun2007_ ILS_105634322.txt  88  File
> 3 [empty string]  06/06/2007 10:58:46 AM  G:\Tracker\wwwRoot\Data
> [empty string]  Final_06Jun2007_ ILS_105634322.txt  27841  File
> 4 [empty string]  06/06/2007 10:56:07 AM  G:\Tracker\wwwRoot\Data
> [empty string]  Upload_06Jun2007_ ILS_105634322.txt  94768  File
>
> ChargeOut Stats - struct
> CACHED false
> COLUMNLIST NAME
> EXECUTIONTIME 0
> RECORDCOUNT 0
> SQL SELECT Name FROM Logs WHERE Name = 'ChargedOut_06Jun2007_
> ILS_105634322.txt'
>
> chargeOut Record Set - query - Top 0 of 0 Rows
>NAME
>
> CODE
> 
>  sort="Name">
> 
> 
>SELECT Name
>FROM Logs
>WHERE Name = 'ChargedOut#Set#.txt'
> 
>
> I can not see why SELECT Name FROM Logs WHERE Name =
> 'ChargedOut_06Jun2007_ ILS_105634322.txt' is not returning the
> corresponding record from the logs record set.
>
>
>
>
> 

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

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


Re: Run PHP code inline on a Coldfusion page

2007-06-04 Thread Zaphod Beeblebrox
yep, that worked well for OS/2


On 6/4/07, Billy Cox <[EMAIL PROTECTED]> wrote:
> "...why would you want to?"
>
> Two words: Cost-savings
>
> If CF can leverage existing apps written in other languages even to a modest
> degree, this greatly increases the value of ColdFusion.
>
> We are in this for the money, right? ...not just for the pure love of the
> ColdFusion gospel?
>
>
> -Original Message-
> From: Kevin Aebig [mailto:[EMAIL PROTECTED]
> Sent: Monday, June 04, 2007 11:05 AM
> To: CF-Talk
> Subject: RE: Run PHP code inline on a Coldfusion page
>
>
> The real million dollar question is why would you want to? Almost anything
> PHP can do, CF can do. Almost anything CF can do, .NET can do. Almost
> anything .NET can do, PHP can do.
>
> Unless you want to take advantage of the thousands of crappy opensource PHP
> apps that are out there, but if that's the case, save some time and just
> open up your firewall. =]
>
> !k
>
> -Original Message-
> From: Andy Matthews [mailto:[EMAIL PROTECTED]
> Sent: Monday, June 04, 2007 8:45 AM
> To: CF-Talk
> Subject: OT: Run PHP code inline on a Coldfusion page
>
> For those of you who don't know, Coldfusion is built upon Java. Someone has
> taken it upon themselves to write a Java library, called Quertus, which
> parses PHP code. Someone else then built upon THAT and wrote a Coldfusion
> library which references the Quertus library and allows you to combine PHP
> and Coldfusion code on the same page, pass variables back and forth to each
> other and more.
>
> http://corfield.org/blog/index.cfm/do/blog.entry/entry/ColdFusion_8_running_
> PHP
>
> I don't know what the speed is (probably not as fast as the native zend
> interpreter, but still...PHP code mixed in with CF code is pretty kick ass.
> I read that someone else has done the same thing for Ruby.
>
> 
>
> Andy Matthews
> Senior Coldfusion Developer
>
> Office:  877.707.5467 x747
> Direct:  615.627.9747
> Fax:  615.467.6249
> [EMAIL PROTECTED]
> www.dealerskins.com 
>
>
>
>
>
>
>
> 

~|
ColdFusion 8 beta – Build next generation applications today.
Free beta download on Labs
http://www.adobe.com/cfusion/entitlement/index.cfm?e=labs_adobecf8_beta

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


Re: OT: General Question...

2007-05-31 Thread Zaphod Beeblebrox
Make sure to do testing because I've had plenty of lockup issues with
javascript fixes for pngs.  I'm not sure if this is the same style fix
or not, but just be wary.


On 5/31/07, Rick Faircloth <[EMAIL PROTECTED]> wrote:
> Great!  I can use that!  .png it is!
>
> Thanks,
>
> Rick
>
> -Original Message-
> From: Joshua Cyr [mailto:[EMAIL PROTECTED]
> Sent: Thursday, May 31, 2007 10:32 AM
> To: CF-Talk
> Subject: Re: OT: General Question...
>
> That IE6 issue can apparently be addressed with some JS if needed.
>
> http://homepage.ntlworld.com/bobosola/pnghowto.htm
>
> On 5/31/07, Claude Schneegans <[EMAIL PROTECTED]> wrote:
> >  >>Any limitations in browsers
> >
> > There is a problem with MSIE 6 which does not support transparency with PNG.
> > I don't know if the problem was solved withe version 7, but many people
> > are still using version 6.
> > AFAIK, there is no problem if you don't use transparency.
> >
> > --
> > ___
> > REUSE CODE! Use custom tags;
> > See http://www.contentbox.com/claude/customtags/tagstore.cfm
> > (Please send any spam to this address: [EMAIL PROTECTED])
> > Thanks.
> >
> >
> >
>
>
>
> 

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

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


Re: The CF Dissenters Have Been Smacked Down

2007-05-30 Thread Zaphod Beeblebrox
fat chancea lot of those Ruby "fanboys" used to love CF :)

On 5/30/07, Jake Pilgrim <[EMAIL PROTECTED]> wrote:
> :)
>
> Although I do agree - PHP is definitely on the way out. Ever since they 
> addressed their memory leak issue (related to the -> operator) by just 
> implementing an error for code that would cause the memory leak condition, I 
> have seen PHP's support steadily decline... I mean come on... If your code 
> had a condition that resulted in a memory leak, wouldn't you correct the 
> issue instead of saying "well then don't do that"?
>
> Now we just need to silence those Ruby & ASP fanboys!
>
> 

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

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


Re: Tools for converting videos to FLV?

2007-05-21 Thread Zaphod Beeblebrox
I'm pretty sure that the riva encoder is free still.  Afterall, it's
really just a front end to the open source ffmpeg (a really slick
front end though).  The other cool thing about Riva encoder is that it
will also decode an flv file into a mpg or avi.  Heck, it handles
pretty much anything that you throw at it.



On 5/21/07, Bobby Hartsfield <[EMAIL PROTECTED]> wrote:
> I don't think it gets much "easier" than RIVA. I think you have to pay for
> it now but if you can find an older version, you can get it for free.
>
> ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.
> Bobby Hartsfield
> http://acoderslife.com
>
>
> -Original Message-
> From: Damien McKenna [mailto:[EMAIL PROTECTED]
> Sent: Monday, May 21, 2007 9:13 AM
> To: CF-Talk
> Subject: OT: Tools for converting videos to FLV?
>
> Does anyone have a recommendation for a tool to convert videos to FLV?
> It can be either OSX or Windows-based, any license, OSS or commercial.
> Our main criteria is ease of use.  Thanks.
>
>
> Damien McKenna
> Web Developer
>
> The LIMU Company
> "Making a Difference"
>
> 610 Crescent Executive Court, Suite 110
> Lake Mary, FL 32746
> P 407.548.3800
> F 407.333.0419
> http://www.thelimucompany.com/
>
>
>
> 

~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


Re: Imagemagick CFEXECUTE identify

2007-05-02 Thread Zaphod Beeblebrox
Jeff, are you giving the cfexecute tag some kind of timeout value?  If
not, it may be spawning it and immediately coming back before
imageMagick has run.


On 5/2/07, Jeff Wickersty <[EMAIL PROTECTED]> wrote:
> >use the outputfile attribute of cfexecute, conversely, you could pipe
> >the output to a text file and then read in the text file.
> >
> >On 5/2/07, Jeff Wickersty <[EMAIL PROTECTED]> wrote:
> >>
>
> I tried that, using variable="some_name" but that variable apparently isnt 
> getting created. outputFile isnt doing anything either. It doesnt make sense 
> b/c i know mogrify and convert work (albeit without any kind of text output, 
> which is uneccessary in those situations)
>
> jeff
>
> 

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

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


Re: Imagemagick CFEXECUTE identify

2007-05-02 Thread Zaphod Beeblebrox
use the outputfile attribute of cfexecute, conversely, you could pipe
the output to a text file and then read in the text file.

On 5/2/07, Jeff Wickersty <[EMAIL PROTECTED]> wrote:
> Hi folks.
>
> I'm using ImageMagick on my CF7 UNix server. I can use
>
> 
> What I want to do is use CFEXECUTE NAME="identify"... to find out information 
> about an uploaded file. For example:
>
> 
>
> However, Im not sure how to handle this. Obviously, I don't need to "see" the 
> output when I do a mogrify. It just does its job and makes the conversions 
> and I'm set. But with identify, I obviously need to get the returned 
> information. How do I do that?
>
> Thanks for the help!
>
> Jeff
>
> 

~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


Re: Which Framework do you use... (if any)

2007-04-29 Thread Zaphod Beeblebrox
Hasn't the Accord won best car for several years in a row.  Does that
mean we should all be driving Accord's? Doesn't a lot of the car
purchase come down to what you need a vehicle to do?

The framework question is more the general hammer metaphor.  All the
frameworks are like different types of hammers for different jobs, not
just different types of air-hammers.

On 4/29/07, Robertson-Ravo, Neil (RX)
<[EMAIL PROTECTED]> wrote:
> True, but when it comes to these nails and their respective quantities you
> can go with said air-hammer but surely some air-hammers are better than
> others...
>
> Imagine, large project, skilled developers looking for a good, solid, fast
> and stable framework (no, not ColdFusion Air Hammer :-)
>
>
>
>
>
>
>
> "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> Registered in England, Number 678540.  It contains information which is
> confidential and may also be privileged.  It is for the exclusive use of the
> intended recipient(s).  If you are not the intended recipient(s) please note
> that any form of distribution, copying or use of this communication or the
> information in it is strictly prohibited and may be unlawful.  If you have
> received this communication in error please return it to the sender or call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
> communication are not necessarily those expressed by Reed Exhibitions."
> Visit our website at http://www.reedexpo.com
>
> -Original Message-
> From: Barney Boisvert
> To: CF-Talk
> Sent: Sun Apr 29 17:39:57 2007
> Subject: Re: Which Framework do you use... (if any)
>
> The best tool for the job depends both on the job that you need to do
> and your experience/skill.  If you need to pound some nails, a
> standard hammer will likely be the best tool for the job, and it's an
> easy one to learn how to use.  But if you need to pound a LOT of
> nails, an air-hammer is probably a better choice.  It's far more
> expensive, a bit harder to use, and certainly more dangerous, but a
> lot faster when you have a lot of nails.
>
> The same applies to development frameworks.  Different projects and
> different developers will different needs and skills, and therefore
> the "best" framework will likely differ as well.
>
> cheers,
> barneyb
>
> On 4/29/07, Robertson-Ravo, Neil (RX)
> <[EMAIL PROTECTED]> wrote:
> > Well..Why not?
> >
> > :-)
> >
>
> --
> Barney Boisvert
> [EMAIL PROTECTED]
> http://www.barneyb.com/
>
> Got Gmail? I have 100 invites.
>
>
>
> 

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

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


Re: Which Framework do you use... (if any)

2007-04-28 Thread Zaphod Beeblebrox
I use Rails. :)


On 4/28/07, Robertson-Ravo, Neil (RX)
<[EMAIL PROTECTED]> wrote:
> Just what frameworks/methologies are people using, if any? There are the
> obvious front-runners such as Mach-II, Model-Glue and Fusebox 5 (and obvious
> ORM behind such as ColdSpring, Transfer etc) but from research it seems
> people fleet between them etc which seems futile.   There must be one which
> is faster, more productive and which just seems "the best"?  Which one has
> the most backing? The most long-term vision and lifecycle?
>
>
>
>
>
>
> "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> Registered in England, Number 678540.  It contains information which is
> confidential and may also be privileged.  It is for the exclusive use of the
> intended recipient(s).  If you are not the intended recipient(s) please note
> that any form of distribution, copying or use of this communication or the
> information in it is strictly prohibited and may be unlawful.  If you have
> received this communication in error please return it to the sender or call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
> communication are not necessarily those expressed by Reed Exhibitions."
> Visit our website at http://www.reedexpo.com
>
>
> 

~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


Re: Regex help looking for a name in a string.

2007-04-27 Thread Zaphod Beeblebrox
that should be "It doesn't really look like your using Regex's"

On 4/27/07, Zaphod Beeblebrox <[EMAIL PROTECTED]> wrote:
> It does really look like your using Regex's.  Since you're looking for
> strings essentially, can't you just use ReplaceNoCase?
>
> On 4/27/07, Will Swain <[EMAIL PROTECTED]> wrote:
> > Ok, no doubt this is an easy RegEx question, but not for me.
> >
> > I have two queries. One returns a set of names, the other a string which may
> > or may not contain one or more of the names.
> >
> > I want to check for the existence of a name in the string, and if I find it,
> > make it a hyperlink.
> >
> > So far I have this:
> >
> > 
> >
> > 
> >   > href='profiles.cfm?e=#profileID#' target='artistWin'>#artist#", "ALL")>
> > 
> >
> > Which works in a limited sense but stumbles where names are similar or
> > contain the same words - for example
> >
> > John Smith
> > John Smith & Sons
> >
> > If the string contained John Smith & Sons, the code would highlight the John
> > Smith part but not the rest.
> >
> > Any suggestions?
> >
> > Thanks
> >
> > will
> >
> >
> >
> > 

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

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


Re: Regex help looking for a name in a string.

2007-04-27 Thread Zaphod Beeblebrox
It does really look like your using Regex's.  Since you're looking for
strings essentially, can't you just use ReplaceNoCase?

On 4/27/07, Will Swain <[EMAIL PROTECTED]> wrote:
> Ok, no doubt this is an easy RegEx question, but not for me.
>
> I have two queries. One returns a set of names, the other a string which may
> or may not contain one or more of the names.
>
> I want to check for the existence of a name in the string, and if I find it,
> make it a hyperlink.
>
> So far I have this:
>
> 
>
> 
>   href='profiles.cfm?e=#profileID#' target='artistWin'>#artist#", "ALL")>
> 
>
> Which works in a limited sense but stumbles where names are similar or
> contain the same words - for example
>
> John Smith
> John Smith & Sons
>
> If the string contained John Smith & Sons, the code would highlight the John
> Smith part but not the rest.
>
> Any suggestions?
>
> Thanks
>
> will
>
>
>
> 

~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


Re: Salaries

2007-04-21 Thread Zaphod Beeblebrox
check this link out:

http://www.keystonesymposia.org/cfs/


On 4/21/07, Dwayne Cole <[EMAIL PROTECTED]> wrote:
> What is the salary range for a coldfusion development?
>
> I built a complex cms system and for years I developed websites for many 
> clients.  I have a job now and the company wants me to develop several web 
> based solutions.  Obviously I plan to use my CMS for the basic framework but 
> I will have to custom build about 50% of the solution.  We are in the process 
> of negotiating a salary.  What is the going salary range for coldfusion 
> developers and what is the going hourly rate you guys charge your clients.
>
> 

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

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


Re: Date Not Formatting Correctly

2007-04-19 Thread Zaphod Beeblebrox
Steve,

You either need to quote your date field in the insert query just like
the events field, or you need to cfparam it such as


,

 

My preference is to use the queryparam methods as they avoid troubles
with people using apostrophes in event names and also guards against
sql injection.  Especially since you're inserting data straight from a
form.



On 4/19/07, Steve LaBadie <[EMAIL PROTECTED]> wrote:
> Date is not formatting properly.  I get "12/30/189905/11/2006"
>
> I enter a date of 04/18/2007 and it takes the previous date entered into the 
> database and displays it again with next entry and adds 12/30/1899.  The 
> datatype in database is set to Date/Time.
>
> 
>  "frmAddEvents">
> 
> INSERT INTO Events (Events, EventDate)
> VALUES (
> 
> '#FORM.Events#', #FORM.EventDate#
> 
> NULL, NULL
> 
> )
> 
>
>  name="frmEvents" id="frmAddEvents">
>  class="formveld" />
>  class="formveld">
> 
>  class="formveld">
> 
> 
>
> 

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

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


Re: Client-side validation or Server-side Validation?

2007-04-14 Thread Zaphod Beeblebrox
heck as long as you implicity trust your users to give you clean data
and they'll never try to hack your server, well then yeah, I think
client side only is good.  To me, this pertains to the apps that my
mom and I useeverything else uses server side or both.

:)


On 4/14/07, Rick Faircloth <[EMAIL PROTECTED]> wrote:
> Ok
>
> So I've been getting into jQuery a lot lately.  And being able to
> do some of the user enhancements has been great.
>
> I've also begun, as one of those user enhancements, to use
> client-side validation.  Not for login's, but for mortgage calculators,
> property search request forms, etc.  Not critical, but important.
>
> But now that I've started down the client-side validation road, I hear
> from passersby, "No!  You should always validate server-side or both!"
>
> (I did experiment with jQuery to use Ajax to validate server-side with CF,
> but couldn't quite pull it off, so for a mortgage calculator, I went totally
> client-side just to get the project moving again...)
>
> But, apart from the "some users don't have Javascript turned on" argument,
> why can't JS code be written that can validate as well as CF?  ( I know I
> can't
> write the JS code right now, but that's beside the point...)
>
> Thoughts?
>
> Rick
>
>
>
> 

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

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


Re: IIS6 and Client Certs breaks CFFILE Upload

2007-04-09 Thread Zaphod Beeblebrox
that should be "after days"

On 4/9/07, Zaphod Beeblebrox <[EMAIL PROTECTED]> wrote:
> I've been struggling with this also.  If I remember correctly, it's a
> problem with the implementation of certs in IIS.  Something about the
> packet size and IIS not wanting to allow a large enough packet size.
> In the end, after day of trying to get it to work correctly, I
> rerouted the uploads through a secondary site.
>
>
> On 4/9/07, Bobby Schuchert <[EMAIL PROTECTED]> wrote:
> > We are using SSL and Client Certificates on an IIS6 box and having trouble 
> > with CFFILE upload. For some reason cffile upload no longer will work for a 
> > file over 50k in size. We can turn off "require client certificates" in IIS 
> > and the upload form works nicely. I even uploaded a 102mb avi file to 
> > verify that it worked. As soon as the certificate requirement is turned on, 
> > it dies. By dies, I mean it shows nothing but a white screen. It doesn't 
> > show an error. The upload form worked fine on our old win2k box even with 
> > SSL and client certs. Adobe posted this http://www.adobe.com/go/8d933f86 
> > but the solution does not work.
> >
> > Does anyone have any ideas? Turning off client certs permanently is not an 
> > option as this is a government requirement.
> >
> > Thanks.
> >
> > 

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

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


Re: IIS6 and Client Certs breaks CFFILE Upload

2007-04-09 Thread Zaphod Beeblebrox
I've been struggling with this also.  If I remember correctly, it's a
problem with the implementation of certs in IIS.  Something about the
packet size and IIS not wanting to allow a large enough packet size.
In the end, after day of trying to get it to work correctly, I
rerouted the uploads through a secondary site.


On 4/9/07, Bobby Schuchert <[EMAIL PROTECTED]> wrote:
> We are using SSL and Client Certificates on an IIS6 box and having trouble 
> with CFFILE upload. For some reason cffile upload no longer will work for a 
> file over 50k in size. We can turn off "require client certificates" in IIS 
> and the upload form works nicely. I even uploaded a 102mb avi file to verify 
> that it worked. As soon as the certificate requirement is turned on, it dies. 
> By dies, I mean it shows nothing but a white screen. It doesn't show an 
> error. The upload form worked fine on our old win2k box even with SSL and 
> client certs. Adobe posted this http://www.adobe.com/go/8d933f86 but the 
> solution does not work.
>
> Does anyone have any ideas? Turning off client certs permanently is not an 
> option as this is a government requirement.
>
> Thanks.
>
> 

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

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


Re: Another Subversion Question

2007-04-02 Thread Zaphod Beeblebrox
Hmmm...I was thinking svn:externals was more for your working copy.
With SVK, I set up a mirror of Rays svn in my svn (svk calls it a
depot).  Then I tell it to sync to my /trunk .  Then I tell it to copy
from /trunk to /local.  Now, whenever I want to make changes to it, I
check out the local version, I can make all the changes that I want to
and I can also update the trunk version from Ray's.  At any point I
can diff or smerge my version and Rays.

On 4/2/07, Dinner <[EMAIL PROTECTED]> wrote:
> Crazily enough, I've got almost the exact same situation as yerzelf.
>
> SVN:externals.  Love it.  Live it.  L-word it.
>
> Using patch files is quite awesomely nifty too...

I need to get more acquainted with the other functionality beyond
commit and update :)

> ** *
> Qs or Cs?  Holla!  :-P
>
> On 4/2/07, Zaphod B wrote:
> > I use the ever present BlogCFC for a couple of blogs.  Each blog has a
> > little bit different layout, but that's about it.  I'm trying to
> > figure out how I could set up the Subversion repository and include
> > Ray's subversion repository to be something like this:
> >
> > /trunk/(Ray's SVN - still updateable whenever Ray does an update)
> > /local/(My tweaks to the actual cfc - mainly allowing for ldap 
> > authentication)
> > /blog1/(a copy from local/client - with site customizations)
> > /blog2/(same as above)
> > /blogN+1/
>
> 

~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


Another Subversion Question

2007-04-02 Thread Zaphod Beeblebrox
I use the ever present BlogCFC for a couple of blogs.  Each blog has a
little bit different layout, but that's about it.  I'm trying to
figure out how I could set up the Subversion repository and include
Ray's subversion repository to be something like this:

/trunk/(Ray's SVN - still updateable whenever Ray does an update)
/local/(My tweaks to the actual cfc - mainly allowing for ldap authentication)
/blog1/(a copy from local/client - with site customizations)
/blog2/(same as above)
/blogN+1/

I want to be able to update my /local/ copy of blogCFC whenever Ray
does a security update, but I don't want to lose my changes.  As with
the individual blog site, whenever there's an update, I want to be
able to roll these down to each site.  Currently I'm using SVK, but it
doesn't have the tool support of SVN such as tortoiseSVN, Subclipse,
etc.

Can subversion do something like this?

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

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


Re: Site shutdown and avoiding CF 404 errors?

2007-03-20 Thread Zaphod Beeblebrox
what web server?

On 3/20/07, Jake. <[EMAIL PROTECTED]> wrote:
> >Does application.cfc run even if there is no cfm file?  I was under
> >the assumption that it didn't.
>
> No, I had to put an empty index.cfm file in alongside it.
>
> So this application.cfc method worked, but only partially. The root directory 
> redirects like a champ, but individual files do not. So for instance:
>
> www.mysite.com/
> redirects fine
>
> www.mysite.com/somepage.cfm
> still errors out.
>
> Any other ideas
>
> 

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

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


Re: Site shutdown and avoiding CF 404 errors?

2007-03-20 Thread Zaphod Beeblebrox
Does application.cfc run even if there is no cfm file?  I was under
the assumption that it didn't.



On 3/20/07, Peterson, Chris <[EMAIL PROTECTED]> wrote:
> You could just make an application.cfc, stick it in the root of your
> deleted folder with this code:
>
> 
>  required="true">
> 
> 
>
>
>
> -Original Message-
> From: Jake. [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, March 20, 2007 9:21 AM
> To: CF-Talk
> Subject: Site shutdown and avoiding CF 404 errors?
>
> I've recently taken down one of my CF sites, but looking at the logs,
> I'm still getting a bunch of hits to non-existent pages. Since they're
> CF pages, they're throwing CF errors. I think this may actually be
> slowing my server.
>
> How can I set up the empty directory to capture any 404 page and
> redirect to a static home page so that it doesn't throw an error?
>
> Thanks!
> Jake
>
>
>
> 

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

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


Re: Site shutdown and avoiding CF 404 errors?

2007-03-20 Thread Zaphod Beeblebrox
You could always remove the .cfm mappings on that site.  Then the web
server would respond with the 404 (that could include a meta tag
redirect)


On 3/20/07, Jake. <[EMAIL PROTECTED]> wrote:
> I've recently taken down one of my CF sites, but looking at the logs, I'm 
> still getting a bunch of hits to non-existent pages. Since they're CF pages, 
> they're throwing CF errors. I think this may actually be slowing my server.
>
> How can I set up the empty directory to capture any 404 page and redirect to 
> a static home page so that it doesn't throw an error?
>
> Thanks!
> Jake
>
> 

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

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


Re: Links to Network shares in Safari

2007-02-01 Thread Zaphod Beeblebrox
as a warning, it's probably going to stop working on IE7.  At least that's
been our experience with our intranet.


On 2/1/07, Jacob Munson <[EMAIL PROTECTED]> wrote:
>
> I've got some local users that use Macs, and one of our Intranet pages
> has videos that people can view.  This works in IE, but not in Firefox
> or Safari:
> href="file:///\\midland\info\#enewsVideo#"
>
> Any ideas on what I could do for non-IE users?  I've done this before
> but can't remember what I did.  Also, Google, Yahoo, etc.  are useless
> to me in this case because any search that includes "file://" as a
> term just searches for "file".
>
> --
> My Sites:
> http://www.techfeed.net/blog/
> http://www.cfquickdocs.com/
> http://cfformprotect.riaforge.org/
>
> 

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

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


Re: Simple source control

2006-12-27 Thread Zaphod Beeblebrox
the newest versions of SVN support locking of a file.  The tortoiseSVN
(explorer integration) even has a right click option to lock the file.

On 12/27/06, Claude Schneegans <[EMAIL PROTECTED]> wrote:
>  >>What happens is when developer A commits a file changed by developer B,
> he is told there is a conflict, and is prompted to compare the two
> versions, generally using diff or some variant of it.
>
> But this is ridiculous!
> So programmer B has to read and check all what programer A has done, and
> integrate either his own code into A's file, or A's code ito his own?
> During all this, he has to check if every line of code is still
> compatible, and during all the time it takes, there is still a chance
> programmer C has modify the same file again?
>
> May be I didn't use the right term with "version control".
> What I mean is some tool that will allow programmer A (even force him)
> to tell the system "I want to work on file such and such". Then all
> these files are "locked", and when user B comes to ask for the same
> files, he will be answered "Sorry, these files are already used by
> programmer A".
> When programmer A upload the new files, they will be sent automatically
> to all other programmers, and programmer B will be said "now you've got
> the new files, you may lock them for yourself if you want."
>
> I don't need to recover previous versions (although that might be an
> option), I just need to manage users so that only one at a time can
> modify a file.
>
> --
> ___
> REUSE CODE! Use custom tags;
> See http://www.contentbox.com/claude/customtags/tagstore.cfm
> (Please send any spam to this address: [EMAIL PROTECTED])
> Thanks.
>
>
> 

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

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


Re: SOT: XSLT with XML

2006-12-14 Thread Zaphod Beeblebrox
I thought that "." was self and "//" was self and descendants?


On 12/14/06, Ian Skinner <[EMAIL PROTECTED]> wrote:
> 
>
> This selects that value of the current node and all child nodes?  What if one 
> does not want the values of the children yet?  How would one get the value of 
> just the current node?
>
> --
> Ian Skinner
> Web Programmer
> BloodSource
> www.BloodSource.org
> Sacramento, CA
>
> -
> | 1 |   |
> -  Binary Soduko
> |   |   |
> -
>
> "C code. C code run. Run code run. Please!"
> - Cynthia Dunning
>
> Confidentiality Notice:  This message including any
> attachments is for the sole use of the intended
> recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or
> distribution is prohibited. If you are not the
> intended recipient, please contact the sender and
> delete any copies of this message.
>
>
>
> 

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

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


Re: calling all CSS gurus

2006-12-06 Thread Zaphod Beeblebrox
you've specified the height of your Nav element to be 1.6em so it's
being honored by the clearing div as such height.  Clear out the
height specification and it flows fine.



-- 
"You scumbag, you maggot
You cheap lousy faggot
Happy Christmas you arse
I pray God its our last"

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

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


Re: SOT XSLT Template Match

2006-12-06 Thread Zaphod Beeblebrox
i went to B&N and bought the XML bible which had some pretty good
stuff about xslt in it.  Once I read that, most of the other tutorial
sites seemed to make more sense to me.


On 12/6/06, Ian Skinner <[EMAIL PROTECTED]> wrote:
> Can anybody point to a good resource on how to use multiple template match 
> blocks inside a XSLT file?  I have always struggled with doing this properly.
>
> TIA
>
> --
> Ian Skinner
> Web Programmer
> BloodSource
> www.BloodSource.org
> Sacramento, CA
>
> -
> | 1 |   |
> -  Binary Soduko
> |   |   |
> -
>
> "C code. C code run. Run code run. Please!"
> - Cynthia Dunning
>
> Confidentiality Notice:  This message including any
> attachments is for the sole use of the intended
> recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or
> distribution is prohibited. If you are not the
> intended recipient, please contact the sender and
> delete any copies of this message.
>
>
>
> 

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

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


Re: Firebug 1.0 Beta is Out

2006-12-04 Thread Zaphod Beeblebrox
Sweet!  He's allowed firebug to be set up to ignore certain web sites!

On 12/4/06, Rey Bango <[EMAIL PROTECTED]> wrote:
> Guys, I posted this on my blog but since I haven't reached reader levels
> on par with Ben Forta, Vince Bonfanti, Rob Ghonda or Sean Corfield, I
> figured I'd let you guys know.
>
> If you've been doing any form of Ajax development, you know how
> invaluable an HTTP sniffer & DOM inspector is. And quite honestly, I've
> found none better than the FireBug extension in FireFox to handle these
> tasks. Its a nice little plugin that sits unobtrusively until you need it.
>
> Well, Joe Hewitt, the author of FireBug, has released an open beta of
> the anxiously awaited FireBug 1.0. This is a MAJOR revamp of the
> original version and a must download if you're doing any type of Ajax,
> CSS or DOM manipulation. Trust me when I tell you that this plugin is
> invaluable and you will end up using it all of the time.
>
> http://www.getfirebug.com/
>
> 

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

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


Re: Form Validation Custom Tag

2006-10-15 Thread Zaphod Beeblebrox
Just to validate that you're suggeting to use client-side validation
IN ADDITION to server-side validation, correct?

On 10/15/06, Claude Schneegans <[EMAIL PROTECTED]> wrote:
>  >>I'd rather have just server side than just client side.
>
> There are things indeed that can only be done on server side, like
> verifying the existance
> of some data in a database, but most of the time, data validation can be
> done client side,
> and when it can be done client side, it is much better.
> Fist it is much faster for the user, then it uses his resources, not
> server's.
> You can verify a date is valid, for instance, just as easily in
> Javascript as in CFML.
>
>  >>but no single tag is going to do your client and server-side validating.
>
> Of course not, if there was such a tag, one almost wouldn't have any
> more code to write ;-)
> But you can have a tag that generates the Javascript necessary to
> do validation client side,  and do the rest of the validation server side in the action template.
>
> --
> ___
> REUSE CODE! Use custom tags;
> See http://www.contentbox.com/claude/customtags/tagstore.cfm
> (Please send any spam to this address: [EMAIL PROTECTED])
> Thanks.
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: Cf vs ?

2006-10-13 Thread Zaphod Beeblebrox
another thing in response to the shared hosting:  To me, cf has always
been a server language meant for your own managed server.  Between
having to set up dsn's in the administrator and having mappings be
server wide, to application variables being visible by any other site,
to having to disable certain tags in a shared hosting situation, it's
never seemed like a good shared hosting fit.  I could be way off base,
but that's just the way I feel.

Also, I've been working cf since the 3.1 days and back when I started
CF was by far the quickest way to generate applications.  I'm still
the quickest with CF vs any other technology because of my experience
only now.  I don't think CF is necessarily the fastest anymore to
someone just starting out.


On 10/13/06, Snake <[EMAIL PROTECTED]> wrote:
> To be fair, the free version has to have some limitations otherwise no-one
> would pay for the full version.
>
>
> Snake
>
> -Original Message-
> From: Russ [mailto:[EMAIL PROTECTED]
> Sent: 14 October 2006 00:00
> To: CF-Talk
> Subject: RE: Cf vs ?
>
> Yea bluedragon is really whack in that they advertise it as a free server,
> but it will not work over SSL.  I've had a project a while ago where we
> decided to use BD, and then hit the SSL bump (it wasn't even in the
> documentation anywhere... just in some obscure faq page on their site).
>
> I felt very misled about the product, considering that previous versions
> didn't limit you like that (this was ver 6.2).
>
> In the end we decided to go with CF 6.
>
> Russ
>
> > -Original Message-
> > From: Dave Lyons [mailto:[EMAIL PROTECTED]
> > Sent: Friday, October 13, 2006 6:43 PM
> > To: CF-Talk
> > Subject: Re: Cf vs ?
> >
> > Like i have said before
> >
> > There are a lot of "graphic deigners" who convert to developers out
> > there and they seem to all think it will cost them over $2000 just to
> > use cfm on their puters so they go with php and I see this almost on a
> daily basis.
> > And like others have said, for the majority of people who use cf, php,
> > asp, .net, ruby, etc. they are on a shared server so cost isnt a
> > concern but these people just dont know and/or understand that, which
> > is were Adobe needs to step in and make it known. Hell, they have the
> > whole design world by the balls so they should be pounding this into them.
> >
> > Would also be cool if Adobe would release cfmx standard as a free
> > server so that it could easily power the majority of users sites and
> > be able to compete with php easily. Seeing how all these designer
> > students are taught php Adobe could change that literaly overnight.
> > While having a bunch of "designers" in the mix would be a PITA at
> > least it would get them started and some may become good developers
> > (especially when they get to the real world and see that they may only
> > get $15 an hour for designer gigs and they could be making 3-4 times
> > that as a coder). And then of course charge for cfmx enterprise for
> > the big boys who need the extra features which wouldnt affect them at all.
> >
> >
> > and to the ** who said people dont use forums.
> > what world do u live in?, half the damn net is forums
> > people just dont use your forums ;)~
> >
> > actually, this might be a more accurate statement:
> >
> > people use forums, developers use lists.
> >
> >
> > and then to BlueDragon:
> > Last I heard they had a free version, but very limited, so i wouldnt
> > concider that an option.
> >
> > BlueDragon could be a good thing but.
> > I have talked about this a lot with people in our user groups and in
> > general and there seem to be a lot of people who just wont even try bd
> > based off the fact that Vince is just such an ass and comes across as
> > a shark, im an ass to but i dont have a big product out there that i
> > need to put a good front on for. Now if Charlie A woulda been runnin
> > the show it would be a different story. I personaly like how Vinces
> > blogs are always point to discussions on seans blog and noone posts to
> > vinces, that should tell you something Vince. If i was you I would get
> > a good image person to be the face of bd and you might see things pick
> > up and also do what i had mentioned earlier with the free version being
> the standard version.
> >
> >
> >
> >
> >
> >
> >
> >
> >
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: How do I disable view source?

2006-10-04 Thread Zaphod Beeblebrox
I use the URL_to_bmp tag and deliver every page as bmp screencap.
It's very nice that way because I don't need to worry about how it
looks on each browser.  I'm thinking of switching to gif or even png
to cut down on my bandwidth cost.

On 10/4/06, Will Tomlinson <[EMAIL PROTECTED]> wrote:
> Hey,
>
> Now I'm tryin' to disable the view source in the browser. I don't want anyone 
> to see my generated html. Anyone have any ideas on this one?
>
> Thanks,
> Will
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: Arghhhh!!

2006-09-28 Thread Zaphod Beeblebrox
Yeah, that query needs to be done something like this:

  
  SELECT  catID,category,parent_id
  FROMcategories
  WHERE   parent_id is null 
parent_id="#parentid#"
  

again, this has not been tested

On 9/28/06, Ian Skinner <[EMAIL PROTECTED]> wrote:
> parent_id = NULL
>
> I am not sure about QofQ's but in other DBMS I work with you are not allowed 
> to use the equal [=] with a NULL.  I would write that as parent_id IS NULL in 
> my oracle queries.
>
> Again I'm not sure if this applies to a CF QofQ.
>
>
> --
> Ian Skinner
> Web Programmer
> BloodSource
> www.BloodSource.org
> Sacramento, CA
>
> -
> | 1 |   |
> -  Binary Soduko
> |   |   |
> -
>
> "C code. C code run. Run code run. Please!"
> - Cynthia Dunning
>
> Confidentiality Notice:  This message including any
> attachments is for the sole use of the intended
> recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or
> distribution is prohibited. If you are not the
> intended recipient, please contact the sender and
> delete any copies of this message.
>
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: Arghhhh!!

2006-09-28 Thread Zaphod Beeblebrox
okayI had adapted some code from another project that used a
parent_id of 0 instead of nulls.  If you could change yours form nulls
to zeros, then change the last line to , that
would work.

Unfortunately, I'm writing this blindly since I don't have the datasource :)


On 9/28/06, Doug Brown <[EMAIL PROTECTED]> wrote:
> I get an error
>
> Query Of Queries syntax error.
> Encountered "parent_id = NULL. Incorrect conditional expression, Expected
> one of [like|null|between|in|comparison] condition,
>
>
>
> - Original Message -
> From: "Zaphod Beeblebrox" <[EMAIL PROTECTED]>
> To: "CF-Talk" 
> Sent: Thursday, September 28, 2006 10:23 AM
> Subject: Re: Arg!!
>
>
> > oops, that last line should be 
> >
> > On 9/28/06, Zaphod Beeblebrox <[EMAIL PROTECTED]> wrote:
> > > 
> > >
> > >
> > >
> > >
> > >
> > >SELECT  catID,category,parent_id
> > >FROMcategories
> > >WHERE   parent_id =  > > null="#(parentID eq "")/>
> > >
> > >
> > >
> > >
> > >
> > >#category#
> > >
> > > - Hide quoted text -
> > > > > list_items.recordcount>
> > >
> > >
> > >
> > >
> > > 
> > >
> > > 
> > >
> > >
> > > On 9/28/06, Doug Brown <[EMAIL PROTECTED]> wrote:
> > > > See, there I go again not making my self clear. The table actually has
> more
> > > > than just makes and models of cars.
> > > > It has antiques, autos, furniture, blah blah. each parent category has
> it's
> > > > child category and each child has it's own child. As an example,
> Antiques
> > > > would have a child of asian antiques and it would have a child of all
> the
> > > > different asian antiques you could think of. I hope this makes more
> sense.
> > > > Anyhow the first group of childs I can refer back to their parent, but
> the
> > > > second group of childs are referenced back to the child of the parent
> and
> > > > not the parent directly.
> > > >
> > > >
> > > >
> > > >
> > > > Doug
> > > >
> > > >
> > > >
> > > > - Original Message -
> > > > From: "Jim Wright" <[EMAIL PROTECTED]>
> > > > To: "CF-Talk" 
> > > > Sent: Thursday, September 28, 2006 9:43 AM
> > > > Subject: Re: Arg!!
> > > >
> > > >
> > > > > Doug Brown wrote:
> > > > > > Hey Jim...I have one more quick question for you.
> > > > > >
> > > > > > As I stated before I have just the one table to display the makes
> and
> > > > models
> > > > > > for the menu, and I am kinda dumbfounded as to how to display all
> the
> > > > makes
> > > > > > on one page with their corresponding models beneath them. Can this
> be
> > > > > > accomplished with one table?
> > > > > >
> > > > > > IE:
> > > > > >
> > > > > > cat_id
> > > > > > category
> > > > > > parent_id
> > > > > >
> > > > > > Right now the data looks like so
> > > > > >
> > > > > > cat_idcategoryparent_id
> > > > > > 1chevynull
> > > > > > 2 ford null
> > > > > > 3Camaro1
> > > > > > 4Escort2
> > > > >
> > > > > Something like...
> > > > >
> > > > > SELECT a.category AS make, b.category AS model
> > > > > FROM categories a LEFT JOIN categories b ON a.cat_id = b.parent_id
> > > > > WHERE a.parent_id IS NULL
> > > > > ORDER BY a.category,b.category
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> >
> >
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: Arghhhh!!

2006-09-28 Thread Zaphod Beeblebrox
oops, that last line should be 

On 9/28/06, Zaphod Beeblebrox <[EMAIL PROTECTED]> wrote:
> 
>
>
>
>
>
>SELECT  catID,category,parent_id
>FROMcategories
>WHERE   parent_id =  null="#(parentID eq "")/>
>
>
>
>
>
>#category#
>
> - Hide quoted text -
> list_items.recordcount>
>
>
>
>
> 
>
> 
>
>
> On 9/28/06, Doug Brown <[EMAIL PROTECTED]> wrote:
> > See, there I go again not making my self clear. The table actually has more
> > than just makes and models of cars.
> > It has antiques, autos, furniture, blah blah. each parent category has it's
> > child category and each child has it's own child. As an example, Antiques
> > would have a child of asian antiques and it would have a child of all the
> > different asian antiques you could think of. I hope this makes more sense.
> > Anyhow the first group of childs I can refer back to their parent, but the
> > second group of childs are referenced back to the child of the parent and
> > not the parent directly.
> >
> >
> >
> >
> > Doug
> >
> >
> >
> > - Original Message -
> > From: "Jim Wright" <[EMAIL PROTECTED]>
> > To: "CF-Talk" 
> > Sent: Thursday, September 28, 2006 9:43 AM
> > Subject: Re: Arg!!
> >
> >
> > > Doug Brown wrote:
> > > > Hey Jim...I have one more quick question for you.
> > > >
> > > > As I stated before I have just the one table to display the makes and
> > models
> > > > for the menu, and I am kinda dumbfounded as to how to display all the
> > makes
> > > > on one page with their corresponding models beneath them. Can this be
> > > > accomplished with one table?
> > > >
> > > > IE:
> > > >
> > > > cat_id
> > > > category
> > > > parent_id
> > > >
> > > > Right now the data looks like so
> > > >
> > > > cat_idcategoryparent_id
> > > > 1chevynull
> > > > 2 ford null
> > > > 3Camaro1
> > > > 4Escort2
> > >
> > > Something like...
> > >
> > > SELECT a.category AS make, b.category AS model
> > > FROM categories a LEFT JOIN categories b ON a.cat_id = b.parent_id
> > > WHERE a.parent_id IS NULL
> > > ORDER BY a.category,b.category
> > >
> > >
> > >
> >
> > 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: Arghhhh!!

2006-09-28 Thread Zaphod Beeblebrox

   

   

   
   SELECT  catID,category,parent_id
   FROMcategories
   WHERE   parent_id = 
   

   
   
   
   #category#
   
- Hide quoted text -
   
   

   






On 9/28/06, Doug Brown <[EMAIL PROTECTED]> wrote:
> See, there I go again not making my self clear. The table actually has more
> than just makes and models of cars.
> It has antiques, autos, furniture, blah blah. each parent category has it's
> child category and each child has it's own child. As an example, Antiques
> would have a child of asian antiques and it would have a child of all the
> different asian antiques you could think of. I hope this makes more sense.
> Anyhow the first group of childs I can refer back to their parent, but the
> second group of childs are referenced back to the child of the parent and
> not the parent directly.
>
>
>
>
> Doug
>
>
>
> - Original Message -
> From: "Jim Wright" <[EMAIL PROTECTED]>
> To: "CF-Talk" 
> Sent: Thursday, September 28, 2006 9:43 AM
> Subject: Re: Arg!!
>
>
> > Doug Brown wrote:
> > > Hey Jim...I have one more quick question for you.
> > >
> > > As I stated before I have just the one table to display the makes and
> models
> > > for the menu, and I am kinda dumbfounded as to how to display all the
> makes
> > > on one page with their corresponding models beneath them. Can this be
> > > accomplished with one table?
> > >
> > > IE:
> > >
> > > cat_id
> > > category
> > > parent_id
> > >
> > > Right now the data looks like so
> > >
> > > cat_idcategoryparent_id
> > > 1chevynull
> > > 2 ford null
> > > 3Camaro1
> > > 4Escort2
> >
> > Something like...
> >
> > SELECT a.category AS make, b.category AS model
> > FROM categories a LEFT JOIN categories b ON a.cat_id = b.parent_id
> > WHERE a.parent_id IS NULL
> > ORDER BY a.category,b.category
> >
> >
> >
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: Arghhhh!!

2006-09-27 Thread Zaphod Beeblebrox
kind of ironic huh?  The Vanquish is ...errm...vanquished.

On 9/27/06, Doug Brown <[EMAIL PROTECTED]> wrote:
> Talk about frustrating. Ok, I am populating a menu from a database and 
> something weird is going on. Hopefully someone can shed some light. This is a 
> mySql database if that makes any difference. When I drill down into the menu, 
> and select say Aston Martin as a auto make, I get a list of models. When I 
> click on any model the Vanquish S model completely vanishes from the menu. 
> This only happens with this one particular make. I have deleted and 
> reinserted the information for this make and it always does the same thing.
>
> DB9
> V8 Vantage
> Vanquish S
> Other
>
>
> table categories
> cat_id pri key
> category
> parent_id
>
>
> 
> SELECT
>  categories.cat_id,
>  categories.category,
>  categories.parent_id
> FROM
>  categories
> WHERE
>  categories.cat_id
> BETWEEN
>  
> AND
>  
> ORDER BY CASE WHEN
>  categories.category = 'Other'
>  THEN 1 ELSE 0 END,
>  categories.category
> 
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: Image resizing

2006-09-13 Thread Zaphod Beeblebrox
ahh, there's the rub!  I just use cfexecute with command line switches
in CF.  It's not the best solution. But, with tags that leverage the
java image component, I was experience resizing lasting up to 2
minutes and dark results.  With ImageMagick, that same file is resized
in less than 2 seconds and with great quality.


On 9/13/06, Rick Faircloth <[EMAIL PROTECTED]> wrote:
> I had a look at the ImageMagick site, but didn't see anything about how
> to use it with CF or what version of CF is required as a minimum.
>
> Know of any resources online about that?
>
> Rick
>
> -Original Message-
> From: Zaphod Beeblebrox [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 13, 2006 1:00 PM
> To: CF-Talk
> Subject: Re: Image resizing
>
> I had trouble resizing large images to smaller ones.  They would come out
> about 20 shades darker with the tmt_img tag.  Of course, I didn't have a
> better java solution, so I opted for installing ImageMagick on the server.
>
>
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: Image resizing

2006-09-13 Thread Zaphod Beeblebrox
I had trouble resizing large images to smaller ones.  They would come
out about 20 shades darker with the tmt_img tag.  Of course, I didn't
have a better java solution, so I opted for installing ImageMagick on
the server.


On 9/13/06, Larry Lyons <[EMAIL PROTECTED]> wrote:
> >imageCFC (I forget who did it, maybe rick?)
> >Imagemagick from alagad.com
> >
> >Russ
> >-Original Message-
> >From: Jake Churchill [mailto:[EMAIL PROTECTED]
> >Sent: 12 September 2006 22:44
> >To: CF-Talk
> >Subject: Image resizing
> >
> >I know I've seen this topic posted before but I need some input.  I need an
> >image resizing program, preferably written in Java that has the ability to
> >resize images but retain the quality.  What I currently use is a cfx tag
> >programmed in C++.  It does a good job but the smaller images always come
> >out pixelated which I cannot have.  Any suggestions?
>
> There's also Massimo Foti's tmt_img.cfc. It does a fairly good job of image 
> resizing.
> You can look at the api and download it at 
> http://www.olimpo.ch/tmt/cfc/tmt_img/
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: restarting CF via the factory

2006-09-06 Thread Zaphod Beeblebrox
I hope you're the only cf site on this server :)


On 9/6/06, D F <[EMAIL PROTECTED]> wrote:
> Well the problem is not file creation, the problem is not having admin access 
> to the services to restart them. Hence why I was looking for a backdoor to 
> restarting the CF server.
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Zaphod Beeblebrox
Then my sql server trace logs must be lying.

On 8/28/06, Robertson-Ravo, Neil (RX)
<[EMAIL PROTECTED]> wrote:
> No, you do not, not really. This is not how SQL Server "works".
>
> You are still using inline compiled on demand SQL.
>
>
>


-- 
I took a walk around the world to ease my troubled mind
I left my body lying somewhere in the sands of time.
I watched the world flow to the dark side of the moon.
I feel there's nothing I can do.

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-27 Thread Zaphod Beeblebrox
I run almost all my queries with queryparam so they're all precompiled
anyway.  When I do a trace, I see that sqlserver is calling that query
as an sp after the first call.  Therefore, I get the benefits of speed
of the sp with the ease of deployment with cf.


On 8/27/06, Teddy Payne <[EMAIL PROTECTED]> wrote:
> Even for small queries, the execution time will typically always be faster
> executed from a databse like MS SQl, Oracle ..etc than from the CF server.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-27 Thread Zaphod Beeblebrox
I did a project where sp's were used almost exclusively.  That was a
major pia whenever it came to moving the app from dev to production.
Usually, you can role an update to production by just copying over the
cfml.  Changes in sp's required you to either increment the sp name,
or take the app down while you rolled out the sp change.  Either way,
it was a pia.

On 8/27/06, Snake <[EMAIL PROTECTED]> wrote:
> While on that subject, a lot of people insist that everythig should be done
> with SP's wherever possible.
> While this is indeed a good idea for long/complex queries that will see
> vastly improved performance and speed, but I think it is wrong to do it just
> for the sake of it, and to put basic select or other small queries etc into
> SP's.
> One of the primary reasons being that where contractors are involved, they
> will often have access to the CFML only and not the database server, and
> thus cannot access the stored proc, which can seriously slow down
> development time while they wait for the DBA to send them a copy of the SP,
> and then change it, send it back to the DBA, wait for him to apply it etc.
> Also it is in general a pain if you need to do quick fixes or updates on
> code in general. Usually it is easy to gain access to the code via FTP from
> wherever you are as this is generally an open port, but not to the DB
> server, as you will either need remote access to port 1433 or remote desktop
> access. neither of which may be obtained quickly or easily as they
> should/would be blocked from the outside world via a firewall.
>
> Just my 2p
>
> Snake
>
> -Original Message-
> From: Robertson-Ravo, Neil (RX)
> [mailto:[EMAIL PROTECTED]
> Sent: 27 August 2006 13:42
> To: CF-Talk
> Subject: Re: Top 100 ColdFusion Programmers
>
> Again, and the point has been echoed by James, is that the all-rounder
> should know both.
>
> I am not saying that SPs etc (not that has anything to do with you level of
> SQL per se) are what you should know, we all know that ColdFusion can do a
> lot with loops and SQL but if you have no choice but to use SQL in a job,
> you will be stuffed if all you know SELECT.
>
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: How would I code this line?

2006-08-25 Thread Zaphod Beeblebrox







On 8/25/06, Rick Faircloth <[EMAIL PROTECTED]> wrote:
> My goal is to get rid of the comma after the Client_Last_Name, unless
> there is a Client_Name_Suffix.
>
> 
> '#Get_New_Client.Client_First_Name# 
> #Get_New_Client.Client_Middle_Name# 
> #Get_New_Client.Client_Last_Name#
>
> 
>
> , #Get_New_Client.Client_Name_Suffix#
>
> 
>
> '>
>
> This is all one line with no spaces, but I separated the parts
> to make it easier to read.what am I doing wrong?
>
> Can I use the CFIF in the middle of the CFSET like that or should I do this:
>
> 
> '#Get_New_Client.Client_First_Name# 
> #Get_New_Client.Client_Middle_Name# 
> #Get_New_Client.Client_Last_Name#'
>
> 
>
> 
>
> 
>
> Rick
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Flash Forms and reporting server validation errors

2006-08-07 Thread Zaphod Beeblebrox
Any strategies for displaying server validation errors in flash forms,
stuff like a duplicate email address that you only know once you make
a trip to the server?

I'd like to have it presented the same as the other validation errors
(client side ones)

Thanks

zB

-- 
Soy un perdedor
I'm a loser baby, so why don't you kill me?
Get crazy with the cheese whiz!

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: Comparing Form Fields

2006-08-01 Thread Zaphod Beeblebrox
of course, you'll still want to test it on the server side as well.

On 8/1/06, Zaphod Beeblebrox <[EMAIL PROTECTED]> wrote:
> For "different" types of validation, you will need to write some JS,
> but it can still tie into CF, e.g.
>
> 
> function testPasswords(form, ctrl, value) {
>   if (form['password2'] != value) {
>return false
>   } else
>return true
> }
> 
>
>
> 
>
> 
> 
>
> 
>
> On 8/1/06, Charlie Griefer <[EMAIL PROTECTED]> wrote:
> > CF can do it after the form is submitted.  CF lives on the server.
> > Knows nothing of the client.
> >
> > On 8/1/06, Steve LaBadie <[EMAIL PROTECTED]> wrote:
> > > Does CF have the capability to compare to form fields or do I just us
> > > JavaScript?  I am not validating input to a database just want to make
> > > sure that the email address is entered properly.
> > >
> > >
> > >
> > > Can I use the Compare Function to do this?
> > >
> > >
> > >
> > > Steve LaBadie, Web Manager
> > > East Stroudsburg University
> > > 200 Prospect St.
> > > East Stroudsburg, Pa 18301
> > > 570-422-3999
> > > [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
> > > http://www.esu.edu <http://www3.esu.edu>
> > >
> > >
> > >
> > >
> > >
> > >
> >
> > 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: Comparing Form Fields

2006-08-01 Thread Zaphod Beeblebrox
For "different" types of validation, you will need to write some JS,
but it can still tie into CF, e.g.


function testPasswords(form, ctrl, value) {
  if (form['password2'] != value) {
   return false
  } else
   return true
}










On 8/1/06, Charlie Griefer <[EMAIL PROTECTED]> wrote:
> CF can do it after the form is submitted.  CF lives on the server.
> Knows nothing of the client.
>
> On 8/1/06, Steve LaBadie <[EMAIL PROTECTED]> wrote:
> > Does CF have the capability to compare to form fields or do I just us
> > JavaScript?  I am not validating input to a database just want to make
> > sure that the email address is entered properly.
> >
> >
> >
> > Can I use the Compare Function to do this?
> >
> >
> >
> > Steve LaBadie, Web Manager
> > East Stroudsburg University
> > 200 Prospect St.
> > East Stroudsburg, Pa 18301
> > 570-422-3999
> > [EMAIL PROTECTED] 
> > http://www.esu.edu 
> >
> >
> >
> >
> >
> >
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: Unofficial CF Developer Salary Survey

2006-08-01 Thread Zaphod Beeblebrox
and to that end, is it only cfmx7 advanced certs.  Actually though,
has anyone ever received a raise based on obtaining a cert?


On 8/1/06, Charlie Griefer <[EMAIL PROTECTED]> wrote:
> is it just for those who hold advanced cf certs?  (since that's what
> the original poster was looking for) :)
>
> On 8/1/06, Matt Williams <[EMAIL PROTECTED]> wrote:
> > Come one, come all...
> > An anonymous salary survey is available at
> >
> > http://keysym.org/cfs
> >
> > I didn't bother with any validation, so if you try to break it, you probably
> > will. :)
> >
> > I'll leave it up for a few days so people will have time and for those in
> > other time zones, etc.
> >
> > Matt
> >
> >
> > On 8/1/06, PETER SHEATS <[EMAIL PROTECTED]> wrote:
> > >
> > > Wow, all this for me?  Thanks =)
> > >
> > > I don't think I should answer it since it'll bring the average way
> > > down...
> > >
> > > Peter Sheats
> > >
> > >
> > --
> > Matt Williams
> > "It's the question that drives us."
> >
> >
> >
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: CFIDE not accessible - I think???

2006-07-31 Thread Zaphod Beeblebrox
try hitting http://yoursite_or_localhost/CFIDE/

it might give you a permission error, or it will give you a not found
error.  The permission error is ok.



On 7/31/06, Steve LaBadie <[EMAIL PROTECTED]> wrote:
> Not able to output data to CF Flash (cfselect) forms or CFGRID.  How
> would I check to see if the CFIDE is accessible or not?
>
>
>
> Steve LaBadie, Web Manager
> East Stroudsburg University
> 200 Prospect St.
> East Stroudsburg, Pa 18301
> 570-422-3999
> [EMAIL PROTECTED] 
> http://www.esu.edu 
>
>
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248294
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: in CF Flash Form

2006-07-28 Thread Zaphod Beeblebrox
Steve, I had this exact problem yesterday and it turned out to be that
I didn't have the CFIDE mapping in that web site.  You might want to
check on that.


On 7/28/06, Steve LaBadie <[EMAIL PROTECTED]> wrote:
> I have a CF Flash form with a  populated through a DB, but it
> doesn't populate.  What I'm I doing wrong?
>
>
>
> 
>
> Select *
>
> FROM member_type
>
> ORDER BY type
>
> 
>
>
>
> 
>
> 
>
>
>
> 
>
> Select Department
>
>  >#type#
>
> 
>
>
>
> 
>
> 
>
> 
>
> 
>
>  label="Comments:">
>
> 
>
> 
>
> 
>
>
>
> Steve LaBadie, Web Manager
> East Stroudsburg University
> 200 Prospect St.
> East Stroudsburg, Pa 18301
> 570-422-3999
> [EMAIL PROTECTED] 
> http://www.esu.edu 
>
>
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248074
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Flash form printing

2006-07-26 Thread Zaphod Beeblebrox
Is there some quick and easy way to print the contents of a flash form
if the form has a scrollbar.  Currently, I can right click on it and
select print, but that only prints the currently visible portion.

Thanks

-- 
There's snakes upon your ladder
And there's dice upon your skirt
There's lipstick on my collar
And there's sweat upon my shirt

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:247812
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: OT: Javascript Menu that Displays Over IFrames

2006-07-14 Thread Zaphod Beeblebrox
Ali,

I've used a trick to get drop downs to float over select boxes in IE.
The trick is to put an relatively positioned empty iframe behind each
one of your drop down menu.





On 7/14/06, Ali Awan <[EMAIL PROTECTED]> wrote:
> I know this is not a CF question, but since this list has a lot more
> activity than the Javascript one, I never get any questions answered there,
> I figured there are many more people on here that are more well-versed in
> javascript than I.
>
>
>
> I am looking for a free DHTML/Javascript Drop-Down navigation that will
> display over i-frames.
>
> If anyone knows of any, or even how to get a Javascript drop-down menu to
> display over i-frames in the first place, I would be extremely grateful.
>
>
>
> Thanks,
>
> Ali
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246603
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: I hate frickin sports

2006-06-20 Thread Zaphod Beeblebrox
sorry, wrong address.damn!  what a loser I am tonight.


On 6/20/06, Zaphod Beeblebrox <[EMAIL PROTECTED]> wrote:
> So the Mav's lost the (opposite of chill) tonight.  I realized why I
> don't like watching sports and getting wrapped up in them:
>
> I HATE F-ING LOSING!
>
> I hate it more than I like winning.  It drives me crazy to be so hyped
> up about winning and watch it slip through your hands without being
> able to do anything about it.  On the flip side, I doesn't bother me
> near as much to lose a game that I'm actually participating in.
> Anyone else like this, or do I need to seek counseling?
>
> --
> --
> Sleep and dream is all I crave,
> I travel far across the Milky Way
> To my master I've become a slave
> Till we meet again some other day
> where silence speaks as loud as war
> Earth returns to what it was before.
>


-- 
--
Sleep and dream is all I crave,
I travel far across the Milky Way
To my master I've become a slave
Till we meet again some other day
where silence speaks as loud as war
Earth returns to what it was before.

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


I hate frickin sports

2006-06-20 Thread Zaphod Beeblebrox
So the Mav's lost the (opposite of chill) tonight.  I realized why I
don't like watching sports and getting wrapped up in them:

I HATE F-ING LOSING!

I hate it more than I like winning.  It drives me crazy to be so hyped
up about winning and watch it slip through your hands without being
able to do anything about it.  On the flip side, I doesn't bother me
near as much to lose a game that I'm actually participating in.
Anyone else like this, or do I need to seek counseling?

-- 
--
Sleep and dream is all I crave,
I travel far across the Milky Way
To my master I've become a slave
Till we meet again some other day
where silence speaks as loud as war
Earth returns to what it was before.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:244361
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: I can not get ColdFusion to reload cfm page.

2006-06-16 Thread Zaphod Beeblebrox
even you when force a cache refresh with Shift-F5 in Internet Explorer?

On 6/16/06, Troy Simpson <[EMAIL PROTECTED]> wrote:
> My config is:
> CFMX Enterprise 7.0.1
> Windows Server 2003
> Internet Explorer Browser
> IIS
> Dreamweaver 8
>
> It appears that coldfusion is caching pages but I have turned off all
> page caching in the browser and in the CF Administrator.
>
> Here is what happens.
>
> I connect to the CF Server using a windows share like this:
> \\server\cfproject
>
> I edit a cfm template and save the changes to the server.
> I refresh the page in IE with:
>
> http://server.domain.com/index.cfm
>
> And the changes to my template are not rendered in the HTML page.
>
> But if I remote desktop to the server, open the file (which contains
> my changes), add a space to the file and save it, ColdFusion detects
> the changes to the template and renders the page just fine.
>
> Any one know what is going on and why this happens?  It is as if
> ColdFusion is not detecting the change or the Windows OS is not
> letting CF know that the file has changes.  I am really stumped with
> this one.
>
> Other developers have comented on this same behavior.  I had another
> developer say that he has to way 3 minutes or so before he can refresh
> the page in order for the change to be in place.
>
> Any ideas.
>
> --
> Thanks,
> Troy
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243882
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: Fusebox 4 Slow?

2006-06-06 Thread Zaphod Beeblebrox
dave, you keep saying this, but then won't explain why you're coding
in CF.  Afterall, it's not faster than asp.net according to several
benchmarks.  If milliseconds are so important to the customer, you're
doing a disservice to them currently.

On 6/6/06, dave <[EMAIL PROTECTED]> wrote:
> " and the vast majority of applications are better served with easier
> development and maintenance than runtime performance. "
>
> Thus making it better for us but not the web site vistors, i just don't see 
> that as a good solution if it creates a noticable difference.
>
> ~Dave the disruptor~
>
>
>
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:242747
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: complete 360 product photos

2006-05-19 Thread Zaphod Beeblebrox
yeah, but it's a lot easier to take a 360 degree view from inside of a room
that to suspend something in midair and take a picture of the bottom of it.
:)


On 5/19/06, Bryan Stevenson <[EMAIL PROTECTED]> wrote:
>
> Any realtor could answer that questionsame technology as the 360 room
> views
> used in home virtual tours in reverse ;-)
>
> Bryan Stevenson B.Comm.
> VP & Director of E-Commerce Development
> Electric Edge Systems Group Inc.
> phone: 250.480.0642
> fax: 250.480.1264
> cell: 250.920.8830
> e-mail: [EMAIL PROTECTED]
> web: www.electricedgesystems.com
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241004
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: complete 360 product photos

2006-05-19 Thread Zaphod Beeblebrox
Oh man, don't give iPix anymore business.  They're freaking patent on
immersive imaging is a joke.  Their business practices are just plain
crappy.

Apple's site has quite a bit of information on Object movies.



On 5/19/06, Ray Champagne <[EMAIL PROTECTED]> wrote:
>
> Is this a new product of IPIX's?  I know they do 360 degree views from
> one perspective, but I didn't think they did the "hover" thing that
> Dave's asking for.
>
> Andy Matthews wrote:
> > Check out iPix. It's a VR quicktime plugin.
> >
> >  > andy matthews
> > web developer
> > certified advanced coldfusion programmer
> > ICGLink, Inc.
> > [EMAIL PROTECTED]
> > 615.370.1530 x737
> > --//->
> >
> > -Original Message-
> > From: dave [mailto:[EMAIL PROTECTED]
> > Sent: Thursday, May 18, 2006 5:37 PM
> > To: CF-Talk
> > Subject: complete 360 product photos
> >
> >
> > I have a site now where we display the products in a 360 view (straight
> side
> > to side), the client has asked me if when can do a "global" version this
> > time, meaning not just side 2 side but completely around like it was
> > hovering in space. I can't find anything like that out there and my
> > photogrpaher and I have been trying to figure out how but whe havent
> quite
> > got it.
> >
> > Anyone got any ideas?
> >
> > ~Dave the disruptor~
> >
> >
> >
> >
> >
> >
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240969
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: complete 360 product photos

2006-05-19 Thread Zaphod Beeblebrox
find yourself a cheap anti-gravity ray gun on ebay first, then everything
after that should be self apparent.



On 5/18/06, dave <[EMAIL PROTECTED]> wrote:
>
> I have a site now where we display the products in a 360 view (straight
> side to side), the client has asked me if when can do a "global" version
> this time, meaning not just side 2 side but completely around like it was
> hovering in space. I can't find anything like that out there and my
> photogrpaher and I have been trying to figure out how but whe havent quite
> got it.
>
> Anyone got any ideas?
>
> ~Dave the disruptor~
>
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240961
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: What do you use to capture a video frame?

2006-05-17 Thread Zaphod Beeblebrox
I know this is a little late, but I use VRTainments CapturePad.  It will
capture streaming video off the internet, snapshots of streaming video,
etc

All for a low price of $20.

Probably one of the most awesome capture programs I've used.


On 5/17/06, Mike Kear <[EMAIL PROTECTED]> wrote:
>
> As it turned out,  the HypersnapDX that Patric suggested wouldnt capture
> the
> video image either.  Just like all the other capture mechanisms I'd tried
> up
> to that point, it captured anything on the desktop EXCEPT the content of
> the
> video.Which is what i wanted in the first place.
>
> So here's what I ended up doing:
>
> I used right-click/ Open with ...   and tried a few programs,  none of
> which
> would capture the image i needed.  All captured anything BUT the video.
> I used right-click/open with ... and chose Internet explorer.   It opened
> the video and I was able to capture it by using Alt-PrtScrn  (anyone
> forgotten what those keys are for?it copies a window or the whole
> desktop to the clipboard, to be pasted into some other program).
>
> I pasted the result into a new image in fireworks, then cropped off all
> the
> bits of the desktop I didnt want, reduced the size of the image,  exported
> it as a jpg and used it in my  content management system.
>
> If anyone wants to see the result, it's at
> http://bluegrass.org.au/index.cfm?pid=111454 WARNING:  content
> includes
> banjos - view with adult supervision.   It links to a 3.5minute video done
> with flash video.
>
>
> Cheers
> Mike Kear
> Windsor, NSW, Australia
> Certified Advanced ColdFusion Developer
> AFP Webworks
> http://afpwebworks.com
> ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month
>
>
>
>
>
>
> On 5/17/06, Dawson, Michael <[EMAIL PROTECTED]> wrote:
> >
> > I use Macromedia's RoboScreenCapture.
> >
> > -Original Message-
> > From: Nick Tong - TalkWebSolutions.co.uk [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, May 17, 2006 6:29 AM
> > To: CF-Talk
> > Subject: Re: What do you use to capture a video frame?
> >
> > I use snagIT www.techsmith.com/
> >
> > --
> > Nick Tong
> >
> > web: http://talkwebsolutions.co.uk
> > blog: http://succor.co.uk
> > shorturls: http://wapurl.co.uk
> >
> >
>
>
> 

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

2006-05-12 Thread Zaphod Beeblebrox
"If you choose not to use a framework, you still have made a choice,
you can choose from OOP or procedural code still,
I will choose a path that's clear,
I will choose freewill"

Apologies to Rush

Zaph

On 5/12/06, Dawson, Michael <[EMAIL PROTECTED]> wrote:
>
> I agree completely and I currently use no framework other than my own.
>
> -Original Message-
> From: Rick Root [mailto:[EMAIL PROTECTED]
> Sent: Friday, May 12, 2006 10:36 AM
> To: CF-Talk
> Subject: Frameworks
>
> I was just cruising through the coldfusion job postings on the raleigh
> craigslist, and I came across the following in one of the postings:
>
> This position requires a programmer who is NOT set
> on his/her own methodology. Our team does not create
> un-necessary code with a complicated development
> methodology or process. It's very important that you
> can relate to this philosophy.
>
> This is the most brilliant thing I've ever read.  It could only be
> slightly more brilliant if they weren't obviously "anti-framework".
>
> One of my pet peeves has always been people who REQUIRE candidates have
> experience in a specific methodology in order to be considered for a
> job.  In my opinion, any good coldfusion developer can pick up any
> framework they want pretty quickly.  fusebox, mach-ii, model-glue,
> whatever.
>
> I've been programming in coldfusion for 9 years, and I've never used a
> "framework" of any kind.  NOT because I don't want to, but because I've
> never NEEDED to.  None of my employers have ever asked me to use a
> specific methodology or framework, and maybe that's because I've always
> been on essentially a one person development team.  But that doesn't
> mean I couldn't learn a framework if I was asked to.
>
> Okay, done ranting.
>
> Rick
>
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240345
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: Search Realestate multiple listings

2006-05-09 Thread Zaphod Beeblebrox
yeah, they seem to be worse than the priory de sion regarding sharing
information.


On 5/9/06, Alan Rother <[EMAIL PROTECTED]> wrote:
>
> Yeah,
>
> I ran into this erlier this year. it turns out there isn't such a thing as
> "The MLS".
>
> Every region in America has it's own MLS group and it appears there is no
> effort to tie them together. Alos, I have discovered many of them are
> extremely resistant to the idea of giving anyone access to the data.
>
> =]
> --
> Alan Rother
> Macromedia Certified Advanced ColdFusion MX 7 Developer
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240013
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: ASP.Net book for CF programmer

2006-05-05 Thread Zaphod Beeblebrox
Yep, learn ASP.net 2.0, php, python, or ruby.  Learning any of these will
help expand your ideas on how to approach different problems.  CF is great,
but it's not always the best solution.

On 5/5/06, Aaron Rouse <[EMAIL PROTECTED]> wrote:
>
> I'd learn something other than CF, knowing 4.5.2 well enough to me would
> be
> good enough knowledge to pick up a later version of CFM but it helps none
> or
> very little to learn some other language.  The more tools in your box, the
> better off you are.
>
> On 5/5/06, Rick Faircloth <[EMAIL PROTECTED]> wrote:
> >
> >
> >
> > ASP.NET 2.0...harder to code, I think, but seems to have functions that
> > CF 7 doesn't.  All the software from OS, server (IIS 6), Visual Web
> > Developer,
> > all from the same company and integrated in approach...
> >
>
>
> 

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


  1   2   >