[cfaussie] Re: Hack ColdFusion Application

2007-05-02 Thread Taco Fleur
Anyone not interested does not have to participate. On 5/2/07, Mike Kear [EMAIL PROTECTED] wrote: Taco if you've done a shoddy job of closing the loopholes, the testers are going to get paid quite a lot, but if you've done a pretty good job of locking the site down from attacks, the testers

[cfaussie] Re: Aptana - updating eclipse to 3.2

2007-05-02 Thread AJ Mercer
Yeee Har! removes safety harness It is all working removes crash helmet What a rush man :-D Elipse 3.2 / GEF 3.2 / QuantumDB / oracle JDBC +cfEclipse 1.3 +Aptana Now I am ready to start doing some work But maybe a coffee first Then it will be time to go home OK, so first thing tomorrow I will

[cfaussie] Re: Aptana - updating eclipse to 3.2

2007-05-02 Thread Andrew Scott
Np... Andrew Scott Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613 8676 4223 Mobile: 0404 998 273 From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of AJ Mercer Sent: Wednesday, 2 May 2007 4:45 PM To: cfaussie@googlegroups.com Subject:

[cfaussie] Speaking of new CF sites

2007-05-02 Thread Stephen M
http://www.donotcall.gov.au is now live. To be officially launched by Senator Helen Coonan (Minister for Communications) sometime tomorrow (Thursday 3rd), but we've just opened the firewall because she might mention it on Sunrise (channel 7) at 7.10 am. I don't have to invite anyone to try and

[cfaussie] Re: Speaking of new CF sites

2007-05-02 Thread Andrew Scott
Yay.. I am registering.. On 5/2/07, Stephen M [EMAIL PROTECTED] wrote: http://www.donotcall.gov.au is now live. To be officially launched by Senator Helen Coonan (Minister for Communications) sometime tomorrow (Thursday 3rd), but we've just opened the firewall because she

[cfaussie] Re: Speaking of new CF sites

2007-05-02 Thread Barry Beattie
please forgive me for saying... Your email address : _ [ ] Email me before this registration expires. we all onlist have email addresses but (being a _mandatory_ field) can this be safely said for everyone? Laura, the nice old lady down the road, Mal and Jean the retired couple

[cfaussie] Re: Speaking of new CF sites

2007-05-02 Thread M@ Bourke
They have the internet on computers now? On 5/2/07, Barry Beattie [EMAIL PROTECTED] wrote: please forgive me for saying... Your email address : _ [ ] Email me before this registration expires. we all onlist have email addresses but (being a _mandatory_ field) can this be

[cfaussie] Re: Speaking of new CF sites

2007-05-02 Thread Peter Tilbrook
Woo hoo! Barely a day goes by without annoying calls. -- Peter Tilbrook ColdGen Internet Solutions President, ACT and Region ColdFusion Users Group PO Box 2247 Queanbeyan, NSW, 2620 AUSTRALIA http://www.coldgen.com/ http://www.actcfug.com/ Tel: +61-2-6284-2727 Mob: +61-0432-897-437 Email:

[cfaussie] Re: Speaking of new CF sites

2007-05-02 Thread Stephen M
Then go read the fine print that says Phone registrations are coming soon In fact that's where the bulk of the work will be done. I can't say too much more, don't want to spoil Helen's surprise, but there are some very good people working with some very expensive telephony equipment who will

[cfaussie] Re: [offlist] Re: Speaking of new CF sites

2007-05-02 Thread Zac Spitzer
FYI: gmail flagged the activation email as spam for me On 5/2/07, Barry Beattie [EMAIL PROTECTED] wrote: See...that's what stress does to you, I've even forgotten how to spell my own name, then enjoy the chance to catch your breath knowing you've done a good job that tons of people

[cfaussie] Dynamically Read SQL Table Column Names

2007-05-02 Thread claude raiola
Just wondering if its possible to dynamically read column names of an existing sq table. What I am trying to create is a facility where the user can select the table name which will then list the columns of the given table. The user can the select the column names of choice which will in turn

[cfaussie] Re: Dynamically Read SQL Table Column Names

2007-05-02 Thread Stephen M
That would be query_name.columnList which gives you a comma- delimited list of the query columns. Stephen On May 3, 6:57 am, claude raiola [EMAIL PROTECTED] wrote: Just wondering if its possible to dynamically read column names of an existing sq table. What I am trying to create is a

[cfaussie] Re: Dynamically Read SQL Table Column Names

2007-05-02 Thread David Harris
You could try: cfquery name=qInfo datasource... etc SELECT * FROM [table name] WHER 1 = 2 /cfquery plist of Columns/p cfoutput#qInfo.columnList#/cfoutput pInformation about columns/a cfdump var=#getMetaData(qInfo)# Stephen M wrote: That would be query_name.columnList which gives you a

[cfaussie] Subversion - import / checkout

2007-05-02 Thread AJ Mercer
Back with another subversion question :- I have a website that I want to put into source control - subversion So to put it in I use the svn import To started versioning the code, I have to check it out to a working directory - but what if the directory I imported it from IS the working

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread Mark Stanton
Import, then checkout into an empty directory. If the directory you want to check out to is already full of stuff, rename it and make a new directory or backup your existing files to somewhere else. SVN won't check out over the top of existing files. Reading the first few pages of

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread Andrew Scott
There is an option to share, so if the website is not in SVN, and you are using Eclipse SVN plugin goto team and share project. This will put the whole project into SVN for you. Andrew Scott Senior Coldfusion Developer Aegeon Pty. Ltd. http://www.aegeon.com.au www.aegeon.com.au Phone: +613

[cfaussie] Re: oracle plugin for eclipse

2007-05-02 Thread Pat Branley
The web tools project for eclipse comes with a very basic JDBC based database browser. I use this + a combo of the RDS plugin. you cant call DDL (alter table etc) statements from the RDS query builder. And it only works on windows i understand.

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread AJ Mercer
This sounds like what I am after - thanks Andrew. Trying it out now ... On 5/3/07, Andrew Scott [EMAIL PROTECTED] wrote: There is an option to share, so if the website is not in SVN, and you are using Eclipse SVN plugin goto team and share project. This will put the whole project into SVN

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread Andrew Scott
Your welcome AJ. Andrew Scott Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613 8676 4223 Mobile: 0404 998 273 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups cfaussie group. To post to

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread AJ Mercer
This does indeed seem like what I am after but... It wants to create a folder - I want it to go straight into the trunk. I have set up my repository like http://svn.myServer.net:81/myProject/trunk/ It looks like this process will end up creating this

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread AJ Mercer
Actually, cancel that I clicked on browse which brought up a dialog with my repository - I clicked trunk It came back with trunk\new folder I deleted new folder I have now got to the next step - commit comment... On 5/3/07, AJ Mercer [EMAIL PROTECTED] wrote: This does indeed seem like what I

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread Andrew Scott
Each project should have its own trunk, branches and tags folder. So when you create a project in SVN keep this in mind. Andrew Scott Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613 8676 4223 Mobile: 0404 998 273 From: cfaussie@googlegroups.com

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread AJ Mercer
OK - doing that now I thought there was something special about trunk/branch/tag folders that had to be created by snv - I was using Tortoise to create them Looks like it is loading now :-) Thank you. On 5/3/07, Andrew Scott [EMAIL PROTECTED] wrote: Each project should have its own trunk,

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread Andrew Scott
There is something special, but you can do that from within eclipse. For example, you made your version go into production. You can then Tag the version by team-Branch/Tag. Then use switch at any time to make changes, but remember that this makes changes to that branch. Tags are used for

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread AJ Mercer
I meant special in that they are subversion folders and are different form the folders I added from my project. But this does not seem to be the case. I am reading Ned Batchelder's quick start blog on branching right now :-) I also have the subversion manual sitting right beside me too - it's