[cfaussie] Re: Installing CF7

2005-09-14 Thread Steve Onnis



dont 
know if this got missed but..



I havent tried it but you could try it for me:P
get the serial number out of the administrator, just so you have a copy,
then update the serial number to be "Developer". This is what seems to be
in there if you install developer version. From here you should have 
access
to everything, including the archiving and deployment area.
Archive your settings, and then uninstall.
Install your new version, but as developer edition aswell. deploy your
archive with all your previous settings like datasources and stuff, and 
then
enter your new key
Saves you setting everything up again from scratch
Steve

  -Original Message-From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]On Behalf Of Shane 
  FarmerSent: Wednesday, September 14, 2005 4:27 PMTo: 
  CFAussie Mailing ListSubject: [cfaussie] Re: Installing 
  CF7Is the upgrade method possible/safe though?We 
  have quite a lot of DSN's, mappings, CFX's and other settings that would be 
  painful to add manually and also we don't want to change. Also being a 
  production server would not want it to go down for long.The other 
  settings that would be tweaked could be changed manually later regardless of 
  being the old CF 6.1 settings or not.Shane--- You are currently 
  subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a 
  blank email to [EMAIL PROTECTED] Aussie Macromedia 
  Developers: http://lists.daemon.com.au/
---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]

Aussie Macromedia Developers: http://lists.daemon.com.au/





[cfaussie] if...else in stored proceedures

2005-09-13 Thread Steve Onnis
Hey guys

I am having to convert some large queries into stored proceedures but i
cant seem to work out how to do IF...ELSE inside the query in SQL.  Im
using MSSQL 2000

According to the docs you cant put the IF...ELSE inside the query, rather
the whole query goes inside the IF...ELSE conditions.

Is this right? or am i missing something

Steve

---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] testing testing

2005-09-13 Thread Steve Onnis
this thing still on?


---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: Font in PDF generated using cfdocument tag

2005-09-13 Thread Steve Onnis
if the font isnt on  the server its not going to work.  The server needs
toi have access to the font so it can render it into the pdf

Steve

---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: if...else in stored proceedures

2005-09-13 Thread Steve Onnis
thats not what i want

select *
from table
if (@bla = 1)
 where x = y
else
 where x = z

thats what i want
its pretty basic example but i need it for a query thats got lots of stuff
in it

---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: Installing CF7

2005-09-13 Thread Steve Onnis
I havent tried it but you could try it for me:P

get the serial number out of the administrator, just so you have a copy,
then update the serial number to be Developer.  This is what seems to be
in there if you install developer version.  From here you should have access
to everything, including the archiving and deployment area.

Archive your settings, and then uninstall.

Install your new version, but as developer edition aswell.  deploy your
archive with all your previous settings like datasources and stuff, and then
enter your new key

Saves you setting everything up again from scratch

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Jon Austin
Sent: Wednesday, September 14, 2005 3:25 PM
To: CFAussie Mailing List
Subject: [cfaussie] Re: Installing CF7


On 9/14/05, Melissa [EMAIL PROTECTED] wrote:
 Hi,

 does anyone know how to install CF7 directly over the top of CF6.1 or do
 you have to uninstall 6.1, then install 7?

I would DEFINITELY uninstall 6.1 first. Things are much cleaner this way..

 Also, is it possible to save the administrator settings from 6.1 (eg.
 dsn's, mail settings, etc), so they can be installed straight into 7, or
 do they have to be setup again manually once 7 is installed?

Again, I would reconfigure everything to keep things clean. Is this
going to become a production server? You can spend quite a bit of time
tuning it.

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: OT: Mulitple Submits

2005-09-05 Thread Steve Onnis
this only take into consideration that they are clicking the submit button.
what if they are just pressing the enter key in a text field?

you could go on and disable everything in the form, but you would have to do
it after the form submits cause disabled form fields dont get submitted with
the form

maybe something like this?

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

html
head
titleUntitled/title
script
function hideForm() {
var formObj = arguments[0];
var formHeight = formObj.offsetHeight;
var formWidth = formObj.offsetWidth;
var newDiv = document.createElement(DIV);
newDiv.innerHTML = form is submitting;
newDiv.style.height = formHeight;
newDiv.style.width = formWidth;
newDiv.style.position = absolute;
newDiv.style.top = formHeight / 2;
formObj.style.visibility = hidden;
formObj.parentNode.appendChild(newDiv);
return false;
}
/script
style
form {
margin :0px;
}
/style
/head

body
table width=100%
tr
td
form action= method=post onsubmit=return 
hideForm(this);
table
trtdname/tdtdinput/td/tr
trtdname/tdtdinput/td/tr
trtdname/tdtdinput/td/tr
trtdname/tdtdinput/td/tr
trtdnbsp;/tdtdinput 
type=Submit/td/tr
/table
/form
/td
/tr
/table
/body
/html

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of KNOTT,
Brian
Sent: Monday, September 05, 2005 3:06 PM
To: CFAussie Mailing List
Subject: [cfaussie] Re: OT: Mulitple Submits


Might also be an idea to add a javascript line to make the button inactive
once you have set the value to please wait.

Brian

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Monday, 5 September 2005 2:57 PM
To: CFAussie Mailing List
Subject: [cfaussie] Re: OT: Mulitple Submits

something like this Scott?

script language=javascript
function processForm(){
if (document.forms[0].formSubmit.value==Submit){
 document.forms[0].formSubmit.value=Please wait;
 document.forms[0].submit();
}
}
/script

input type=button name=formSubmit value=Submit
onclick=processForm();

*not tested* ... actually written while in a web based mail client

 Hi,

 I am looking for some code to take a humble submit button, and make it
 multiple-submit proof. I have seen it around before, but can't recall the
 solution.

 Eg, After clicking, the button text changes to Please wait, and becomes
 disabled, and the form submits still.

 Cheers,

 Scott Thornton, Programmer
 Application Development
 Information Services and Telecommunications
 Hunter-New England Area Health Service
 Phone  RNH +61 2 49236066
 Fax   +61 2 49236076

 [EMAIL PROTECTED]


 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
 [EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/




---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


---
This e-mail is sent by Suncorp-Metway Limited ABN 66 010 831 722 or one of
its related entities Suncorp.

Suncorp may be contacted at Level 18, 36 Wickham Terrace, Brisbane or on 13
11 55  or at suncorp.com.au.

The content of this e-mail is the view of the sender or stated author and
does not necessarily reflect the view of Suncorp. The content, including
attachments, is a confidential communication between Suncorp and the
intended recipient. If you are not the intended recipient, any use,
interference with, disclosure or copying of this e-mail, including
attachments, is unauthorised and expressly prohibited. If you have received
this e-mail in error please contact the sender immediately and delete the
e-mail and any attachments from your system.

If this e-mail constitutes a commercial message of a type that you no longer
wish to receive please reply to this e-mail by typing Unsubscribe in the
subject line.



---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL 

[cfaussie] RE: pushing xml files to a server

2005-09-05 Thread Steve Onnis
Set up a scheduled task in windows and write a .bat file to FTP them up to
your server?

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Chad Renando
Sent: Monday, September 05, 2005 8:42 PM
To: CFAussie Mailing List
Subject: [cfaussie] pushing xml files to a server

I am working on a middle-ware solution, have mentioned it a bit in the
past.  

I have a legacy DOS-based application residing on a local network that
I am getting to spit out regular XML files when changes are made.

I want to push these XML files to an external coldfusion server in a
secure manner, likely using SSL.  Once they are up on the server, I
will likely set up a scheduled task to check to see if the file has
been updated and run through it to update the external SQL DB.

Any ideas on how I would get the files from here to there in an
automated manner?

Cheers,

Chad
who frequently goes from here to there in an automated manner

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: CFFTP error

2005-09-04 Thread Steve Onnis
Maybe it dont like monkies as muck as you jeremy:P

Its says Connection Reset.  that would be a pretty good indication

maybe if your FTP server has realtime logging you can see whats going on
with it there.

Does it do it with any other commands?  Maybe the FTP server doesnt let you
LIST directories

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Jeremy
Sent: Monday, September 05, 2005 10:46 AM
To: CFAussie Mailing List
Subject: [cfaussie] CFFTP error


Hi Guys,

Getting the following error using the below code. We have a proxy but
putting that in makes no difference. Am I missing something?

An exception occurred when performing the FTP ListDir operation.
The cause of this exception was that: Connection reset.

cfftp
action=open
connection=MyCareer
server=ftp.myserver.com
username=jeremy
password=likesmonkies
stoponerror=yes
transfermode=auto

 pDid it succeed? cfoutput #cfftp.succeeded#
#cfftp.errorTEXT#/cfoutput
 cfftp
action=ListDir
Directory=/incoming
Name=ListDirectory
Connection=MyCareer



Any help would be good.
Thanks

Jeremy

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: CFFTP error

2005-09-04 Thread Steve Onnis
same thing is you try it using command line ?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Jeremy
Sent: Monday, September 05, 2005 11:13 AM
To: CFAussie Mailing List
Subject: [cfaussie] RE: CFFTP error


Damn those monkies!

It does it for every connection commands. I.e. putFile.

I then tried another server i.e. not the monkey one and it did the same
thing. But if I try to connect to one internally it works perfectly. Me
thinks it has something to do with our network but I'm not sure. As when I
put in the proxy I get the same error.

J.


 Maybe it dont like monkies as muck as you jeremy:P

 Its says Connection Reset.  that would be a pretty good indication

 maybe if your FTP server has realtime logging you can see whats going on
 with it there.

 Does it do it with any other commands?  Maybe the FTP server doesnt let
you
 LIST directories

 Steve

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Jeremy
 Sent: Monday, September 05, 2005 10:46 AM
 To: CFAussie Mailing List
 Subject: [cfaussie] CFFTP error


 Hi Guys,

 Getting the following error using the below code. We have a proxy but
 putting that in makes no difference. Am I missing something?

 An exception occurred when performing the FTP ListDir operation.
 The cause of this exception was that: Connection reset.

 cfftp
   action=open
   connection=MyCareer
   server=ftp.myserver.com
   username=jeremy
   password=likesmonkies
   stoponerror=yes
   transfermode=auto
   
  pDid it succeed? cfoutput #cfftp.succeeded#
 #cfftp.errorTEXT#/cfoutput
  cfftp
   action=ListDir
   Directory=/incoming
   Name=ListDirectory
   Connection=MyCareer
 


 Any help would be good.
 Thanks

 Jeremy

 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
 [EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: CFFTP error

2005-09-04 Thread Steve Onnis
comand line as in a dos prompt?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Jeremy
Sent: Monday, September 05, 2005 11:44 AM
To: CFAussie Mailing List
Subject: [cfaussie] RE: CFFTP error


Using the command line works fine, it opens a browser and you have to put
in the username and password and logs in. Not sure now

j.

 same thing is you try it using command line ?

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Jeremy
 Sent: Monday, September 05, 2005 11:13 AM
 To: CFAussie Mailing List
 Subject: [cfaussie] RE: CFFTP error


 Damn those monkies!

 It does it for every connection commands. I.e. putFile.

 I then tried another server i.e. not the monkey one and it did the same
 thing. But if I try to connect to one internally it works perfectly. Me
 thinks it has something to do with our network but I'm not sure. As when I
 put in the proxy I get the same error.

 J.


  Maybe it dont like monkies as muck as you jeremy:P
 
  Its says Connection Reset.  that would be a pretty good indication
 
  maybe if your FTP server has realtime logging you can see whats going on
  with it there.
 
  Does it do it with any other commands?  Maybe the FTP server doesnt let
 you
  LIST directories
 
  Steve
 
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] Behalf Of Jeremy
  Sent: Monday, September 05, 2005 10:46 AM
  To: CFAussie Mailing List
  Subject: [cfaussie] CFFTP error
 
 
  Hi Guys,
 
  Getting the following error using the below code. We have a proxy but
  putting that in makes no difference. Am I missing something?
 
  An exception occurred when performing the FTP ListDir operation.
  The cause of this exception was that: Connection reset.
 
  cfftp
  action=open
  connection=MyCareer
  server=ftp.myserver.com
  username=jeremy
  password=likesmonkies
  stoponerror=yes
  transfermode=auto
  
   pDid it succeed? cfoutput #cfftp.succeeded#
  #cfftp.errorTEXT#/cfoutput
   cfftp
  action=ListDir
  Directory=/incoming
  Name=ListDirectory
  Connection=MyCareer
  
 
 
  Any help would be good.
  Thanks
 
  Jeremy
 
  ---
  You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
  To unsubscribe send a blank email to
  [EMAIL PROTECTED]
  Aussie Macromedia Developers: http://lists.daemon.com.au/

 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
 [EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: CFFTP error

2005-09-04 Thread Steve Onnis
well you said it opens in a browser. the last time i opened a dos prompt
it wasnt in a browser

i have to question anyone who openly admits their passion for monkies:P

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Jeremy
Sent: Monday, September 05, 2005 11:54 AM
To: CFAussie Mailing List
Subject: [cfaussie] RE: CFFTP error


Steve, how old do you think I amwhat is dos prompt...hahaha jokes. I
tried it there was no issue. I believe its something to do with CF but not
able to pinpoint it.

j.
 comand line as in a dos prompt?

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Jeremy
 Sent: Monday, September 05, 2005 11:44 AM
 To: CFAussie Mailing List
 Subject: [cfaussie] RE: CFFTP error


 Using the command line works fine, it opens a browser and you have to put
 in the username and password and logs in. Not sure now

 j.

  same thing is you try it using command line ?
 
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] Behalf Of Jeremy
  Sent: Monday, September 05, 2005 11:13 AM
  To: CFAussie Mailing List
  Subject: [cfaussie] RE: CFFTP error
 
 
  Damn those monkies!
 
  It does it for every connection commands. I.e. putFile.
 
  I then tried another server i.e. not the monkey one and it did the same
  thing. But if I try to connect to one internally it works perfectly. Me
  thinks it has something to do with our network but I'm not sure. As when
I
  put in the proxy I get the same error.
 
  J.
 
 
   Maybe it dont like monkies as muck as you jeremy:P
  
   Its says Connection Reset.  that would be a pretty good indication
  
   maybe if your FTP server has realtime logging you can see whats going
on
   with it there.
  
   Does it do it with any other commands?  Maybe the FTP server doesnt
let
  you
   LIST directories
  
   Steve
  
   -Original Message-
   From: [EMAIL PROTECTED]
   [mailto:[EMAIL PROTECTED] Behalf Of Jeremy
   Sent: Monday, September 05, 2005 10:46 AM
   To: CFAussie Mailing List
   Subject: [cfaussie] CFFTP error
  
  
   Hi Guys,
  
   Getting the following error using the below code. We have a proxy but
   putting that in makes no difference. Am I missing something?
  
   An exception occurred when performing the FTP ListDir operation.
   The cause of this exception was that: Connection reset.
  
   cfftp
 action=open
 connection=MyCareer
 server=ftp.myserver.com
 username=jeremy
 password=likesmonkies
 stoponerror=yes
 transfermode=auto
 
pDid it succeed? cfoutput #cfftp.succeeded#
   #cfftp.errorTEXT#/cfoutput
cfftp
 action=ListDir
 Directory=/incoming
 Name=ListDirectory
 Connection=MyCareer
   
  
  
   Any help would be good.
   Thanks
  
   Jeremy
  
   ---
   You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
   To unsubscribe send a blank email to
   [EMAIL PROTECTED]
   Aussie Macromedia Developers: http://lists.daemon.com.au/
 
  ---
  You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
  To unsubscribe send a blank email to
  [EMAIL PROTECTED]
  Aussie Macromedia Developers: http://lists.daemon.com.au/

 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
 [EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: security and disabling ActiveX in IE (sort of OT...)

2005-09-04 Thread Steve Onnis
dont have an XP box on me but i am pretty sure there is a Trusted Zones
section in the security bit of the internet settings.  You should be able to
add the local host domain into the trusted ones

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Barry
Beattie
Sent: Monday, September 05, 2005 2:00 PM
To: CFAussie Mailing List
Subject: [cfaussie] security and disabling ActiveX in IE (sort of OT...)



Hi all

I won't go into boring detail and there's no need at the moment for
work-arounds (or a chorus of don't do that!) but...

lots of (should be all?) windows webservers have Active X blocked within IE
on the webserver (the workstation part of the server OS).

Is it possible to only have ActiveX enabled for selected sites (ie
//localhost)?

if not I might have to look at enabling Active X for IE but only allow the
browser access to localhost, yes?

what's my issue with Active X controls? Flash, XMLHttpRequest object, etc.
Why on the server? diagnostics/support.


thanx
barry.b

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: OT: Job?

2005-08-31 Thread Steve Onnis



How is 
that any different than now Scott? I guess it would mean wearing it during 
the day aswell..

  -Original Message-From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]On Behalf Of Scott 
  BarnesSent: Wednesday, August 31, 2005 5:18 PMTo: 
  CFAussie Mailing ListSubject: [cfaussie] Re: OT: 
  Job?
  Oi!..
  
  Darryl: I'll only be your PA, if you allow me to wear a mini-skirt :) 
  heheheh
  
  M@: You're weird.
  
  Mike  Andrew, quit hijacking my thread :) hehehe..
  
  On 8/31/05, M@ 
  Bourke [EMAIL PROTECTED] 
  wrote: 
  "If 
you have trouble getting interviews for full time jobs then up your rate, I 
find the more I ask the more likely I am to get an interview." That 
doesn't mean you'll be more likely to get the job though just more likely to 
get an interview 
M@--- You are 
currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email 
to [EMAIL PROTECTED] Aussie Macromedia 
Developers: http://lists.daemon.com.au/ 
  -- Regards,Scott 
  Barneshttp://www.mossyblog.com --- 
  You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To 
  unsubscribe send a blank email to [EMAIL PROTECTED] 
  Aussie Macromedia Developers: 
http://lists.daemon.com.au/
---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]

Aussie Macromedia Developers: http://lists.daemon.com.au/





[cfaussie] RE: Passing variables between cffunction and javascript

2005-08-29 Thread Steve Onnis
You do understand that the browser needs to be reloaded for this dont you?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Chad
Renando
Sent: Monday, August 29, 2005 4:43 PM
To: CFAussie Mailing List
Subject: [cfaussie] Passing variables between cffunction and javascript


Asked this Q before re: an issue I have with CFAjax.  Figured I wasn't
clear enough (as the alternative is that I was being ignored...and it
couldn't be that)  ;)

In a nutshell... here's what's going on...

1. The JavaScript function getCounty() gets the state value passed from
the
drop-down and passes it to the cffunction countylookup.

2. The cffunction countylookup grabs the appropriate counties for
the state and passes them back to the JavaScript function
getCountyResult(countyArray) using cfreturn county.

3. The JavaScript function getCountyResult(countyArray) populates the
county
drop-down list with the array passed from step 2 above.

QUESTION
How would I pass a variable from step 1 to step 3?  If I pass it into
step 2, can I pass another variable out of step 2 in addition to doing
cfreturn county?

Sorry, still coming up to speed on passing stuff between cffunctions
and javascript.

Cheers,

Chad

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Passing variables between cffunction and javascript

2005-08-29 Thread Steve Onnis
From the CFFUNCTION call, i would return out a structure with 2 items.  The
first being the original argumants collection and the second being your
country value.  this way you have both the data that you need and the
original data you passed in.

then when your doing you javascript stuff, use the stucture items to get the
data you need to perform your tasks.

Ofcourse this all depends on how your managing the state between each step
as you said your doing it without page loads.

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Chad
Renando
Sent: Tuesday, August 30, 2005 7:15 AM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Passing variables between cffunction and
javascript


Thanks Antony.  What a coincidence... I don't know much about this
either. ;)  Yeah, I was actually considering that if no one had
anything else.  So I may be posting another OT post regarding array
manipulation in Javascript.

Chad
who is sick as a dog and lost his funny sigs somewhere in his pile of
tissues

On 8/29/05, Antony Sideropoulos [EMAIL PROTECTED] wrote:
 Hey Chad

 I don't know much about this, but you could cheat by putting your 'extra'
 variable into the array - say at the 'top' and then use this in step 3,
and
 load your array data from the second position.

 Antony
 Who wonders where Chad's 'funny' sigs have gone


 On 8/29/05, Chad Renando [EMAIL PROTECTED] wrote:
 
  Mmmm... no... don't think so.  Steps 1, 2 and 3 are happening with no
  reload at the moment.  All I want to do is tack on an extra variable.
  I can tack on an extra variable when passing from step 1 to step 2,
  but I don't know how to pass an extra one out of the cffunction.
 
  Chad
 
  On 8/29/05, Steve Onnis  [EMAIL PROTECTED] wrote:
   You do understand that the browser needs to be reloaded for this dont
 you?
  
   -Original Message-
   From: [EMAIL PROTECTED]
   [mailto:[EMAIL PROTECTED]
 Behalf Of Chad
   Renando
   Sent: Monday, August 29, 2005 4:43 PM
   To: CFAussie Mailing List
   Subject: [cfaussie] Passing variables between cffunction and
javascript
  
  
   Asked this Q before re: an issue I have with CFAjax.  Figured I wasn't
   clear enough (as the alternative is that I was being ignored...and it
   couldn't be that)  ;)
  
   In a nutshell... here's what's going on...
  
   1. The JavaScript function getCounty() gets the state value passed
 from
   the
   drop-down and passes it to the cffunction countylookup.
  
   2. The cffunction countylookup grabs the appropriate counties for
   the state and passes them back to the JavaScript function
   getCountyResult(countyArray) using cfreturn county.
  
   3. The JavaScript function getCountyResult(countyArray) populates
the
   county
   drop-down list with the array passed from step 2 above.
  
   QUESTION
   How would I pass a variable from step 1 to step 3?  If I pass it into
   step 2, can I pass another variable out of step 2 in addition to doing
   cfreturn county?
  
   Sorry, still coming up to speed on passing stuff between cffunctions
   and javascript.
  
   Cheers,
  
   Chad
  
   ---
   You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
   To unsubscribe send a blank email to
   [EMAIL PROTECTED]
   Aussie Macromedia Developers: http://lists.daemon.com.au/
  
  
  
   ---
   You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
   To unsubscribe send a blank email to
 [EMAIL PROTECTED]
   Aussie Macromedia Developers: http://lists.daemon.com.au/
  
 
  ---
  You are currently subscribed to cfaussie as:
[EMAIL PROTECTED]
  To unsubscribe send a blank email to
 [EMAIL PROTECTED]
  Aussie Macromedia Developers: http://lists.daemon.com.au/
 

  --- You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To
 unsubscribe send a blank email to
 [EMAIL PROTECTED] Aussie Macromedia
 Developers: http://lists.daemon.com.au/

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Passing variables between cffunction and javascript

2005-08-29 Thread Steve Onnis
so you should be able to access the structure as an object in javascript

just have to find out what the original javascript var is called and it
should then give you access to the object within it

from what i imagine one object will be a collection its self so you will
have an object in an object

foobar[obj1][obj1_1]

the second will be an array

foobar[obj2][0]

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Chad
Renando
Sent: Tuesday, August 30, 2005 9:28 AM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Passing variables between cffunction and
javascript


OK, tried putting the variable names in the array, as well as changing
the array into a structure.  But the cffunction is called from a
javascript function that is some core engine thing insode the cfajax.
If I return the array, I get [object Object], [object Object],
...etc..  It does something with this to turn it into the key and
text pairs for the select list.

Not sure where to go from here...

Chad
who is stuck

On 8/30/05, Steve Onnis [EMAIL PROTECTED] wrote:
 From the CFFUNCTION call, i would return out a structure with 2 items.
The
 first being the original argumants collection and the second being your
 country value.  this way you have both the data that you need and the
 original data you passed in.

 then when your doing you javascript stuff, use the stucture items to get
the
 data you need to perform your tasks.

 Ofcourse this all depends on how your managing the state between each step
 as you said your doing it without page loads.

 Steve

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Chad
 Renando
 Sent: Tuesday, August 30, 2005 7:15 AM
 To: CFAussie Mailing List
 Subject: [cfaussie] RE: Passing variables between cffunction and
 javascript


 Thanks Antony.  What a coincidence... I don't know much about this
 either. ;)  Yeah, I was actually considering that if no one had
 anything else.  So I may be posting another OT post regarding array
 manipulation in Javascript.

 Chad
 who is sick as a dog and lost his funny sigs somewhere in his pile of
 tissues

 On 8/29/05, Antony Sideropoulos [EMAIL PROTECTED] wrote:
  Hey Chad
 
  I don't know much about this, but you could cheat by putting your
'extra'
  variable into the array - say at the 'top' and then use this in step 3,
 and
  load your array data from the second position.
 
  Antony
  Who wonders where Chad's 'funny' sigs have gone
 
 
  On 8/29/05, Chad Renando [EMAIL PROTECTED] wrote:
  
   Mmmm... no... don't think so.  Steps 1, 2 and 3 are happening with no
   reload at the moment.  All I want to do is tack on an extra variable.
   I can tack on an extra variable when passing from step 1 to step 2,
   but I don't know how to pass an extra one out of the cffunction.
  
   Chad
  
   On 8/29/05, Steve Onnis  [EMAIL PROTECTED] wrote:
You do understand that the browser needs to be reloaded for this
dont
  you?
   
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
  Behalf Of Chad
Renando
Sent: Monday, August 29, 2005 4:43 PM
To: CFAussie Mailing List
Subject: [cfaussie] Passing variables between cffunction and
 javascript
   
   
Asked this Q before re: an issue I have with CFAjax.  Figured I
wasn't
clear enough (as the alternative is that I was being ignored...and
it
couldn't be that)  ;)
   
In a nutshell... here's what's going on...
   
1. The JavaScript function getCounty() gets the state value passed
  from
the
drop-down and passes it to the cffunction countylookup.
   
2. The cffunction countylookup grabs the appropriate counties for
the state and passes them back to the JavaScript function
getCountyResult(countyArray) using cfreturn county.
   
3. The JavaScript function getCountyResult(countyArray) populates
 the
county
drop-down list with the array passed from step 2 above.
   
QUESTION
How would I pass a variable from step 1 to step 3?  If I pass it
into
step 2, can I pass another variable out of step 2 in addition to
doing
cfreturn county?
   
Sorry, still coming up to speed on passing stuff between cffunctions
and javascript.
   
Cheers,
   
Chad
   
---
You are currently subscribed to cfaussie as:
[EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/
   
   
   
---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
  [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/
   
  
   ---
   You are currently subscribed to cfaussie as:
 [EMAIL PROTECTED]
   To unsubscribe send a blank email to
  [EMAIL PROTECTED]
   Aussie Macromedia Developers: http://lists.daemon.com.au/
  
 
   --- You are currently subscribed to cfaussie as: [EMAIL PROTECTED

[cfaussie] RE: pollster clone

2005-08-25 Thread Steve Onnis
Tried searching for DRK4 Poll ?

Lots of results there

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Kay
Smoljak
Sent: Thursday, August 25, 2005 5:41 PM
To: CFAussie Mailing List
Subject: [cfaussie] pollster clone


Hey peoples,

I need a polling widget. Basically Pollster is exactly what the client
wants, except you can't buy DRK4 anymore and the individual bits
aren't on the MM exchange like they used to be. I''ve tried Googling
but searching for anything with the word poll brings up poll results
on the topic. Gr.

Does anyone know of anything similar? If it looks vaguely swish I'd
even be happy with a non-Flash version, just really need the CF bit.

Cheers!

--
Kay Smoljak
http://kay.smoljak.com/

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: CF and Payment Gateways?

2005-08-25 Thread Steve Onnis
10 trillian?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of M@ Bourke
Sent: Thursday, August 25, 2005 9:13 PM
To: CFAussie Mailing List
Subject: [cfaussie] Re: CF and Payment Gateways?

Oh no we dont
support minor technologies like coldfusion they told me.

If you use Commweb you have to use a com object 

LOL, ya think they would offer a java object, considering there is 10
trillion java developers in the world

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Verity creates summary without keywords?

2005-08-24 Thread Steve Onnis
The summary doesnt contain the whole document, only the first 300 chars i
think, or something like that.  So when you out put the summary it only
displays the first part which may not contain the word you were searching
for, but its in the document somewhere.

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Mark
Stanton
Sent: Wednesday, August 24, 2005 5:46 PM
To: CFAussie Mailing List
Subject: [cfaussie] Verity creates summary without keywords?


Hey Guys

Just wondering if anyone had a decent explination for why verity will
sometimes return a summary that does not contain the keywords the user
was searching on. For example if I search on foo I get a summary
that doesn't contain the word foo dispite the fact that the document
does contain this keyword.


--
Mark Stanton
Gruden Pty Ltd
http://www.gruden.com

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Verity creates summary without keywords?

2005-08-24 Thread Steve Onnis
Thats exactly it mark

This is a pain especially if the string ends in the middle of a tag

What i did with my collections is looped through my collumn stripping out
the tags and added a column to the query and used the new column for the
description.  This was you dfont have those problems

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Mark
Stanton
Sent: Thursday, August 25, 2005 11:56 AM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Verity creates summary without keywords?


Thanks Steve

first 300 chars - that never actually occured to me for some
reason... Makes a bit more sense now.

I think what threw me was that the examples that I am looking at right
now are HTML. Verity is NOT returning the first 300 chars, but rather
the first significant block of text. The HTML content begins with the
number of short lists - Verity skips these and returns the first full
sentence/paragraph which happens to be halfway down the page.

But you are right - verity always returns the first 300 characters of
sentence like text content it can find.

Thanks mate
--
Mark Stanton
Gruden Pty Ltd
http://www.gruden.com

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: CFPOP replacement

2005-08-23 Thread Steve Onnis
Don't know that there are many around.  I use CFX_POP

Its handy cause you can load emails from a file aswell as from a pop account

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Elliot Russo
Sent: Tuesday, August 23, 2005 2:14 PM
To: CFAussie Mailing List
Subject: [cfaussie] CFPOP replacement

Anyone recommend a CFPOP replacement (any comments on new media's cfx_pop3)

Thanks,

Elliot



---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] MM Studio 8

2005-08-22 Thread Steve Onnis
Who has been to the launches?

Who is as impressed as i am with whats install for the new version of
FLASH??

Steve



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Webservices are pissing me off!

2005-08-21 Thread Steve Onnis
i dont get that error

i get something about upload not found

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Jeremy
Sent: Monday, August 22, 2005 2:12 PM
To: CFAussie Mailing List
Subject: [cfaussie] Webservices are pissing me off!


Hey guys,

Okay look I thought I new everything i would ever need to know about web
services but oh MY god how wrong was I! I am trying to connect to the Seek
web service they provide with the below code. I get the following error.


 java.lang.IllegalArgumentException: argument type mismatch


Turns out there is an issue with the way ColdFusion connects to a .NET
webservice when passing structures and what not. ANYONE got ANY ideas
before i go postal!


 cfxml variable=FastLanePlus
?xml version=1.0 encoding=UTF-8?
FastLanePlus UploaderID=9345726 AgentID= Version=1.1
Client ID=9345726 MinJobs=0 MaxJobs=999
Job Reference=A12345 TemplateID=10259 ScreenID=
TitleGraduate Accountant/Title
SearchTitleGraduate Accountant for Jeremy/SearchTitle
DescriptionGraduate Accountant Description/Description
AdDetails![CDATA[Graduate Accountant Advertisement TextbrbThis line
is bold/b]]/AdDetails
ApplicationEmail[EMAIL PROTECTED]/ApplicationEmail
ApplicationURLhttp://xyzcompany.com.au/ApplicationURL
ResidentsOnlyYes/ResidentsOnly
Items
Item Name=Bullet1XYZ Company Bullet 1/Item
Item Name=Bullet2XYZ Company Bullet 2/Item
Item Name=Bullet3XYZ Company Bullet 3/Item
Item Name=ConsultantConnie Constantine/Item
Item Name=ConsultantTelephone03 1234 5678/Item
Item Name=ResumeRequiredYes/Item
/Items
Listing MarketSegments=Main Campus
Classification Name=LocationSydney/Classification
Classification Name=AreaSydneyInner/Classification
Classification Name=ClassificationAccounting/Classification
Classification Name=SubClassificationAccountant/Classification
Classification Name=SpecialisationAssistantGraduate/Classification
Classification Name=WorkTypeFullTime/Classification
/Listing
/Job
/Client
/FastLanePlus/cfxml

cfinvoke
webservice=http://test.webservices.seek.com.au/FastLanePlus.asmx?wsdl;
 method=UploadFile
 returnvariable=Uploaded
 
cfinvokeargument name=token value=#tokenID#/
cfinvokeargument name=xmlFastlaneFile 
value='#FastLanePlus#'/

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Webservices are pissing me off!

2005-08-21 Thread Steve Onnis
Yup

Web service operation UploadFile with parameters {} could not be found.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Jeremy
Sent: Monday, August 22, 2005 3:15 PM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Webservices are pissing me off!


You need a token ID steve if that is what you mean. which is

pQPyLRd0HH2x1FUq3WcQQxI7nLNwZk58XYhmz+75+pPv4AHzhcH9xbXZSDFY/SaOmKTM045bBCg1
34DEreK3jo8hKGEvM0JPw0UJfGKsURhCSaLsDJsPO/g6U2OVlyzZorT9Nhi+nt4yOyepaxNaoUfz
otgKY44lY9lP++GfGODnEEENZEg0HJyNAkueEA6zRoB0PQlpvewwpkkRqqQSs18yFMP+tlN9i80w
KOKBAtsNj1+yY5L9Sdfh7VfIJvZ6XDMusv11k6V7COYi54H+bW6g+n28hWZ6u9VB/BWmgVvvLx3V
+zs4nJmPN1xVyj6WQi+aXLcbeexKpPgRcctZwlmJqFmmesN7aM2u+S7TCHf6mYuUtoyY4i2huq1R
aRlW

j.

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Webservices are pissing me off!

2005-08-21 Thread Steve Onnis
Yep

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Jeremy
Sent: Monday, August 22, 2005 3:41 PM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Webservices are pissing me off!


what the? Thats the below service your callin right?

cfinvoke
 webservice=http://test.webservices.seek.com.au/FastLanePlus.asmx?wsdl;
 method=UploadFile

cfinvokeargument name=token value=#tokenID#/
cfinvokeargument name=xmlFastlaneFile value=#FastLanePlus#/
/cfinvoke

j.


 Yup

 Web service operation UploadFile with parameters {} could not be found.

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Jeremy
 Sent: Monday, August 22, 2005 3:15 PM
 To: CFAussie Mailing List
 Subject: [cfaussie] RE: Webservices are pissing me off!


 You need a token ID steve if that is what you mean. which is


pQPyLRd0HH2x1FUq3WcQQxI7nLNwZk58XYhmz+75+pPv4AHzhcH9xbXZSDFY/SaOmKTM045bBCg1

34DEreK3jo8hKGEvM0JPw0UJfGKsURhCSaLsDJsPO/g6U2OVlyzZorT9Nhi+nt4yOyepaxNaoUfz

otgKY44lY9lP++GfGODnEEENZEg0HJyNAkueEA6zRoB0PQlpvewwpkkRqqQSs18yFMP+tlN9i80w

KOKBAtsNj1+yY5L9Sdfh7VfIJvZ6XDMusv11k6V7COYi54H+bW6g+n28hWZ6u9VB/BWmgVvvLx3V

+zs4nJmPN1xVyj6WQi+aXLcbeexKpPgRcctZwlmJqFmmesN7aM2u+S7TCHf6mYuUtoyY4i2huq1R
 aRlW

 j.

 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
 [EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Array Sort Question

2005-08-17 Thread Steve Onnis
Put it into a query

I still dont know why people still persist in making these complex
structures and try to sort them

Make each array a row in a query.  Then your struct keys are column names
with values in each cell.  Then all you need to do is use query of query to
sort, filter or extract information from it.

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Kevin
Smith
Sent: Wednesday, August 17, 2005 3:33 PM
To: CFAussie Mailing List
Subject: [cfaussie] Array Sort Question


Hi All,

Am having a mental block today maybe you guys can point me in the right
direction. I have an array of structs and I want to sort the array
according to a key (sortOrder). Does it make sense?

Array[1]:
   Struct:
  Name: 
  sortOrder: 4

Array[2]:
   Struct:
  Name: 
  sortOrder: 3

Thanks in advance.


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: CFQuery Style

2005-08-16 Thread Steve Onnis
I prefer option 2

makes it more readable and easier to follow the code through.  I also prefer to 
indent the SQL inside the cfquery tag aswell like

cfquery .
SELECT *
FROM table t
WHERE 0=0
cfif isDefined(form.keyword) 
AND title like '%#title#%'
/cfif

cfif listLen(form.categoryIds) 
AND category_id IN (#form.categoryIDs#)
/cfif
/cfquery

Just following code indenting consistantly

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Pat
Branley
Sent: Wednesday, August 17, 2005 9:33 AM
To: CFAussie Mailing List
Subject: [cfaussie] CFQuery Style


Hi All

Just wondering what everyones opinion is about formatting SQL code 
withing CFQuery ? Do you think its important to preserve the indentation 
of the SQL or is it more important to see the flow of the CF code inside 
the tag ?

Im way more in favour of preserving cold fusion indentation. I just 
think its more important to follow the logic of the code, especially 
when the query gets complex and there are more CFIF calls in there.

Pat


eg. SQL indentation is Preseved

cfquery .
SELECT *
FROM table t
WHERE 0=0 cfif isDefined(form.keyword) 
AND title like '%#title#%'/cfifcfif listLen(form.categoryIds) 
AND category_id IN (#form.categoryIDs#)/cfif
/cfquery

OR 2 cold fusion indentation is preserved

cfquery .
SELECT *
FROM table t
WHERE 0=0
cfif isDefined(form.keyword) 
AND title like '%#title#%'
/cfif

cfif listLen(form.categoryIds) 
AND category_id IN (#form.categoryIDs#)
/cfif
/cfquery

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: SQL include default values

2005-08-16 Thread Steve Onnis
make sure you select the extended properties when your doing the export

i find the best way anyway is to do a backup and retore it on the new
server, or just get the files themselfs and attach them to the new database
server

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Carl
Vanderpal
Sent: Wednesday, August 17, 2005 12:41 PM
To: CFAussie Mailing List
Subject: [cfaussie] SQL include default values


Hello CFAussie,

just wondering how you include the default values when 'Generating SQL
Script', as one of our online db's has some default values set and I want to
import the tables into my dev machine and they dont seem to be there? is
there something I have to check whilst creating the script?

Thanks

ps. MS SQL 2K


Best Regards,
Carl Vanderpal


Postal: Po Box 3462 Dural, NSW 2158
Email: mailto:[EMAIL PROTECTED]
FireFly Internet Phone: 80011777


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] strange behaviour

2005-08-09 Thread Steve Onnis

Has anyone seen anything like this before?

am doing some work on a CF7 server and this is whats happening

I submit a form with a textarea in it with the following data

object
  embed/embed
/object

Then i dump the form out and i get this

InvalidTag InvalidTag/embed /object

I have tested a couple of other servers and it doesnt happen on them

anyone shed some light as to what would be causing it?

Steve


---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: strange behaviour

2005-08-09 Thread Steve Onnis
its ok

found it

the guy running the server has set the Enable Global Script Protection
setting to yes in the administrator

if anyone else is having the issue put scriptProtect=none in your
cfapplication tag

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Steve
Onnis
Sent: Tuesday, August 09, 2005 5:19 PM
To: CFAussie Mailing List
Subject: [cfaussie] strange behaviour



Has anyone seen anything like this before?

am doing some work on a CF7 server and this is whats happening

I submit a form with a textarea in it with the following data

object
  embed/embed
/object

Then i dump the form out and i get this

InvalidTag InvalidTag/embed /object

I have tested a couple of other servers and it doesnt happen on them

anyone shed some light as to what would be causing it?

Steve


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: CF7 report builder

2005-08-09 Thread Steve Onnis
I think its a sample app that comes with the server install

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Kay
Smoljak
Sent: Wednesday, August 10, 2005 11:25 AM
To: CFAussie Mailing List
Subject: [cfaussie] CF7 report builder


Hi guys,

I swear on my life at some point in the last couple of months I
downloaded a sample app from an online article which was a web-based
CF7 report builder. That is, an online app for tweaking the query that
gets passed to cfreport and then fed into the CFR template. Except now
that I need it, I can't find it. Google is most definitely not my
friend this time.

Does that ring a bell with anyone?

--
Kay Smoljak
http://kay.smoljak.com/

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: (Late) Friday Distraction

2005-08-08 Thread Steve Onnis
man you guys suck

40 seconds

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Carl
Vanderpal
Sent: Monday, August 08, 2005 4:19 PM
To: CFAussie Mailing List
Subject: [cfaussie] Re: (Late) Friday Distraction


then 00:50.26 second go..

On 8/8/05, Carl Vanderpal [EMAIL PROTECTED] wrote:
 1.05.46 first run

 On 8/5/05, Brett Payne-Rhodes [EMAIL PROTECTED] wrote:
 
  http://www.fromstarttofinish.co.uk/
 
  My time: 01:36.05 (first up)
 
  Brett
  B)
 
  --
  Brett Payne-Rhodes
  Eaglehawk Computing
  t: +61 (0)8 9371-0471
  f: +61 (0)8 9371-0470
  m: +61 (0)414 371 047
  e: [EMAIL PROTECTED]
  w: www.ehc.net.au
 
  ---
  You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
  To unsubscribe send a blank email to
[EMAIL PROTECTED]
  Aussie Macromedia Developers: http://lists.daemon.com.au/
 


 --
 
 Postal: Po Box 3462 Dural, NSW 2158
 Email: mailto:[EMAIL PROTECTED]
 FireFly Internet Phone: 80011777



--

Postal: Po Box 3462 Dural, NSW 2158
Email: mailto:[EMAIL PROTECTED]
FireFly Internet Phone: 80011777

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Stuido 8 released

2005-08-08 Thread Steve Onnis
Just got an email about Macromedia Studio 8 being released and noticed no
Freehand.  Is it no longer?

Steve


---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Screen sizes

2005-08-08 Thread Steve Onnis
800x600 elastic

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of
[EMAIL PROTECTED]
Sent: Tuesday, August 09, 2005 1:57 PM
To: CFAussie Mailing List
Subject: [cfaussie] Screen sizes



Hi Guys

Just a quick question about what size screens people are designing for these
days.  Anyone still specifically design for 800 x 600 or have we moved on to
1024  768 (or whatever) as the standard minimum?

Rob


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Screen sizes

2005-08-08 Thread Steve Onnis
its actually about 750 for MAC IE browser cause of the dumb tab thing on the
left  hand side

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Gavin
Cooney
Sent: Tuesday, August 09, 2005 3:00 PM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Screen sizes


i make mine fit 800x600. I was doing full width pages for a long time,
but now my preference is 800 wide fixed width (actually 800 - scroll
bars = 765px). Because any wider is hard to read i think.

Gav



On 09/08/05, Mike Kear [EMAIL PROTECTED] wrote:
 For most projects, I design for 1024 wide, but make sure it degrades
 gracefully  to 800 wide.  Anyone still using 640 wide or other smaller
 sizes has to make their own arrangements.

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: OT: Setting a persistant variable in Javascript

2005-08-02 Thread Steve Onnis

if you do something like

script

currObj = ;

function doSomething () {
currObj = hello;
}
/script

because the currObj var has been created outside the function, it actually
belongs to the document and is avaliable everywhere

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Chad
Renando
Sent: Wednesday, August 03, 2005 1:34 PM
To: CFAussie Mailing List
Subject: [cfaussie] OT: Setting a persistant variable in Javascript


I have this cool table thing where the rows go different colours when
I roll over and when I click on the row.

But now when I click a row I want to turn off the other clicked row.

Still feeling my way around JavaScript.  Is there a way such that when
I click, I assign the selected row and its default colour to a
variable that is available in other functions?

Chad
who gets funny looks when he feels his way around programming languages

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Great example of CFMX7 flash forms at work

2005-07-31 Thread Steve Onnis
Im on 1154x864 and scroillbars everywhere

2 big scrollbars side by side in the main form aswell

not nice

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Peter
Tilbrook
Sent: Monday, August 01, 2005 10:27 AM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Great example of CFMX7 flash forms at work


Resolution is recommended at 1024x768. I've got a widescreen notebook so am
covered nicely. No scrollbars at all.

Peter Tilbrook
ColdGen Internet Solutions
Manager, ACT and Region ColdFusion Users Group
PO Box 2247
Queanbeyan, NSW, 2620
AUSTRALIA

 WWW 1: http://www.coldgen.com/
 WWW 2: http://www.actcfug.com/
Telephone: +61-2-6284-2727
   Mobile: 0432 897 437
   E-mail: [EMAIL PROTECTED]

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Steve Onnis
Sent: Monday, 1 August 2005 10:25 AM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Great example of CFMX7 flash forms at work

think so?
whats with all the scrollbars?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Peter Tilbrook
Sent: Monday, August 01, 2005 10:18 AM
To: CFAussie Mailing List
Subject: [cfaussie] Great example of CFMX7 flash forms at work


http://www.asfusion.com/mxna/

Details on application and source code available at:

http://www.asfusion.com/blog/

Now if only my host upgrades to MX7 I can show what I've been doing with
Flash forms :)

Peter Tilbrook
ColdGen Internet Solutions
Manager, ACT and Region ColdFusion Users Group PO Box 2247 Queanbeyan, NSW,
2620 AUSTRALIA

 WWW 1: http://www.coldgen.com/
 WWW 2: http://www.actcfug.com/
Telephone: +61-2-6284-2727
   Mobile: 0432 897 437
   E-mail: [EMAIL PROTECTED]




---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To
unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To
unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/





---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Function name within cffunction

2005-07-25 Thread Steve Onnis
getting the name of the function?

like

cffunction name=hello
cfoutput#this.name#/cfoutput
/cffunction

that sorta thing?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Sameer
Kekade
Sent: Tuesday, July 26, 2005 2:13 PM
To: CFAussie Mailing List
Subject: [cfaussie] Function name within cffunction
Importance: High


Just a quick one,

Is there a way of getting function name within cffunction

Regards,
Sameer S. Kekade.


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: stripping word formatting from html

2005-07-24 Thread Steve Onnis
if only you could access the dreamweaver stuff via commandline though

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of KNOTT,
Brian
Sent: Monday, July 25, 2005 10:21 AM
To: CFAussie Mailing List
Subject: [cfaussie] RE: stripping word formatting from html


Dreamweaver does it.

-Original Message-
From: grant [mailto:[EMAIL PROTECTED]
Sent: Monday, 25 July 2005 10:18 AM
To: CFAussie Mailing List
Subject: [cfaussie] stripping word formatting from html

Morning All

anybody had experience in succesfully stripping ms word html? any
solution is ok - udf, custom tag, cf_execute-able...

i've looking in cflib and mmExchange with no results. my best bet
seems the command line functions of the ms word filter mentioned in
this article: http://techrepublic.com.com/5100-1035-5197013.html#
but my SOE is 2002 and i can't install it. if anybody's got the three
executables mentioned at the bottom of the document... pls forward.

thanks
G

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


---
This e-mail is sent by Suncorp-Metway Limited ABN 66 010 831 722 or one of
its related entities Suncorp.

Suncorp may be contacted at Level 18, 36 Wickham Terrace, Brisbane or on 13
11 55  or at suncorp.com.au.

The content of this e-mail is the view of the sender or stated author and
does not necessarily reflect the view of Suncorp. The content, including
attachments, is a confidential communication between Suncorp and the
intended recipient. If you are not the intended recipient, any use,
interference with, disclosure or copying of this e-mail, including
attachments, is unauthorised and expressly prohibited. If you have received
this e-mail in error please contact the sender immediately and delete the
e-mail and any attachments from your system.

If this e-mail constitutes a commercial message of a type that you no longer
wish to receive please reply to this e-mail by typing Unsubscribe in the
subject line.



---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: stripping word formatting from html

2005-07-24 Thread Steve Onnis
are you looking for a client side or serverside solution?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of grant
Sent: Monday, July 25, 2005 11:56 AM
To: CFAussie Mailing List
Subject: [cfaussie] Re: stripping word formatting from html


nice tip mike. will have a look.
G

On 7/25/05, Mike Kear [EMAIL PROTECTED] wrote:
 Not sure if it's what you're looking for, but I use FCKEditor in one
 of my sites, and there's a button there to paste word text into.   If
 you've copied from a word doc, instead of using CTRL-V to paste, you
 click this button instead.   It strips out all that rubbish and leaves
 only the valid content - all the MSO stuff goes.

 This only applies to using a rich text editor on line, but perhaps a
 bit of poking around under the bonnet of that editor (it's open
 source) might give you what you need to make your own filter.

 Then we can all use it!


 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 7/25/05, Andrew Scott [EMAIL PROTECTED] wrote:
  Mark,
 
  Does that strip word HTML tags?
 
  I am the same as Grant have been looking for a solution to this as well,
not
  sure if my situation is the same as Grant's or not. But I have a client
  using a wsiwyg editor for a content management system where they copy
word
  documents, and it cause more problems than it is worth. Long story, but
the
  solution would be to allow them ti do this and strip anything that is
not
  considered normal or a standard to html.
 
  Mark, question is without downloading this and finding out to you know
if
  this will fit my needs?
 
 

 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
[EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Retrieving a portion of a text file

2005-07-24 Thread Steve Onnis
how about

cffile action=read file=myFile.txt variable=myFile
cfset firstRow = listFirst(myFile, Chr(10))

That will give you the first row

only thing is you have to load the whole file into memory to do it

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Taco Fleur
(@DataBroker)
Sent: Monday, July 25, 2005 1:46 PM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Retrieving a portion of a text file


I think you will have to use some Java Classes to do that, CF does not
provide this.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Martin Gara
Sent: Monday, 25 July 2005 1:39 PM
To: CFAussie Mailing List
Subject: [cfaussie] Retrieving a portion of a text file

Anyone know of a way to retrieve a portion of a text file without loading
the whole file into memory e.g. CFFILE action=read?

I potentially have a very large delimited file but I only want to read the
first row it contains.

Regards

Martin Gara
BEARCOM Pty Limited

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/




---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: stripping word formatting from html

2005-07-24 Thread Steve Onnis
I have just got a solution but it will require word and that filter thing
being installed on  the server if your interested

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of grant
Sent: Monday, July 25, 2005 2:00 PM
To: CFAussie Mailing List
Subject: [cfaussie] Re: stripping word formatting from html


server. i think i'm going to lift some code from the fck editor tho
which does it client side.
that fck editor is a tidy little app. anybody got warnings/gotchas in using
it?

On 7/25/05, Steve Onnis [EMAIL PROTECTED] wrote:
 are you looking for a client side or serverside solution?

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of grant
 Sent: Monday, July 25, 2005 11:56 AM
 To: CFAussie Mailing List
 Subject: [cfaussie] Re: stripping word formatting from html


 nice tip mike. will have a look.
 G

 On 7/25/05, Mike Kear [EMAIL PROTECTED] wrote:
  Not sure if it's what you're looking for, but I use FCKEditor in one
  of my sites, and there's a button there to paste word text into.   If
  you've copied from a word doc, instead of using CTRL-V to paste, you
  click this button instead.   It strips out all that rubbish and leaves
  only the valid content - all the MSO stuff goes.
 
  This only applies to using a rich text editor on line, but perhaps a
  bit of poking around under the bonnet of that editor (it's open
  source) might give you what you need to make your own filter.
 
  Then we can all use it!
 
 
  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 7/25/05, Andrew Scott [EMAIL PROTECTED] wrote:
   Mark,
  
   Does that strip word HTML tags?
  
   I am the same as Grant have been looking for a solution to this as
well,
 not
   sure if my situation is the same as Grant's or not. But I have a
client
   using a wsiwyg editor for a content management system where they copy
 word
   documents, and it cause more problems than it is worth. Long story,
but
 the
   solution would be to allow them ti do this and strip anything that is
 not
   considered normal or a standard to html.
  
   Mark, question is without downloading this and finding out to you know
 if
   this will fit my needs?
  
  
 
  ---
  You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
  To unsubscribe send a blank email to
 [EMAIL PROTECTED]
  Aussie Macromedia Developers: http://lists.daemon.com.au/
 

 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
 [EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/



 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
[EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: CFAjax - firing from a tr

2005-07-22 Thread Steve Onnis
it all depends then on what the ajax stuff does and how it does it.

I haven't seen it in your code but you can call more than one function in the 
onClick

onClick=switchClass(this, 'rowOn', 'rowOff'); myAjaxCall();

Steve

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chad Renando
Sent: Friday, July 22, 2005 7:50 PM
To: CFAussie Mailing List
Subject: [cfaussie] RE: CFAjax - firing from a tr

No, I got the style change to work,did just what you had (thanks for
the time to write the code, though)...

When I click the row, I ALSO want to fire off the cfajax to populate
an area of my page.

Chad


On 7/22/05, Steve Onnis [EMAIL PROTECTED] wrote:
 Why dont you just write it yourself?
 
 seriously?
 
 style
 .rowOn {
 cursor:pointer;
 background-color:yellow;
 }
 .rowOff {
 cursor:pointer;
 background-color:green;
 }
 /style
 script
 function switchClass() {
 var obj = arguments[0];
 obj.className = obj.className == arguments[1] ? arguments[2] :
 arguments[1];
 }
 /script
 table
 tr class=rowOff onclick=switchClass(this, 'rowOn', 'rowOff');
 tdhello/td
 /tr
 /table
 
 by the time you try and work out whats going on with the CFAjax stuff you
 could do it on your own
 
 Steve
 
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Chad
 Renando
 Sent: Friday, July 22, 2005 6:14 PM
 To: CFAussie Mailing List
 Subject: [cfaussie] RE: CFAjax - firing from a tr
 
 
 Thanks for the reply, Steve.  It's an App, so I am just worrying about
 IE and Firefox, and I can trigger functions from TRs in both.  Am
 currently changing the style based on click.
 
 Not real up on the whole DOM thing.  I am wanting to pass a value to
 the function through an argument.  One work around I though was to
 have a select list and populate it from the onClick in the tr, then
 have the Ajax function reference that select list, but that feels
 messy even to describe.
 
 So instead of referencing the value of the form field below:
 select id=mySelectVar name=mySelectVar onChange=myAjaxCall()
 function myAjaxCall()
 {
 var myVariable = DWRUtil.getValue(mySelectVar);
 DWREngine._execute(_cfscriptLocation, null, 'doStuff', 
 myVariable ,
 otherFunction);
 }
 
 Would rather just reference a variable in the function call:
 tr onClick=myAjaxCall(#variables.MyVarToPass#)
 function myAjaxCall(returnVar)
 {
 var myVariable = returnVar;
 DWREngine._execute(_cfscriptLocation, null, 'doStuff', 
 myVariable ,
 otherFunction);
 }
 
 But I hear there's issues with this?
 
 Thanks for expending the brainwaves.
 
 Chad
 
 
 On 7/22/05, Steve Onnis [EMAIL PROTECTED] wrote:
  Chad
 
  The thing you have to realise is that each element has different
 properties
  so it would depend on what your actually wanting to do with the tr.  also,
  in the DOM, i believe that tr does not have an onClick method, but some
  browsers support it
 
  Steve
 
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] Behalf Of Chad
  Renando
  Sent: Friday, July 22, 2005 4:16 PM
  To: CFAussie Mailing List
  Subject: [cfaussie] CFAjax - firing from a tr
 
 
  Hey all.  For those of you remotely familiar with the cfajax project
  or ajax in general...
 
  The examples they show are fired with a select or input form field.
  What would need to change in order to fire from an onclick in a tr?
 
  Thanks!
 
  Chad
  who hopes he got this in in time to be answered before the weekend.
 
  ---
  You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
  To unsubscribe send a blank email to
  [EMAIL PROTECTED]
  Aussie Macromedia Developers: http://lists.daemon.com.au/
 
 
 
  ---
  You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
  To unsubscribe send a blank email to
 [EMAIL PROTECTED]
  Aussie Macromedia Developers: http://lists.daemon.com.au/
 
 
 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
 [EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/
 
 
 
 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to [EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: CFAjax - firing from a tr

2005-07-22 Thread Steve Onnis
Chad

The thing you have to realise is that each element has different properties
so it would depend on what your actually wanting to do with the tr.  also,
in the DOM, i believe that tr does not have an onClick method, but some
browsers support it

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Chad
Renando
Sent: Friday, July 22, 2005 4:16 PM
To: CFAussie Mailing List
Subject: [cfaussie] CFAjax - firing from a tr


Hey all.  For those of you remotely familiar with the cfajax project
or ajax in general...

The examples they show are fired with a select or input form field.
What would need to change in order to fire from an onclick in a tr?

Thanks!

Chad
who hopes he got this in in time to be answered before the weekend.

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: Server Errors

2005-07-22 Thread Steve Onnis
Cant you just zip the directory instead of creating a file list?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Seano
Sent: Friday, July 22, 2005 4:43 PM
To: CFAussie Mailing List
Subject: [cfaussie] Re: Server Errors


Rod
I'll give it a whirl since you've had good experience with it..
Cheers
Sean

[EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]
 Here is a cfx tag I wrote to handle compression, Im even still using it on
 some production sites. It uses buffered streams to handle io and has a
 try/catch around the part where the files are added to the zipfile. Try
 this and see if it helps in any way. cfx tags can be quite difficult to
 debug at times. Without seeing the jcompress code it could be any sort of
 exception causing your problem really.

 Just call it like cfx_jcompress, compression attribute is optional (0-9).

 cfx_jzip filelist= zipfile= compression= debug

 hth
 Rod

  Rod, sorry I accidentally took it off line
 
  Character length would be .. bloody hell...I think I am getting your
  drift.
  750files x ( 36 chr pathname + 17 chr filename)
  ..that's 40k characters!
 
  Here is the call..
 
  !--- Make up a filelist to zip ---
  cfdirectory
  DIRECTORY=#application.temp_dir##session.mm_username#/#scratchdir#
  NAME=mydirectory
  ACTION=list
  FILTER=*.* 
 
  cfset filelist=
 
  !--- Turn query into list adding filepath ---
  cfloop query=mydirectory 
  cfset filelist = Listappend(filelist,
 
#application.temp_dir##session.mm_username#/#scratchdir#/#mydirectory.name#
  )
  /cfloop
 
  !--- Zip or catch error ---
  cftry
  cfx_jcompress
  ACTION=NEW
  FILEIN=#filelist#
 
 
FILEOUT=#application.temp_dir##session.mm_username#/#scratchdir#/zip/#filen
  amer#download.zip 
 
cfcatch type=any
 scriptdocument.all.status.innerHTML = font
  color='red'Compression interrupted/font;/script
/cfcatch
  /cftry
 
  Cheers
  Sean
 
  From: [EMAIL PROTECTED]
  To: Sean O'Halloran [EMAIL PROTECTED]
  Subject: Re: Server Errors
  Date: Friday, 22 July 2005 1:19 PM
 
  So the call to the cfx contains a long list of file names? What
character
  length is the list? Can you show me the call to the cfx?
 
  Thanks again Rod,
 
 
  Passing files names: Yes, a delimited list. The chosen files are thrown
  into
  a tmp directory and the list generated from a directory listing. Not
  advisable?
 
  I/O errors: Missing files are usually trapped before hand using the dir
  listing. No locks on the file as they are uniquely copied for each user
  into
  their own tmp dir each time.
 
  I will turn on debug in the cfx, didn't realise it had it! Debugging on
  the
  cfserver doesn't catch anything.
 
  Much appreciate your replies
 
  Sean
 
 
 
  ---
  You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
  To unsubscribe send a blank email to
  [EMAIL PROTECTED]
  Aussie Macromedia Developers: http://lists.daemon.com.au/
 




---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: diffs with cf

2005-07-22 Thread Steve Onnis
and the usefullness of that would be?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Gavin
Cooney
Sent: Friday, July 22, 2005 5:06 PM
To: CFAussie Mailing List
Subject: [cfaussie] Re: diffs with cf


 Its not as easy as it first looks.  Been hunting for something like this
 to integrate with FarCry CMS.

you read my mind. that's what i was thinking. integrating a diff into
the archive in farcry. And a variation on that that would show
differences between an entire site now and (say) a month ago.

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: CFAjax - firing from a tr

2005-07-22 Thread Steve Onnis
Why dont you just write it yourself?

seriously?

style
.rowOn {
cursor:pointer;
background-color:yellow;
}
.rowOff {
cursor:pointer;
background-color:green;
}
/style
script
function switchClass() {
var obj = arguments[0];
obj.className = obj.className == arguments[1] ? arguments[2] :
arguments[1];
}
/script
table
tr class=rowOff onclick=switchClass(this, 'rowOn', 'rowOff');
tdhello/td
/tr
/table

by the time you try and work out whats going on with the CFAjax stuff you
could do it on your own

Steve


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Chad
Renando
Sent: Friday, July 22, 2005 6:14 PM
To: CFAussie Mailing List
Subject: [cfaussie] RE: CFAjax - firing from a tr


Thanks for the reply, Steve.  It's an App, so I am just worrying about
IE and Firefox, and I can trigger functions from TRs in both.  Am
currently changing the style based on click.

Not real up on the whole DOM thing.  I am wanting to pass a value to
the function through an argument.  One work around I though was to
have a select list and populate it from the onClick in the tr, then
have the Ajax function reference that select list, but that feels
messy even to describe.

So instead of referencing the value of the form field below:
select id=mySelectVar name=mySelectVar onChange=myAjaxCall()
function myAjaxCall()
{
var myVariable = DWRUtil.getValue(mySelectVar);
DWREngine._execute(_cfscriptLocation, null, 'doStuff', 
myVariable ,
otherFunction);
}

Would rather just reference a variable in the function call:
tr onClick=myAjaxCall(#variables.MyVarToPass#)
function myAjaxCall(returnVar)
{
var myVariable = returnVar;
DWREngine._execute(_cfscriptLocation, null, 'doStuff', 
myVariable ,
otherFunction);
}

But I hear there's issues with this?

Thanks for expending the brainwaves.

Chad


On 7/22/05, Steve Onnis [EMAIL PROTECTED] wrote:
 Chad

 The thing you have to realise is that each element has different
properties
 so it would depend on what your actually wanting to do with the tr.  also,
 in the DOM, i believe that tr does not have an onClick method, but some
 browsers support it

 Steve

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Chad
 Renando
 Sent: Friday, July 22, 2005 4:16 PM
 To: CFAussie Mailing List
 Subject: [cfaussie] CFAjax - firing from a tr


 Hey all.  For those of you remotely familiar with the cfajax project
 or ajax in general...

 The examples they show are fired with a select or input form field.
 What would need to change in order to fire from an onclick in a tr?

 Thanks!

 Chad
 who hopes he got this in in time to be answered before the weekend.

 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
 [EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/



 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
[EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Getting the #anchor from the url

2005-07-20 Thread Steve Onnis
ListGetAt() ??

i would say

ListLast(query_string, ##)

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Andrew
Scott
Sent: Wednesday, July 20, 2005 11:30 AM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Getting the #anchor from the url




#ListGetAt(String,ListLen(String),#)#



Regards
Andrew Scott
Analyst Programmer

CMS Transport Systems
Level 2/33 Bank Street
South Melbourne, Victoria, 3205

Phone: 03 9699 7988  -  Fax: 03 9699 7976
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tom MacKean
Sent: Wednesday, 20 July 2005 11:23 AM
To: CFAussie Mailing List
Subject: [cfaussie] Getting the #anchor from the url

How can I reference the bit after the # in the url?

e.g. in the following url, how can I return 4?

http://staging.dnalabs.com.au/index.cfm#4

Thanks
Tom


NOTICE: Medical and scientific information provided in print and
electronically by Sydney IVF might not be relevant to your own circumstances
and should always be discussed with your own doctor before you act on it.
This communication is confidential and may contain copyright or otherwise
protected information of Sydney IVF Limited or a third party. If you are not
the intended recipient of this communication please immediately let us know
by reply email or telephone us on +61 2 9221 5964, delete the communication
and destroy all copies.


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/




---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Alternating Table Row Colours

2005-07-19 Thread Steve Onnis
is you want a quick way see

http://www.cfcentral.com.au/main.cfm?section=8Category=8viewmode=contentc
ontentid=10

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Mike Kear
Sent: Tuesday, July 19, 2005 5:09 PM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Alternating Table Row Colours


I use CF to assign a class to each row and then use CSS classes to set
the appearance of each row.

Using Javascript is Sooo 1980s.

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

... who hasn't sold out, but has always spelled colours with the
correct spelling.


 Quick poll...

 If you guys alternate table row colours, how do you do it?  Do you use
 CF or JavaScript?

 Chad
 who has sold out and is now spelling colours with a u


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Actual session time-out

2005-07-18 Thread Steve Onnis



you 
cant

  -Original Message-From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]On Behalf Of Taco 
  FleurSent: Tuesday, July 19, 2005 2:53 PMTo: CFAussie 
  Mailing ListSubject: [cfaussie] Actual session 
  time-out
  
  I feel silly, but how do I get the 
  actual session time-out?
  
  RuntimeService.getSessionTimeout()
  
  Only gives me the timeout set in 
  the admin panel.
  
  
  Taco Fleur - E-commerce Development 
  Manager
  Shelco Searches  
  Services
  An Authorised ASIC Information 
  Broker
  www.shelco.com.au
  Ph: + 61 7 3236 
  2605
  ---You 
  are currently subscribed to cfaussie as: [EMAIL PROTECTED]To 
  unsubscribe send a blank email to [EMAIL PROTECTED] 
  Aussie Macromedia Developers: http://lists.daemon.com.au/ 

---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]

Aussie Macromedia Developers: http://lists.daemon.com.au/





[cfaussie] RE: Actual session time-out

2005-07-18 Thread Steve Onnis
What is it you want?

What the session timeout value is ot how much time is left in the session?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Brett
Payne-Rhodes
Sent: Tuesday, July 19, 2005 3:12 PM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Actual session time-out


You can if you do a bit of self management and store your 'expected' session
timeout value in a session variable that you keep updated with each action
(onRequestend.cfm?)...

OK, it's not the 'actual' session timeout but it can be close enough...

B)


Steve Onnis wrote:
 you cant

 -Original Message-
 *From:* [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of *Taco
 Fleur
 *Sent:* Tuesday, July 19, 2005 2:53 PM
 *To:* CFAussie Mailing List
 *Subject:* [cfaussie] Actual session time-out

 I feel silly, but how do I get the actual session time-out?



 RuntimeService.getSessionTimeout()



 Only gives me the timeout set in the admin panel.



 

 Taco Fleur - /E-commerce Development Manager/

 Shelco Searches  Services

 An Authorised ASIC Information Broker

 www.shelco.com.au

 Ph: + 61 7 3236 2605



 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
 [EMAIL PROTECTED] Aussie Macromedia
 Developers: http://lists.daemon.com.au/

 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
 [EMAIL PROTECTED] Aussie Macromedia Developers:
 http://lists.daemon.com.au/

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: Strange Problem (Really strange)

2005-07-17 Thread Steve Onnis
is it one particular file or a group of files?

Maybe test it and put a HTML file there and see if its still there the next
day.  If it is, modify the file and the next day see if its changed back to
the way it was.  If it does you know its got nothing to do with CF and by
the sounds of it has something to do with some sort of replication or
restore process running on the server.

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Andrew
Scott
Sent: Monday, July 18, 2005 9:59 AM
To: CFAussie Mailing List
Subject: [cfaussie] Re: Strange Problem (Really strange)


Chad,

Considering I am the only developer left here now, this is driving me nuts.
4 Times I have made the change here at work, through the network with not
FTP straight file edit and save.

And the last occurrence was at home via RDS, so there is 2 different
scenarios to contend with as well.

Now I am not sure how to find this problem, I will come in the next day and
that one file is back to what it was before changes were made. I can load
the file 5 times during the day and not save it and it has the changes. Then
the next day I'll open it up and the changes are gone.

A priest might be a good idea in this case:-)


Regards
Andrew Scott
Analyst Programmer

CMS Transport Systems
Level 2/33 Bank Street
South Melbourne, Victoria, 3205

Phone: 03 9699 7988  -  Fax: 03 9699 7976

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Chad Renando
Sent: Monday, 18 July 2005 9:44 AM
To: CFAussie Mailing List
Subject: [cfaussie] Re: Strange Problem (Really strange)

Dude, that is weird.  So are you saying that you manually upload the
file, overwriting the old one, and come back the next day and the old
one is back?  Sounds like a spooky Scooby-Do mystery to me.

Whenever I've had these problems, it was always operator error (not
that could possibly be the case with you ;)  ).  Here are some
thoughts:

1. If I edit the file outside of DW, I sometimes need to refresh the
FTP screen in DW in order for it to acknowledge the file has changed.
If I don't, it will see the server and development files as still the
same and not upload.

2. I have wasted heaps of time uploading and not seeing a change on
the live server, only to find that I was uploading to the wrong folder
or server.

3.  Worst case, even after clearing my cache, I have found that I need
to delete the file on the live server, refresh my browser to get the
file not found error, then upload to ensure it takes.

4. Try uploading 2 copies of the same file, named differently.  The
next day, see what has changed.

5. Call in a priest to exorcise the ghost file from your system.

Chad
who was kidding about that last one... not that it's anything to kid about.

On 7/18/05, Andrew Scott [EMAIL PROTECTED] wrote:

 Morning All,

 In the last week I have been experiencing something weird with my Live
cfmx
 6.1 server. I have on 5 occasions changed a file to find that the next day
 it is back to the way it was.

 Has anyone seen this before, I don't want to keep modifying this file back
 all the time.

 Suggestions more than welcome to help me out here.

 Scenario:
 Class files are not saved, use dreamweaver to modify the file and the
server
 is Windows 2003.



 Regards
 Andrew Scott
 Analyst Programmer

 CMS Transport Systems
 Level 2/33 Bank Street
 South Melbourne, Victoria, 3205

 Phone: 03 9699 7988  -  Fax: 03 9699 7976



 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
[EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/




---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: CFQUERY sql string

2005-07-17 Thread Steve Onnis
man thats some query!

whats the execution time on something like that?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Scott
Thornton
Sent: Monday, July 18, 2005 9:44 AM
To: CFAussie Mailing List
Subject: [cfaussie] Re: CFQUERY sql string


I guess it is something to think about.

Like to offer an option on how to turn this query into a  variable easily?

cfquery datasource=#DSN# name=SEARCH_RESULT
set dateformat dmy
SELECT
PATIENT.SB_PATIENT_MRN,
PATIENT.SB_HL7_SOURCE,

PATIENT.SB_PATIENT_SURNAME,
PATIENT.SB_PATIENT_OTHER_NAMES,
PATIENT.SB_PATIENT_DOB,
CASE WHEN INVOICE.SB_INVOICE_PRINT_ID IS NULL THEN
'NORMAL'
ELSE
'GROUP'
END AS TYPE,
CASE WHEN INVOICE.SB_INVOICE_PRINT_ID IS NULL THEN
INVOICE.SB_INVOICE_ID
ELSE
INVOICE.SB_INVOICE_PRINT_ID
END AS SB_INVOICE_ID,
MAX(INVOICE.SB_INVOICE_PRINT_ID) as SB_INVOICE_PRINT_ID,
INVOICE.SB_INVOICE_DATE,

CASE WHEN INVOICE.SB_INVOICE_PRINT_ID IS NULL THEN
INVOICE.SB_INVOICE_NUMBER
ELSE
INVOICE_PRINT.SB_INVOICE_PRINT_INV_NO
END AS SB_INVOICE_NUMBER,
CASE WHEN MAX( INVOICE.SB_PROVIDER_NUMBER ) =
MIN(INVOICE.SB_PROVIDER_NUMBER)  THEN
MIN(provider.SB_PROVIDER_SURNAME)
ELSE
''
END AS SB_PROVIDER_SURNAME,

CASE WHEN MAX( INVOICE.SB_PROVIDER_NUMBER ) =
MIN(INVOICE.SB_PROVIDER_NUMBER)  THEN
MIN(provider.SB_PROVIDER_NUMBER )
ELSE
''
END AS SB_PROVIDER_NUMBER,
MIN(SB_BILL_MECH_DESC) AS SB_BILL_MECH_DESC,
cfif session.imaging eq N
EP_TYPE.SB_EPISODE_TYPE_DESC,
EPISODE.SB_HOSPITAL_CODE,
EPISODE.SB_ADMISSION_DATE,
EPISODE.SB_DISCHARGE_DATE,
/cfif

MIN(INVOICE.SB_REMINDER_LEVEL) AS SB_REMINDER_LEVEL,

ISNULL(ISNULL((
SELECT  SUM(INVOICE3.SB_INVOICE_TOTAL_AMT)
FROMSB_INVOICE INVOICE3
WHERE
INVOICE3.SB_INVOICE_PRINT_ID = 
INVOICE.SB_INVOICE_PRINT_ID AND
INVOICE3.SB_PATIENT_MRN = PATIENT.SB_PATIENT_MRN AND
INVOICE3.SB_HL7_SOURCE = PATIENT.SB_HL7_SOURCE
), sum(ITEM.SB_INVOICE_COST) ),0) AS INVOICE_AMOUNT,
ISNULL((

SELECT
SUM(ISNULL(ITEM3.SB_HIC_AMOUNT_PAID,0)   +
ISNULL(ITEM3.SB_FUND_AMOUNT_PAID,0) )
FROM
SB_INVOICE INVOICE3 INNER JOIN
SB_INVOICE_ITEM ITEM3 ON
INVOICE3.SB_INVOICE_ID = 
ITEM3.SB_INVOICE_ID
WHERE
INVOICE3.SB_INVOICE_PRINT_ID = 
INVOICE.SB_INVOICE_PRINT_ID AND
INVOICE3.SB_PATIENT_MRN = 
PATIENT.SB_PATIENT_MRN AND
INVOICE3.SB_HL7_SOURCE = PATIENT.SB_HL7_SOURCE
),0) AS AMOUNT_PAID,
ISNULL((

SELECT
SUM(ISNULL(ITEM3.SB_WRITEOFF_AMOUNT,0) +
ISNULL(ITEM3.SB_ADJUST_AMOUNT,0))
FROM
SB_INVOICE INVOICE3 INNER JOIN
SB_INVOICE_ITEM ITEM3 ON
INVOICE3.SB_INVOICE_ID = 
ITEM3.SB_INVOICE_ID
WHERE
INVOICE3.SB_INVOICE_PRINT_ID = 
INVOICE.SB_INVOICE_PRINT_ID AND
INVOICE3.SB_PATIENT_MRN = 
PATIENT.SB_PATIENT_MRN AND
INVOICE3.SB_HL7_SOURCE = PATIENT.SB_HL7_SOURCE
),0) AS AMOUNT_ADJUSTED,
ISNULL(   (

SELECT

SUM(ITEM3.SB_INVOICE_COST)-SUM(ISNULL(ITEM3.SB_HIC_AMOUNT_PAID,0)   +
ISNULL(ITEM3.SB_FUND_AMOUNT_PAID,0)) -
SUM(ISNULL(ITEM3.SB_WRITEOFF_AMOUNT,0) + ISNULL(ITEM3.SB_ADJUST_AMOUNT,0))
FROM
SB_INVOICE INVOICE3 INNER JOIN
SB_INVOICE_ITEM ITEM3 ON
INVOICE3.SB_INVOICE_ID = 
ITEM3.SB_INVOICE_ID
WHERE
INVOICE3.SB_INVOICE_PRINT_ID = 
INVOICE.SB_INVOICE_PRINT_ID AND
INVOICE3.SB_PATIENT_MRN = 
PATIENT.SB_PATIENT_MRN AND
   

[cfaussie] Re: Strange Problem (Really strange)

2005-07-17 Thread Steve Onnis
When you see the file has changed back to its previous code, are the date
stamps the same all the time? like does it go back to the same day and time?
if not, does it go to a different date but the same time?

Just trying to work out if its a system restore issue or its someone
updating the file without you knowing.

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Andrew
Scott
Sent: Monday, July 18, 2005 10:26 AM
To: CFAussie Mailing List
Subject: [cfaussie] Re: Strange Problem (Really strange)


Steve,

At this stage it is only the one file.


Regards
Andrew Scott
Analyst Programmer

CMS Transport Systems
Level 2/33 Bank Street
South Melbourne, Victoria, 3205

Phone: 03 9699 7988  -  Fax: 03 9699 7976

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Steve Onnis
Sent: Monday, 18 July 2005 10:25 AM
To: CFAussie Mailing List
Subject: [cfaussie] Re: Strange Problem (Really strange)

is it one particular file or a group of files?

Maybe test it and put a HTML file there and see if its still there the next
day.  If it is, modify the file and the next day see if its changed back to
the way it was.  If it does you know its got nothing to do with CF and by
the sounds of it has something to do with some sort of replication or
restore process running on the server.

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Andrew
Scott
Sent: Monday, July 18, 2005 9:59 AM
To: CFAussie Mailing List
Subject: [cfaussie] Re: Strange Problem (Really strange)


Chad,

Considering I am the only developer left here now, this is driving me nuts.
4 Times I have made the change here at work, through the network with not
FTP straight file edit and save.

And the last occurrence was at home via RDS, so there is 2 different
scenarios to contend with as well.

Now I am not sure how to find this problem, I will come in the next day and
that one file is back to what it was before changes were made. I can load
the file 5 times during the day and not save it and it has the changes. Then
the next day I'll open it up and the changes are gone.

A priest might be a good idea in this case:-)


Regards
Andrew Scott
Analyst Programmer

CMS Transport Systems
Level 2/33 Bank Street
South Melbourne, Victoria, 3205

Phone: 03 9699 7988  -  Fax: 03 9699 7976

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Chad Renando
Sent: Monday, 18 July 2005 9:44 AM
To: CFAussie Mailing List
Subject: [cfaussie] Re: Strange Problem (Really strange)

Dude, that is weird.  So are you saying that you manually upload the
file, overwriting the old one, and come back the next day and the old
one is back?  Sounds like a spooky Scooby-Do mystery to me.

Whenever I've had these problems, it was always operator error (not
that could possibly be the case with you ;)  ).  Here are some
thoughts:

1. If I edit the file outside of DW, I sometimes need to refresh the
FTP screen in DW in order for it to acknowledge the file has changed.
If I don't, it will see the server and development files as still the
same and not upload.

2. I have wasted heaps of time uploading and not seeing a change on
the live server, only to find that I was uploading to the wrong folder
or server.

3.  Worst case, even after clearing my cache, I have found that I need
to delete the file on the live server, refresh my browser to get the
file not found error, then upload to ensure it takes.

4. Try uploading 2 copies of the same file, named differently.  The
next day, see what has changed.

5. Call in a priest to exorcise the ghost file from your system.

Chad
who was kidding about that last one... not that it's anything to kid about.

On 7/18/05, Andrew Scott [EMAIL PROTECTED] wrote:

 Morning All,

 In the last week I have been experiencing something weird with my Live
cfmx
 6.1 server. I have on 5 occasions changed a file to find that the next day
 it is back to the way it was.

 Has anyone seen this before, I don't want to keep modifying this file back
 all the time.

 Suggestions more than welcome to help me out here.

 Scenario:
 Class files are not saved, use dreamweaver to modify the file and the
server
 is Windows 2003.



 Regards
 Andrew Scott
 Analyst Programmer

 CMS Transport Systems
 Level 2/33 Bank Street
 South Melbourne, Victoria, 3205

 Phone: 03 9699 7988  -  Fax: 03 9699 7976



 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
[EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/




---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au

[cfaussie] Re: Strange Problem (Really strange)

2005-07-17 Thread Steve Onnis
datestamps?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Andrew
Scott
Sent: Monday, July 18, 2005 11:00 AM
To: CFAussie Mailing List
Subject: [cfaussie] Re: Strange Problem (Really strange)


Ok it just happened again 1.5 hours after last saving it.

It seems to be that it is actually reformatting the code for me, by that I
mean I have this and it is deciding to recode it back to something I don't
want it.

ul type=circle
table width=90% border=0
tr
td valign=top nowrap
cfoutput query=Categories
li#CategoryName#/a
cfif CurrentRow gt
int(RecordCount/2) and Column eq 1
/td
td valign=top
nowrap
cfset Column = 2
/cfif
/cfoutput
!--- This next line moves to
Postion before /cfif above ---
/td
/tr
/table
/ul


Regards
Andrew Scott
Analyst Programmer

CMS Transport Systems
Level 2/33 Bank Street
South Melbourne, Victoria, 3205

Phone: 03 9699 7988  -  Fax: 03 9699 7976

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Andrew Scott
Sent: Monday, 18 July 2005 10:34 AM
To: CFAussie Mailing List
Subject: [cfaussie] Re: Strange Problem (Really strange)

Actually Steve to be honest I really haven't paid attention to the date
stamp until today, might need to keep an eye on that one.

Regards
Andrew Scott
Analyst Programmer

CMS Transport Systems
Level 2/33 Bank Street
South Melbourne, Victoria, 3205

Phone: 03 9699 7988  -  Fax: 03 9699 7976

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Steve Onnis
Sent: Monday, 18 July 2005 10:34 AM
To: CFAussie Mailing List
Subject: [cfaussie] Re: Strange Problem (Really strange)

When you see the file has changed back to its previous code, are the date
stamps the same all the time? like does it go back to the same day and time?
if not, does it go to a different date but the same time?

Just trying to work out if its a system restore issue or its someone
updating the file without you knowing.

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Andrew
Scott
Sent: Monday, July 18, 2005 10:26 AM
To: CFAussie Mailing List
Subject: [cfaussie] Re: Strange Problem (Really strange)


Steve,

At this stage it is only the one file.


Regards
Andrew Scott
Analyst Programmer

CMS Transport Systems
Level 2/33 Bank Street
South Melbourne, Victoria, 3205

Phone: 03 9699 7988  -  Fax: 03 9699 7976

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Steve Onnis
Sent: Monday, 18 July 2005 10:25 AM
To: CFAussie Mailing List
Subject: [cfaussie] Re: Strange Problem (Really strange)

is it one particular file or a group of files?

Maybe test it and put a HTML file there and see if its still there the next
day.  If it is, modify the file and the next day see if its changed back to
the way it was.  If it does you know its got nothing to do with CF and by
the sounds of it has something to do with some sort of replication or
restore process running on the server.

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Andrew
Scott
Sent: Monday, July 18, 2005 9:59 AM
To: CFAussie Mailing List
Subject: [cfaussie] Re: Strange Problem (Really strange)


Chad,

Considering I am the only developer left here now, this is driving me nuts.
4 Times I have made the change here at work, through the network with not
FTP straight file edit and save.

And the last occurrence was at home via RDS, so there is 2 different
scenarios to contend with as well.

Now I am not sure how to find this problem, I will come in the next day and
that one file is back to what it was before changes were made. I can load
the file 5 times during the day and not save it and it has the changes. Then
the next day I'll open it up and the changes are gone.

A priest might be a good idea in this case:-)


Regards
Andrew Scott
Analyst Programmer

CMS Transport Systems
Level 2/33 Bank Street
South Melbourne, Victoria, 3205

Phone: 03 9699 7988  -  Fax: 03 9699 7976

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Chad Renando
Sent: Monday, 18 July 2005 9:44 AM
To: CFAussie Mailing List
Subject: [cfaussie] Re: Strange Problem (Really strange)

Dude, that is weird.  So are you saying that you manually upload the
file, overwriting the old one, and come back the next day and the old
one

[cfaussie] Re: Strange Problem (Really strange)

2005-07-17 Thread Steve Onnis
want a fix?
Use Homesite+ :)

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of grant
Sent: Monday, July 18, 2005 12:39 PM
To: CFAussie Mailing List
Subject: [cfaussie] Re: Strange Problem (Really strange)


andrew, what i was thinking of is this:
http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_16511

there doesn't seem to be any fix.

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: isUserInRole madness

2005-07-14 Thread Steve Onnis
does it matter what order its in?

isUserInRole(admin,user)
or
isUserInRole(user,admin)

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Tim
McAuliffe
Sent: Friday, July 15, 2005 12:05 PM
To: CFAussie Mailing List
Subject: [cfaussie] Re: isUserInRole madness


Hey Lucas,

The problem with isUserInRole() is that it performs an AND condition when
you have a list of roles. So isUserInRole(admin,user) will only return
true if you have admin AND user roles.

I've suggested to MM that isUserInRole() should have an optional second
attribute. Either All (default) or Any. That way, it would be fully
backwards compatible but you'd also be able to do an OR comparison when
required. If anyone else thinks this is a good idea, you might want to
request it here:
http://www.macromedia.com/cfusion/mmform/index.cfm?name=wishformproduct=17


Cheers

Tim

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: Macromedia support

2005-07-14 Thread Steve Onnis
I dont think you can sign up for the partner program

You have to apply and be accepted as there is criteria you have to meet

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Taco
Sent: Friday, July 15, 2005 10:05 AM
To: CFAussie Mailing List
Subject: [cfaussie] Re: Macromedia support


 If you are thinking of speaking to them about a server not behaving
save yourself some time and turn on all the profiling  debugging options on
the JVM, start with a set of fresh log files and run your server for a
while. Send all the info through to them when they ask for it.

Thanks for the info, its got nothing to do with the Server misbehaving,
still banging my head on the SSL issue, and exhausted every option
available.

 No, I used one of our partner support calls.

Excuse my ignorance, what exactly does that mean, does it mean a support
call is free if you sign up for the MM partner program?



---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: concat array

2005-07-14 Thread Steve Onnis
when i met mark for the first time, i got home and weeped in the corner of
my room rocking back and forth!

He's ok now. I have developed some kind of immunity:P

Just kiddin~

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Andrew
Scott
Sent: Friday, July 15, 2005 2:48 PM
To: CFAussie Mailing List
Subject: [cfaussie] RE: concat array


Btw.

It was nice to put a face to the name the other night, and met you and Mark
M. or is that something bee?


Regards
Andrew Scott
Analyst Programmer

CMS Transport Systems
Level 2/33 Bank Street
South Melbourne, Victoria, 3205

Phone: 03 9699 7988  -  Fax: 03 9699 7976

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of grant
Sent: Friday, 15 July 2005 2:45 PM
To: CFAussie Mailing List
Subject: [cfaussie] RE: concat array

yeah that's my hot tip for the week... is there a list of all the
classes the u can use in cf and which ones aren't supported, or can u
just call anything? i'm so n00b when it comes to cf + java.

On 7/15/05, Mark Mandel [EMAIL PROTECTED] wrote:
 It's good to know that an Array is an extension of java.util.Vector -
 so there are all sorts of intersting things you can do to it.

 Mark

 On 7/15/05, Taco [EMAIL PROTECTED] wrote:
  http://java.sun.com/j2se/1.4.2/docs/api/
 



 --
 E: [EMAIL PROTECTED]
 W: www.compoundtheory.com
 ICQ: 3094740

 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
[EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/




---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] OT : Coldfusion 7 Hosting now available

2005-07-14 Thread Steve Onnis

Just to let you guys know we have set up out CF7 server now and have
available CF7+MSSQL for $35.00 per month.

For more into visit http://www.novahost.com.au or email me on
[EMAIL PROTECTED]

Regards
Steve Onnis



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: CF Birthday Party wrap up

2005-07-13 Thread Steve Onnis
Certainly hope not :)

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Dawes,
Chris
Sent: Thursday, July 14, 2005 12:29 PM
To: CFAussie Mailing List
Subject: [cfaussie] Re: CF Birthday Party wrap up



Did Geoff hit record on his breezer?

Dawesi
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mark
Blair
Sent: Thursday, 14 July 2005 10:35 AM
To: CFAussie Mailing List
Subject: [cfaussie] Re: CF Birthday Party wrap up


Recording of the US event, enjoy!
http://macromedia.breezecentral.com/p64775146/

Sorry I couldn't attend, sounds like fun was had by all ...

best
Mark


- Original Message -
From: TRACEY, Darren [EMAIL PROTECTED]
To: CFAussie Mailing List cfaussie@lists.daemon.com.au
Sent: Thursday, July 14, 2005 9:54 AM
Subject: [cfaussie] CF Birthday Party wrap up


 Thanks to everyone who attended the ColdFusion 10th Birthday
celebrations
 last night. Extra thanks to everyone who worked hard to make it all 
happen.
 As far as I could tell everyone had a good time.

 The event in Brisbane went really well. We had 33 party-goers,
scoffing
 through 3 trays of subway, 6 pizzas, chips, marshmallows, nuts, snakes
and
 dinosaurs, beer and softdrinks!
 We started out with our quiz, the first round being paper based with
20
 multiple choice questions, while we watched Geoff's walk down memory
lane,
 and Nick's recounting of 'the old days'. We then collected up our quiz
 sheets, and the 2 other qld judges and myself franticly went about
marking
 them while the other states patiently(?) waited for us. We ended up
with a  4
 way tie, and after administering the tie breaker questions, we ended
up  with
 only a 2 way tie (between Phil Arnold and Vaughan Allan), so we did
what
 anyone would do in this situation and tossed a coin! (Phil won)
 Then each state pitted their chosen champion against the other
champions  in
 a breeze quiz, which Sydney declared themselves the winner of. After
 Queenslands very vocal (typed) protests, the results were actually
counted
 and surprisingly enough, Queensland (CF Capital of Australia) was
declared
 the clear winner by one point! Yay!!!
 Phil won a copy of CF Server Professional for his efforts, and QLD 
retained
 its crown as CF capital despite the best efforts of the treacherous
 southerners!!
 Feeling guilty about the coin toss we awarded our other copy of CF
server  to
 Vaughan for his efforts in the quiz.
 After a marathon prize drawing we gave a way a copy of Ben Forta's
CFMX7
 WACK and Adv Wack books, one of our last much sought after MXDU bags,
and  a
 whole bunch of 'developer sized' commemorative CF 10th birthday shirts
 (thanks to Mark Blair), and some CF frisbees.
 Then we broke out the cake. A fantastic chocolate sponge decorated in 
white
 and cf blue trim with 'Happy 10th Birthday ColdFusion' written across
it.  We
 did a very poor (yet heartfelt) rendition of Happy Birthday and blew
out  the
 candles, and congratulated ourselves for beating the Southerners!

 After some quick QA, some talk about the Flash public beta and some 
amazing
 demos of Google's new Earth program, we called it quits, cleaned up
and
 headed off for the night.

 Before I finish here, I thought I should share with you some
historical
 things that happened on the 10th of July in 1995, when CF was born (or
 rather unleashed upon the world):


 MOVIES showing on 10th of July 1995, in Australia
 Braveheart
 Crimson Tide
 Tank Girl
 Casper
 Batman Forever
 Congo
 Bad Boys
 Flashlight
 Billy Madison
 First Knight


 Top 30 Songs in Australia - Sunday 9th July 1995 : Week 28
 Title and Artist(es)
 01 HOLD ME, THRILL ME, KISS ME - U2 (1 wk @ No.1)
 02 HAVE YOU EVER REALLY LOVED A WOMAN - Bryan Adams (1 wk @ No.1)
 03 MOUTH - Merril Bainbridge (6 wks @ No.1)
 04 THIS AIN'T A LOVE SONG - Bon Jovi
 05 SHY GUY - Diana King
 06 YOU BELONG TO ME - JX
 07 BACK FOR GOOD - Take That (2 wks @No.1)
 08 DON'T STOP (WIGGLE WIGGLE) - The Outhere Brothers
 09 SCREAM / CHILDHOOD - Michael Jackson
 10 SET YOU FREE - N-Trance

 11 STRONG ENOUGH - Sheryl Crow
 12 BOMB! (THESE SOUNDS FALL INTO MY MIND) - The Bucketheads
 13 SUKIYAKI - 4PM
 14 BABY BABY - Corona
 15 I'VE GOT A LITTLE SOMETHING FOR YOU - MN8
 16 EVERYBODY ON THE FLOOR - Tokyo Ghetto Pussy
 17 MY LOVE IS FOR REAL - Paula Abdul
 18 THIS IS HOW WE DO IT - Montell Jordan
 19 RIVER OF LOVE- Rick Price
 20 RUN AWAY - MC Sar  The Real McCoy

 21 IF YOU LOVE ME - Brownstone
 22 DON'T GIVE ME YOUR LIFE - Alex Party
 23 INSENSITIVE - Jann Arden
 24 (HE'LL NEVER BE AN) OL' MAN RIVER - T.I.S.M.
 25 HEAVEN HELP MY HEART - Tina Arena
 26 BABY - Brandy
 27 THIS IS A CALL - Foo Fighters
 28 U SURE DO - Strike
 29 MY GIRL JOSEPHINE - Super Cat
 30 ONLY ONE ROAD - Celine Dion


 Events, birthdays and deaths around the world on the 10th of July...
 In 1692 Bridget Bishop first Salem witch hung
 In 1723 Sir William Blackstone, English jurist (Blackstone's 
Commentaries),
 born.
 In 1792 

[cfaussie] Re: CF Birthday Party wrap up

2005-07-13 Thread Steve Onnis
Ive got one on now:)

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Seona
Bellamy
Sent: Thursday, July 14, 2005 1:39 PM
To: CFAussie Mailing List
Subject: [cfaussie] Re: CF Birthday Party wrap up


Too true. I'm now the proud owner of a CF Birthday dress - it comes
down past my knees, but with a belt I think it could look okay... ;)


Seona.

 On 7/14/05, Barry Beattie [EMAIL PROTECTED] wrote:

 what did the shirts look like ?

 big - developer size... I walked outside with it on and was mugged
 by a bunch of homeless people looking for shelter...





---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: CF Birthday Party wrap up

2005-07-13 Thread Steve Onnis
well you said you didnt need it anymore so..

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Seona
Bellamy
Sent: Thursday, July 14, 2005 1:46 PM
To: CFAussie Mailing List
Subject: [cfaussie] Re: CF Birthday Party wrap up


What, a dress? ;)


On 14/07/2005, at 1:42 PM, Steve Onnis wrote:

 Ive got one on now:)

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Seona
 Bellamy
 Sent: Thursday, July 14, 2005 1:39 PM
 To: CFAussie Mailing List
 Subject: [cfaussie] Re: CF Birthday Party wrap up


 Too true. I'm now the proud owner of a CF Birthday dress - it comes
 down past my knees, but with a belt I think it could look okay... ;)


 Seona.

 On 7/14/05, Barry Beattie [EMAIL PROTECTED] wrote:

 what did the shirts look like ?

 big - developer size... I walked outside with it on and was mugged
 by a bunch of homeless people looking for shelter...





 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
 [EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/



 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
 [EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: OT: Links - Macromedia Flash Player 8 Public Beta and Google toolbar for Firefox

2005-07-12 Thread Steve Onnis
me

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Scott Barnes
Sent: Tuesday, July 12, 2005 11:30 PM
To: CFAussie Mailing List
Subject: [cfaussie] Re: OT: Links - Macromedia Flash Player 8 Public Beta and 
Google toolbar for Firefox

Q. Anyone here *NOT* reading FullAsAGoog.com or Weblogs.macromedia.com?


On 7/12/05, Peter Tilbrook [EMAIL PROTECTED] wrote:
 See:
 
 http://www.macromedia.com/software/flashplayer/public_beta/
 
 And:
 
 http://toolbar.google.com/firefox/
 
 Peter Tilbrook
 ColdGen Internet Solutions
 Manager, ACT and Region ColdFusion Users Group
 PO Box 2247
 Queanbeyan, NSW, 2620
 AUSTRALIA
 
  WWW 1: http://www.coldgen.com/
  WWW 2: http://www.actcfug.com/
 Telephone: +61-2-6284-2727
Mobile: 0432 897 437
E-mail: [EMAIL PROTECTED]
 
 
 
 
 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to [EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/
 


-- 
Regards,
Scott Barnes
http://www.mossyblog.com

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: Dude check out this sweet site!

2005-07-12 Thread Steve Onnis
we all know this is crap spam, so why are we even responding to it

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Chad
Renando
Sent: Wednesday, July 13, 2005 10:20 AM
To: CFAussie Mailing List
Subject: [cfaussie] Re: Dude check out this sweet site!


I think we needed to see the original order confirmation message Scott
received.

Chad
who believes societal issues and diet are major contributors to the
mass occurrence of both bedroom performance anxiety and childhood
ADD

On 7/13/05, M@ Bourke [EMAIL PROTECTED] wrote:
 ??
 Scott you been coding in ASP again ?

 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
[EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] CFUG Melbourne CFMX Birthday Meeting Tonight : Don't Forget!

2005-07-12 Thread Steve Onnis

Just a reminder the CFMX Birthday Usergroup Meeting.

Geoff Bower's will be presenting from Sydney via breeze to the user group.
We will be giving out special CFMX Birthday t-shirts for the event and
finally running a quiz where the winner will receive a copy of CFMX.

For more into go to http://www.cfcentral.com.au

Regards
Steve Onnis



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Search Engines

2005-07-12 Thread Steve Onnis
agreed
probably better to redirect for the non search engine agents

search engines dont like redirects

or use an include and include diff content rather than redirecting


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of TRACEY,
Darren
Sent: Wednesday, July 13, 2005 11:37 AM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Search Engines


However noble your intentions may be, search engines take a _very_ dim view
of this type of behaviour.

Regards

Darren Tracey
Systems Analyst
HR Systems and FastTrack
Wealth and Corporate Systems
Suncorp
p: + 61 7 3232 4091 (x64091)
f: + 61 7 3232 4744
e: [EMAIL PROTECTED]
l: Lvl 3, 388 Queen St Brisbane QLD 4000
m: Suncorp IPC IT048, GPO Box 1453, Brisbane QLD 4000


 -Original Message-
 From: Andrew Scott
 Sent: Wednesday, 13 July 2005 11:27 AM
 To:   CFAussie Mailing List
 Subject:  [cfaussie] Search Engines


 Does anyone have a link that I could browse to get a list of known search
 engines, spiders and bots that could crawl through a web site?

 I am looking at identifying these and pushing them to another part of a
 website. Any help would be appreciated, I have done a quick search through
 Google but not come up with anything concrete yet.


 Regards
 Andrew Scott
 Analyst Programmer

 CMS Transport Systems
 Level 2/33 Bank Street
 South Melbourne, Victoria, 3205

 Phone: 03 9699 7988  -  Fax: 03 9699 7976



 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
 [EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/


---
This e-mail is sent by Suncorp-Metway Limited ABN 66 010 831 722 or one of
its related entities Suncorp.

Suncorp may be contacted at Level 18, 36 Wickham Terrace, Brisbane or on 13
11 55  or at suncorp.com.au.

The content of this e-mail is the view of the sender or stated author and
does not necessarily reflect the view of Suncorp. The content, including
attachments, is a confidential communication between Suncorp and the
intended recipient. If you are not the intended recipient, any use,
interference with, disclosure or copying of this e-mail, including
attachments, is unauthorised and expressly prohibited. If you have received
this e-mail in error please contact the sender immediately and delete the
e-mail and any attachments from your system.

If this e-mail constitutes a commercial message of a type that you no longer
wish to receive please reply to this e-mail by typing Unsubscribe in the
subject line.


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Search Engines

2005-07-12 Thread Steve Onnis
The same way CFHTTP knows if your doing a redirect

HTTP headers

They can also detect javascript redirects aswell

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Brett
Payne-Rhodes
Sent: Wednesday, July 13, 2005 11:49 AM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Search Engines


How would they know?

B)

TRACEY, Darren wrote:
 However noble your intentions may be, search engines take a _very_ dim
view
 of this type of behaviour.

 Regards

 Darren Tracey
 Systems Analyst
 HR Systems and FastTrack
 Wealth and Corporate Systems
 Suncorp
 p: + 61 7 3232 4091 (x64091)
 f: + 61 7 3232 4744
 e: [EMAIL PROTECTED]
 l: Lvl 3, 388 Queen St Brisbane QLD 4000
 m: Suncorp IPC IT048, GPO Box 1453, Brisbane QLD 4000



-Original Message-
From: Andrew Scott
Sent: Wednesday, 13 July 2005 11:27 AM
To: CFAussie Mailing List
Subject: [cfaussie] Search Engines


Does anyone have a link that I could browse to get a list of known search
engines, spiders and bots that could crawl through a web site?

I am looking at identifying these and pushing them to another part of a
website. Any help would be appreciated, I have done a quick search through
Google but not come up with anything concrete yet.


Regards
Andrew Scott
Analyst Programmer

CMS Transport Systems
Level 2/33 Bank Street
South Melbourne, Victoria, 3205

Phone: 03 9699 7988  -  Fax: 03 9699 7976



---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


 --
-
 This e-mail is sent by Suncorp-Metway Limited ABN 66 010 831 722 or one of
its related entities Suncorp.

 Suncorp may be contacted at Level 18, 36 Wickham Terrace, Brisbane or on
13 11 55  or at suncorp.com.au.

 The content of this e-mail is the view of the sender or stated author and
does not necessarily reflect the view of Suncorp. The content, including
attachments, is a confidential communication between Suncorp and the
intended recipient. If you are not the intended recipient, any use,
interference with, disclosure or copying of this e-mail, including
attachments, is unauthorised and expressly prohibited. If you have received
this e-mail in error please contact the sender immediately and delete the
e-mail and any attachments from your system.

 If this e-mail constitutes a commercial message of a type that you no
longer wish to receive please reply to this e-mail by typing Unsubscribe in
the subject line.


 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
[EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: OT: Javascript: radio instead of select

2005-07-11 Thread Steve Onnis
input name=state id=state type=radio value=VA
class=FormField onclick=loadInfo()

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Chad
Renando
Sent: Tuesday, July 12, 2005 10:19 AM
To: CFAussie Mailing List
Subject: [cfaussie] OT: Javascript: radio instead of select


Hey all.  A bit off topic here, but figure someone may have a quick
answer.  Using cfajax,modifying one of their examples, text.htm.

It uses a Select drop down to update the contents of a span tag.  I am
trying to replace the
Select with radio buttons, like so:

Instead of:
select id=state name=state onChange=loadInfo()
option value=VAVirginia/option
option value=GAGeorgia/option
option value=CACalifornia/option
/select

I tried:
input name=state id=state type=radio value=VA
class=FormField onChange=loadInfo()
input name=state id=state type=radio value=GA
class=FormField onChange=loadInfo()
input name=state id=state type=radio value=CA
class=FormField onChange=loadInfo()

But all I get is the red Loading image, no errors and nothing happens.

Any ideas?

Thanks,

Chad
who feels guilt when cross-posting

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Session tracking / User activity monitoring

2005-07-10 Thread Steve Onnis
I log into a database table

just set the table up to hold what info you want to record and insert it.  I
do it in my onRequestEnd.cfm file for the application

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Sameer
Kekade
Sent: Monday, July 11, 2005 10:52 AM
To: CFAussie Mailing List
Subject: [cfaussie] Session tracking / User activity monitoring


Hey Guys,

I need some pointers on how session tracking/ user activity monitoring
is done like they have in FarCry.

We need to track the user-activities within our website like
- The path they take
- Sections they visit
- Current active users on the website

I thought of logging it onto a csv log file but then its difficult to
manage them.

Another option would be logging these activities onto a database table.
Has anybody done something like this before?

Thanks in advance

Regards,
Sameer S. Kekade.
http://cfsameer.blogspot.com



---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Session tracking / User activity monitoring

2005-07-10 Thread Steve Onnis
No it wont

all my pages work within a central index file so i can catch any errors
anywaym, as i also log these.  Because i catch them the onrequestend always
runs

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Sameer
Kekade
Sent: Monday, July 11, 2005 11:13 AM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Session tracking / User activity monitoring
Importance: High



onRequestEnd.cfm is a good idea, but I was wondering.. Will this work if
the page errors out.
Does it still execute onRequestEnd.cfm on exception?

Thanks Steve!!

Warm Regards,
Sameer S. Kekade.
http://cfsameer.blogspot.com

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Steve
Onnis
Sent: Monday, 11 July 2005 11:02 AM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Session tracking / User activity monitoring


I log into a database table

just set the table up to hold what info you want to record and insert
it.  I do it in my onRequestEnd.cfm file for the application

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Sameer
Kekade
Sent: Monday, July 11, 2005 10:52 AM
To: CFAussie Mailing List
Subject: [cfaussie] Session tracking / User activity monitoring


Hey Guys,

I need some pointers on how session tracking/ user activity monitoring
is done like they have in FarCry.

We need to track the user-activities within our website like
- The path they take
- Sections they visit
- Current active users on the website

I thought of logging it onto a csv log file but then its difficult to
manage them.

Another option would be logging these activities onto a database table.
Has anybody done something like this before?

Thanks in advance

Regards,
Sameer S. Kekade.
http://cfsameer.blogspot.com



---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Session tracking / User activity monitoring

2005-07-10 Thread Steve Onnis
You see, the thing with web log files is they are great for general
reporting on site usage, but useless when it comes down to following
particular users

weblogs do not tell you which user has made the hit or usage patters of a
particular user, which users are downloading which documents, which users
are logging in when or any other specific user trends which is why doing
your own logging is good and is the reason why i did it for my cms.

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Taco
Sent: Monday, July 11, 2005 11:28 AM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Session tracking / User activity monitoring


For reporting you would import the logs into a program that analyzes it,
there are a few free ones out there, or even cheap ones.

Otherwise create your own, but I still would not let the application log
anything.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Sameer
Kekade
Sent: Monday, 11 July 2005 11:24 AM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Session tracking / User activity monitoring
Importance: High

A valid point raised, Taco

Webserver logs are not that good when it comes to running adhoc reports,
unless its fed to another application to analyse it.

Although dumping this to a table with fewer indexes may do the trick.

Warm Regards,
Sameer S. Kekade.
http://cfsameer.blogspot.com

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Taco
Sent: Monday, 11 July 2005 11:02 AM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Session tracking / User activity monitoring


Why create customized logging when the web server already does this job
for you and a whole lot quicker to?

Logging the same properties as the web server does from within the
application would surely bring it to its knees on a production server
with high traffic.




Taco Fleur - E-commerce Development Manager
Shelco Searches  Services
An Authorised ASIC Information Broker
www.shelco.com.au
Ph: + 61 7 3236 2605

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Sameer
Kekade
Sent: Monday, 11 July 2005 10:52 AM
To: CFAussie Mailing List
Subject: [cfaussie] Session tracking / User activity monitoring

Hey Guys,

I need some pointers on how session tracking/ user activity monitoring
is done like they have in FarCry.

We need to track the user-activities within our website like
- The path they take
- Sections they visit
- Current active users on the website

I thought of logging it onto a csv log file but then its difficult to
manage them.

Another option would be logging these activities onto a database table.
Has anybody done something like this before?

Thanks in advance

Regards,
Sameer S. Kekade.
http://cfsameer.blogspot.com



---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To
unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/




---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/




---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] CFUG Melbourne CFMX Birthday Meeting This Wednesday : Don't Forget!

2005-07-10 Thread Steve Onnis

Just a reminder the CFMX Birthday Usergroup Meeting.

Geoff Bower's will be presenting from Sydney via breeze to the user group.
Also, there will be JJ Allaire speaking via a pre-recorded breezo and will
be giving out special t-shirts for the event and finally running a quiz
where the winner will receive a copy of CFMX.

For more into go to http://www.cfcentral.com.au

Regards
Steve Onnis



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: RocketBoots Master Classes Next Month

2005-07-10 Thread Steve Onnis
No Melbourne?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Robin
Hilliard
Sent: Monday, July 11, 2005 1:49 PM
To: CFAussie Mailing List
Subject: [cfaussie] RocketBoots Master Classes Next Month


Hello,

We're excited to announce our first RocketBoots Master Class, showing
you how to leverage MVC frameworks such as Cairngorm and ARP in your
Flash Development.  RocketBoots will be sharing our real-world
experience developing multiple Flash and Flex applications using MVC
frameworks on the following dates:


Sydney 16th August
Wharf 7, Sydney Maritime Museum

Canberra 17th August
Crowne Plaza Hotel

Brisbane 18th August
Brisbane Convention and Exhibition Centre


Each Master Class is limited to twenty participants to allow one on one
interaction with the instructor.  The half-day session includes morning
tea and time to network with RocketBoots Partners and the other attendees.

Tickets are $220 per person.  Call Pam on 07 54507921(w), 0419 677151(m)
or email [EMAIL PROTECTED] to secure your place.  We should
probably also mention that to celebrate our first Master Class series
there will be a significant door prize at each location :-)

More details to follow shortly.

Robin Hilliard
http:/www.rocketboots.com.au

PS:  We will be touring other locations in the coming months - if you
have a particular location request _anywhere_ in Australia or New
Zealand, or are interested in another advanced Macromedia development
topic, let us know here: http://www.rocketboots.com.au/contact/

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] OT [Flash] : Flash Embed Size

2005-07-07 Thread Steve Onnis

Hey guys

I have a flash movie which is a sub menu and i want to change the embed
height on the fly depending on how many menu items are in it, but i dont
want to change the actual dimensions of the movie in it.  Is this possible?

Steve



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: CFMAIL / CFMAILPART HUUUUUGE BUG!

2005-07-06 Thread Steve Onnis
Grant

This is out of the LiveDocs

cfmail from = [EMAIL PROTECTED] To = [EMAIL PROTECTED] Subject = Which
version do you see?
   cfmailpart   type=text  wraptext=74
 You are reading this message as plain text, because your mail
reader
 does not handle HTML text.
   /cfmailpart
   cfmailpart   type=html
 h3HTML Mail Message/h3
 pYou are reading this message as strongHTML/strong./p
 pYour mail reader handles HTML text./p
   /cfmailpart
/cfmail

Following that example, i would take that as the indended use for it.  Going
by that example, the tags would produce 2 text parts to the email.

If i dont want a text version and i just want a HTML version then I have to
set the TYPE attribute in the tag which sorta defeats the purpose of the
cfmailpart tag wouldnt you think?

But what you said is correct. If i remove the text mailpart and just have
plain text and a html mailpart i dont get the exta part.

Steve



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of grant
Sent: Wednesday, July 06, 2005 4:15 PM
To: CFAussie Mailing List
Subject: [cfaussie] Re: CFMAIL / CFMAILPART HUGE BUG!


doesn't it take the contents of the cfmail tag as the body of the
email, and set up another bodysection based on cfmailpart?

this would explain why you're getting two bodies - one for the
cfmailpart, and one for the inside of the cfmail tag.

i don't think cfmailpart *replaces* the original body that is created
from the inside of cfmail tag.
G

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Can't seem to get rid of my evaluate

2005-07-06 Thread Steve Onnis
try something like this

table
tr
cfloop list=#columns# 
index=ctdcfoutput#c#/cfoutput/td/cfloop
/tr
cfloop query=queryName
tr
cfloop list=#columns# index=c
td#evaluate(c)#/td
or
td#queryName[c][currentRow]#/td
/cfloop
/cfloop
/tr
/table



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chad Renando
Sent: Wednesday, July 06, 2005 9:22 PM
To: CFAussie Mailing List
Subject: [cfaussie] Can't seem to get rid of my evaluate

I have a query with dynamically named columns.  As such, I need to
loop inside a loop, as so (omitting bunches of stuff, just get the
idea):

cfloop query=QueryValues
tr
  cfloop query=QueryColumns
   td#ReturnValueForColumn#/td
  /cfloop
 /tr
/cfloop

Now this doesn't really work due to the funky behaviour with CF
relating to not refreshing the data for the outer loop.  The results
from the above will get me the ReturnValueForColumn values repeated
for the first row of QueryValues.  So if QueryValues returns:
1, Bob | 2, Jane | 3, Joe,

I will get 1, Bob | 1, Bob | 1, Bob.

Now the way around this is to set the value of each
ReturnValueForColumn before the inner loop, like so:

cfloop query=QueryValues
 !--- Set Variable Here ---
 tr
  cfloop query=QueryColumns
   td#ReturnValueForColumn#/td
  /cfloop
 /tr
/cfloop

Here-in is where I am running into issues.  Before my inner loop, I
have tried setting the value of the variable in the inner loop these
two ways:

cfset variables.ReturnColumnName = QueryColumn 
variables.FormFieldAttributeID
cfset 
ReturnFormFieldValue#i#=qryGetFormFieldValue[variables.ReturnColumnName]

or 

cfset ReturnFormFieldValue#i# =
Evaluate(qryGetFormFieldValue.QueryColumn 
variables.FormFieldAttributeID)

Using method number 1, I get: 1, Bob | 1, Bob | 1, Bob

Using method number 2, I get: 1, Bob | 2, Jane | 3, Joe

What is it about method number 2 that causes the value to be set, but
method number 1 won't reset the value when it goes back through the
loop?

Chad
who thinks the dead possum in his ceiling just had bad gas

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: CFMAIL / CFMAILPART HUUUUUGE BUG!

2005-07-06 Thread Steve Onnis

With the following..

cfmail to=[EMAIL PROTECTED] from=[EMAIL PROTECTED] subject=subject line
cfmailpart type=text#textContent#/cfmailpart
/cfmail

You would think that CF would be smart enough to say Hey there is a
CFMAILPART tag inside me thats set to text, so i wont add another text mime
area to the email. Same goes with the HTML type aswell.

The above mail tag would then end up adding 2 seperate text mime areas.

Thats what my issue is here.  Is that wrong to expect?

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Sean
Corfield
Sent: Thursday, July 07, 2005 10:24 AM
To: CFAussie Mailing List
Subject: [cfaussie] Re: CFMAIL / CFMAILPART HUGE BUG!


On 7/6/05, Pat Branley [EMAIL PROTECTED] wrote:
 So the correct usage for a multi-part mail if i want to send a html
 mail, but want a text part as a backup would be:

 cfmail to=[EMAIL PROTECTED] from=[EMAIL PROTECTED] subject=subject
 line type=text
 cfmailpart type=text/html#htmlContent#/cfmailpart
 #textContent#
 /cfmail

 Is this right ?

Correct. type= is optional in cfmail since the default is text. You
could use just type=html in cfmailpart if you want to save
keystrokes.
--
Sean A Corfield -- http://corfield.org/
Team Fusebox -- http://fusebox.org/
Got Gmail? -- I have 50, yes 50, invites to give away!

If you're not annoying somebody, you're not really alive.
-- Margaret Atwood

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: [OT] DOM Viewer

2005-07-06 Thread Steve Onnis
Firefox has one built into the browser

very nice

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Martin
Gara
Sent: Thursday, July 07, 2005 12:11 PM
To: CFAussie Mailing List
Subject: [cfaussie] [OT] DOM Viewer


Anyone know of a viewer I can invoke client-side to see what's in the
current browser page document object.

Martin Gara
BEARCOM Pty Limited

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: [OT] DOM Viewer

2005-07-06 Thread Steve Onnis
anything that works in firefox works in IE which is why i use it

fireworks DOM is complient whre the IE DOM is not.

Are you looking for specific features of IE?

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Martin
Gara
Sent: Thursday, July 07, 2005 1:49 PM
To: CFAussie Mailing List
Subject: [cfaussie] RE: [OT] DOM Viewer


Thanks Steve, yes I know the FF browser has some neat developer features but
unfortunately I need to invoke a DOM viewer in IE (6) ;(

Sorry I should have mentioned that.

Martin Gara
BEARCOM Pty Limited

Message history (reversed chronlogically):

Steve Onnis wrote:
---
Firefox has one built into the browser
very nice

Martin Gara wrote:
---
Anyone know of a viewer I can invoke client-side to see what's in the
current browser page document object.

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] CFUG Melbourne CFMX Birthday Meeting

2005-07-05 Thread Steve Onnis

Ok peoples.  If your in Melbourne on the 16th of July, keep it free so you
can join us at VTR Consulting in South Melbourne at 6pm for the CFMX
Birthday Usergroup Meeting.

Geoff Bower's will be presenting from Sydney via breeze to the user group.
Also, there will be JJ Allaire speaking via a pre-recorded breezo and will
be giving out special t-shirts for the event and finally running a quiz
where the winner will receive a copy of CFMX.

Not to mention the PRE munchies and after drinks.

Come one, come all..

Regards
Steve Onnis



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] CFUG Melbourne CFMX Birthday Meeting : 13th of July

2005-07-05 Thread Steve Onnis

Ok peoples.  If your in Melbourne on the 13th of July, keep it free so you
can join us at VTR Consulting in South Melbourne at 6pm for the CFMX
Birthday Usergroup Meeting.

Geoff Bower's will be presenting from Sydney via breeze to the user group.
Also, there will be JJ Allaire speaking via a pre-recorded breezo and will
be giving out special t-shirts for the event and finally running a quiz
where the winner will receive a copy of CFMX.

Not to mention the PRE munchies and after drinks.

Come one, come all..

Regards
Steve Onnis


---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: CFUG Melbourne CFMX Birthday Meeting

2005-07-05 Thread Steve Onnis
bl

13th

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Aaron DC
Sent: Tuesday, July 05, 2005 6:32 PM
To: CFAussie Mailing List
Subject: [cfaussie] Re: CFUG Melbourne CFMX Birthday Meeting

Saturday the 16th July?

Aaron

Steve Onnis wrote:

Ok peoples.  If your in Melbourne on the 16th of July, keep it free so you
can join us at VTR Consulting in South Melbourne at 6pm for the CFMX
Birthday Usergroup Meeting.

Geoff Bower's will be presenting from Sydney via breeze to the user group.
Also, there will be JJ Allaire speaking via a pre-recorded breezo and will
be giving out special t-shirts for the event and finally running a quiz
where the winner will receive a copy of CFMX.

Not to mention the PRE munchies and after drinks.

Come one, come all..

Regards
Steve Onnis

  


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: OT: Oldest CF user here?

2005-07-05 Thread Steve Onnis
CFMX or just CFML??

hmmm

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Scott
Barnes
Sent: Wednesday, July 06, 2005 9:30 AM
To: CFAussie Mailing List
Subject: [cfaussie] OT: Oldest CF user here?


Been thinking about good ol CF's B'day (aww our wittle babey has grown so
much).

So much so, i wonder out of our little list, who's been using CFMX the
longest?

So, break out your tape measure folks as we need a ruling on this :)
(actually i am curious)

Mine would be 10 April 1997, i remember it well. It was a clear sunny
day, birds where singing, folk were dancing because it is infact the
100th day in the Gregorian Calendar. To my left was a co-worker whom i
know had worked on CF at a small company called WebRaven and to my
right was a model naked as the day she was born, eagerly awaiting her
photoshoot to commence (while the photographer was busy fumbling
around with camera lenses).

There i sat, looking at this rotating banner script wondering why on
earth someone thought it was a good idea to surround #pound# symbols
and what did it mean..was it a secret code for something else?
--
Regards,
Scott Barnes
http://www.mossyblog.com

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] CFMAIL / CFMAILPART HUUUUUGE BUG!

2005-07-05 Thread Steve Onnis

ok

Can someone else please test this for me so i know its not just me

If i create a CFMAIL email like this


cfmail to=[EMAIL PROTECTED]
from=[EMAIL PROTECTED]
subject=subject line
cfmailpart type=text/plainthis is a message/cfmailpart
/cfmail


would then create an email that looks like this

///
from:  [EMAIL PROTECTED]
to:  [EMAIL PROTECTED]
subject:  subject line
type:  text/plain; charset=UTF-8
X-Mailer:  ColdFusion MX Application Server
bodypart-start:  text/plain; charset=UTF-8
body:  this is a message
bodypart-end:  text/plain; charset=UTF-8
bodypart-start:  text/plain; charset=UTF-8
body:
body:
bodypart-end:  text/plain; charset=UTF-8
/


Now is it just me or is it creating 2 seperate text/plain sections?

whats with this?

from what i can gather this is the issue.

By default the CFMAIL type attribute is HTML.  If only 1 mime type is set in
the email like above, it will add another mime area in the email for what
ever the type attribute is set to.

So even if i was to change the type attribute to HTML and i send a text only
email using CFMAILPART, it will add its own html section to the bottom of
the email.

Why is this a problem?

Because some email clients use the last mime section of the email for
display, so if i send a text only email, then the recipient will see nothing
cause the last mime section is empty.

Is this a recorded bug?  If not is should be as it is a problem in both CFMX
and CF7.

Steve Onnis




---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Debugging

2005-07-04 Thread Steve Onnis
oh yeah

no it wont do that.  server setting superseed cfsetting values although the
degug IPs will override that

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Scott
Thornton
Sent: Monday, July 04, 2005 4:01 PM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Debugging


Hmm, doesn't work for me. Debugging is turned OFF on the server. I was
hoping it would override that flag.



 [EMAIL PROTECTED] 07/04/05 3:44 pm 
depends on which page you put it on. you can apply it to a page or to the
site

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Scott
Thornton
Sent: Monday, July 04, 2005 3:33 PM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Debugging


HI Steve,

Id be interested in knowing if this is site option, or per-page option?



 [EMAIL PROTECTED] 07/04/05 3:24 pm 
cfsetting showdebugoutput=yes

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Tom
MacKean
Sent: Monday, July 04, 2005 3:09 PM
To: CFAussie Mailing List
Subject: [cfaussie] Debugging


I have a couple of different sites running on the same coldfusion server
(6.1). Is there a way to have debugging working on some but not others?
E.g. to have debugging on for staging sites but not for live sites.

Tom MacKean


NOTICE: Medical and scientific information provided in print and
electronically by Sydney IVF might not be relevant to your own circumstances
and should always be discussed with your own doctor before you act on it.
This communication is confidential and may contain copyright or otherwise
protected information of Sydney IVF Limited or a third party. If you are not
the intended recipient of this communication please immediately let us know
by reply email or telephone us on +61 2 9221 5964, delete the communication
and destroy all copies.


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as:
[EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as:
[EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: Why minimum 3 years experience ?

2005-07-03 Thread Steve Onnis
whats a paper bag?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Chad
Renando
Sent: Monday, July 04, 2005 2:16 PM
To: CFAussie Mailing List
Subject: [cfaussie] Re: Why minimum 3 years experience ?


 True but probably only 1 in 10 people on CFjobs are actually CFaussie
 frequent posters,
 I'd rather pass them directly on to people I know (online or in person)
first.

So much for my chances then.  I'd recommend this guy Chad, but from
the questions he asks, he couldn't code his way out of a wet paper
bag. ;)

Chad
who discovered the downsides of working from home when he came back
from a weekend holiday to the aroma of a dead possum stuck somewhere
over his office

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Debugging

2005-07-03 Thread Steve Onnis
cfsetting showdebugoutput=yes

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Tom
MacKean
Sent: Monday, July 04, 2005 3:09 PM
To: CFAussie Mailing List
Subject: [cfaussie] Debugging


I have a couple of different sites running on the same coldfusion server
(6.1). Is there a way to have debugging working on some but not others?
E.g. to have debugging on for staging sites but not for live sites.

Tom MacKean


NOTICE: Medical and scientific information provided in print and
electronically by Sydney IVF might not be relevant to your own circumstances
and should always be discussed with your own doctor before you act on it.
This communication is confidential and may contain copyright or otherwise
protected information of Sydney IVF Limited or a third party. If you are not
the intended recipient of this communication please immediately let us know
by reply email or telephone us on +61 2 9221 5964, delete the communication
and destroy all copies.


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Debugging

2005-07-03 Thread Steve Onnis
depends on which page you put it on. you can apply it to a page or to the
site

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Scott
Thornton
Sent: Monday, July 04, 2005 3:33 PM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Debugging


HI Steve,

Id be interested in knowing if this is site option, or per-page option?



 [EMAIL PROTECTED] 07/04/05 3:24 pm 
cfsetting showdebugoutput=yes

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Tom
MacKean
Sent: Monday, July 04, 2005 3:09 PM
To: CFAussie Mailing List
Subject: [cfaussie] Debugging


I have a couple of different sites running on the same coldfusion server
(6.1). Is there a way to have debugging working on some but not others?
E.g. to have debugging on for staging sites but not for live sites.

Tom MacKean


NOTICE: Medical and scientific information provided in print and
electronically by Sydney IVF might not be relevant to your own circumstances
and should always be discussed with your own doctor before you act on it.
This communication is confidential and may contain copyright or otherwise
protected information of Sydney IVF Limited or a third party. If you are not
the intended recipient of this communication please immediately let us know
by reply email or telephone us on +61 2 9221 5964, delete the communication
and destroy all copies.


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as:
[EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: convert from asp

2005-06-29 Thread Steve Onnis



Response.Redirect is just like 
CFLOCATION
HTTP_PROTOCOL is either HTTP or HTTP 
(CGI.HTTP_PROTOCOL)
AT_SERVERis just a variable from 
somewhere
WEBSITE_ID is just a variable from 
somewhere
VERSIONis just a variable from 
somewhere
Server.URLEncodeis 
URLEncodedFormat()


I think CC is an 2 dimensional 
array

This looks like it just creates a query 
string


function hash_to_string(CC)var CC_string = "";var i = 0; 

for (i=0; i LTE 5; i = i + 1) {if ( CC[i][1] NEQ "") 
{CC_string = CC_string  CC[i][0]  "="  
URLEncodedFormat(CC[i][1] )  
"";}}return 
CC_string;}


Hope it helps

Regards
Steve Onnis


  -Original Message-From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]On Behalf Of Carl 
  VanderpalSent: Wednesday, June 29, 2005 3:42 PMTo: 
  CFAussie Mailing ListSubject: [cfaussie] convert from 
  asp
  HelloCFAussie,
  
  Just need to get the Cold Fusion equivalents for these ASP calls 
please:
  
  Response.Redirect (example below):
  
  Response.Redirect(HTTP_PROTOCOL"://"AT_SERVER"/"WEBSITE_ID"/track/visit/?CC_"VERSION"="Server.URLEncode(CC))
  
  and
  hash_to_string (example below)
  
  function hash_to_string(CC)
   dim CC_string
  
   for i = 0 to 5
if (CC(i,1)  "") then
 CC_string = CC_string  CC(i,0)  "="  
  Server.URLEncode( CC(i,1) )  ""
end if
   next
   hash_to_string = CC_string
  end function
  
  
  Thanks
  
  
  BestRegards,
  CarlVanderpal
  
  
  Postal:PoBox3462Dural,NSW2158
  Email:mailto:[EMAIL PROTECTED]
  FireFlyInternetPhone:80011777---You are currently 
  subscribed to cfaussie as: [EMAIL PROTECTED]To unsubscribe send a 
  blank email to [EMAIL PROTECTED] Aussie Macromedia 
  Developers: http://lists.daemon.com.au/ 
---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]

Aussie Macromedia Developers: http://lists.daemon.com.au/





[cfaussie] RE: convert from asp

2005-06-29 Thread Steve Onnis



Dam Barry


Dont forget the ";" at the line inside the 
IF. CF will error if its not t here. Not to mention the opening "{" 
for the function that we both missed...:P

I got plenty of egg left over from my face 
it you want some:P

I'll give it another go


cfscript
function hash_to_string(CC) {
 var CC_string = 
"";
 var i = 1; 
 
 for (i=1; i LTE 5; i = i 
+ 1) {
 
if ( CC[i][1] NEQ "") {
 
CC_string = listAppend(CC_string, 
"#CC[i][1]#=#URLEncodedFormat(CC[i][2])#", "");
 
}
 }
 return 
CC_string;
}
/cfscript


I have used listAppend() in mine here. 
I find it makes it a little easier to read.


But hey...what do you want for free 
hey!

Regards
Steve Onnis

  -Original Message-From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]On Behalf Of Barry 
  BeattieSent: Wednesday, June 29, 2005 4:04 PMTo: 
  CFAussie Mailing ListSubject: [cfaussie] RE: convert from 
  asp
  
  Argh! steve. I made a mistake and you got 
  it right( the CC[i][0] part - I forgot to convert this)
  
  but hang on - that's saying that the array 
  is zero based which in CF isn't true it's based on 1
  
  so 
  
  
  cfscript
  function hash_to_string(CC)
  
  var CC_string = "";
   for(i =1;i 
  LTE6; i=i+1){
if (CC[i][2]GT ""){
 CC_string = CC_string  CC[i][1] 
   "="  URLEncodedFormat( 
  CC[i][2] )  ""
  }
   return(CC_string);
  }
  
  /cfscript
  
  
  
  
  
-Original Message-From: 
[EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED]On Behalf Of Steve 
OnnisSent: Wednesday, 29 June 2005 4:01 PMTo: CFAussie 
Mailing ListSubject: [cfaussie] RE: convert from 
asp
Response.Redirect is just like 
CFLOCATION
HTTP_PROTOCOL is either HTTP or HTTP 
(CGI.HTTP_PROTOCOL)
AT_SERVERis just a variable from 
somewhere
WEBSITE_ID is just a variable from 
somewhere
VERSIONis just a variable from 
somewhere
Server.URLEncodeis 
URLEncodedFormat()


I think CC is an 2 dimensional 
array

This looks like it just creates a query 
string


function hash_to_string(CC)var CC_string = "";var i = 
0; 
for (i=0; i LTE 5; i = i + 1) {if ( CC[i][1] NEQ 
"") {CC_string = CC_string  CC[i][0]  "=" 
 URLEncodedFormat(CC[i][1] )  
"";}}return 
CC_string;}


Hope it helps

Regards
Steve Onnis


  -Original Message-From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]On Behalf Of Carl 
  VanderpalSent: Wednesday, June 29, 2005 3:42 PMTo: 
  CFAussie Mailing ListSubject: [cfaussie] convert from 
  asp
  HelloCFAussie,
  
  Just need to get the Cold Fusion equivalents for these ASP calls 
  please:
  
  Response.Redirect (example below):
  
  Response.Redirect(HTTP_PROTOCOL"://"AT_SERVER"/"WEBSITE_ID"/track/visit/?CC_"VERSION"="Server.URLEncode(CC))
  
  and
  hash_to_string (example below)
  
  function hash_to_string(CC)
   dim CC_string
  
   for i = 0 to 5
if (CC(i,1)  "") then
 CC_string = CC_string  CC(i,0)  "=" 
   Server.URLEncode( CC(i,1) )  ""
end if
   next
   hash_to_string = CC_string
  end function
  
  
  Thanks
  
  
  BestRegards,
  CarlVanderpal
  
  
  Postal:PoBox3462Dural,NSW2158
  Email:mailto:[EMAIL PROTECTED]
  FireFlyInternetPhone:80011777---You are 
  currently subscribed to cfaussie as: [EMAIL PROTECTED]To 
  unsubscribe send a blank email to [EMAIL PROTECTED] 
  Aussie Macromedia Developers: http://lists.daemon.com.au/ 
---You are currently subscribed to cfaussie as: 
[EMAIL PROTECTED]To unsubscribe send a blank email to 
[EMAIL PROTECTED] Aussie Macromedia Developers: 
http://lists.daemon.com.au/ ---You are currently subscribed 
  to cfaussie as: [EMAIL PROTECTED]To unsubscribe send a blank email 
  to [EMAIL PROTECTED] Aussie Macromedia Developers: 
  http://lists.daemon.com.au/ 
---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]

Aussie Macromedia Developers: http://lists.daemon.com.au/





[cfaussie] RE: convert from asp

2005-06-29 Thread Steve Onnis
hahahaha

EGGS FOR EVERYONE :P

anyway, never one to back down from a challenge.


Now, CF doesnt let you set a PATH value for the cookie using the rest of
the attributes, so it has been omitted.  Also, you cant use CFLOCATION
cause the cookies wont get stored, hence the JavaScript redirect

///
cffunction name=bake_cookie output=No
cfcookie name=CC_#VERSION# value=#arguments[1]# 
expires=#dateadd('', COOKIE_EXPIRES, NOW())#
/cffunction

cfscript
// Configuration Settings
VERSION = 2.0;
WEBSITE_ID  = 1234;
AT_SERVER   = www.mysite.com;
COOKIE_EXPIRES  = 3;


HTTP_PROTOCOL = http;

if ( CGI.HTTPS EQ ON ) {
HTTP_PROTOCOL = https;
}

//SUBROUTINES

// Create a CC from scratch
function new_cc () {
var CC = arrayNew(2);

CC[1][1] = QUERY_STRING;
CC[2][1] = COOKIE_EXPIRES;
CC[3][1] = HTTP_REFERER;
CC[4][1] = SCRIPT_NAME;
CC[5][1] = SERVER_NAME;
CC[6][1] = PATH_INFO;

CC[1][2] = QUERY_STRING;
CC[2][2] = COOKIE_EXPIRES;

for (i = 3; i LTE 6; i = i + 1) {
CC[i][2] = CGI[CC[i][1]];
}
  
  return hash_to_string(CC);
  }
// receives a multi-dim array
// returns the CC string

function hash_to_string(CC) {
var CC_string = ;
var i = 1; 

for (i=1; i LTE 5; i = i + 1) {
if ( CC[i][1] NEQ ) {
CC_string = listAppend(CC_string,
#CC[i][1]#=#URLEncodedFormat(CC[i][2])#,  amp;);
}
}
return CC_string;
}   


// Create a new client cookie
CC = new_cc();

// Store the cookie on client's machine
bake_cookie(CC);
/cfscript

cfoutput
script
location.href =
#HTTP_PROTOCOL#://#AT_SERVER#/#WEBSITE_ID#/track/visit/?CC_#VERSION#=#URLEncodedFormat(CC)#;

/script
/cfoutput
///


The things i do...*sigh

Regards
Steve Onnis


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Barry
Beattie
Sent: Wednesday, June 29, 2005 4:40 PM
To: CFAussie Mailing List
Subject: [cfaussie] RE: convert from asp


 I got plenty of egg left over from my face it you want some:P

thanx, Steve, but I've usually got enough to put SunnyQueen out of
production...

and here was I thinking all that vbscript skill was redundant - pity you
can't delete useless memory like Johnny Mnemonic

Carl, I've got tons of ASP apps you could have a go at converting by
yourself to brush up your translation skills...ah, but I see you have your
own to do - Have fun!

cheers
barry.b
Steve Onnis

---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: convert from asp

2005-06-29 Thread Steve Onnis
Guys?

Last I saw Barry piked it

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Carl
Vanderpal
Sent: Wednesday, June 29, 2005 5:24 PM
To: CFAussie Mailing List
Subject: [cfaussie] RE: convert from asp


I'll add the bacon to your eggs and we'll have one big party..

And I won't forget the coffee either..!!

Thanks Guys this has saved me...

Carl

On 6/29/05, Steve Onnis [EMAIL PROTECTED] wrote:
 hahahaha

 EGGS FOR EVERYONE :P

 anyway, never one to back down from a challenge.


 Now, CF doesnt let you set a PATH value for the cookie using the rest of
 the attributes, so it has been omitted.  Also, you cant use CFLOCATION
 cause the cookies wont get stored, hence the JavaScript redirect

 ///
 cffunction name=bake_cookie output=No
 cfcookie name=CC_#VERSION# value=#arguments[1]#
expires=#dateadd('', COOKIE_EXPIRES, NOW())#
 /cffunction

 cfscript
 // Configuration Settings
 VERSION = 2.0;
 WEBSITE_ID  = 1234;
 AT_SERVER   = www.mysite.com;
 COOKIE_EXPIRES  = 3;


 HTTP_PROTOCOL = http;

 if ( CGI.HTTPS EQ ON ) {
 HTTP_PROTOCOL = https;
 }

 //SUBROUTINES

 // Create a CC from scratch
 function new_cc () {
 var CC = arrayNew(2);

 CC[1][1] = QUERY_STRING;
 CC[2][1] = COOKIE_EXPIRES;
 CC[3][1] = HTTP_REFERER;
 CC[4][1] = SCRIPT_NAME;
 CC[5][1] = SERVER_NAME;
 CC[6][1] = PATH_INFO;

 CC[1][2] = QUERY_STRING;
 CC[2][2] = COOKIE_EXPIRES;

 for (i = 3; i LTE 6; i = i + 1) {
 CC[i][2] = CGI[CC[i][1]];
 }

   return hash_to_string(CC);
   }
 // receives a multi-dim array
 // returns the CC string

 function hash_to_string(CC) {
 var CC_string = ;
 var i = 1;

 for (i=1; i LTE 5; i = i + 1) {
 if ( CC[i][1] NEQ ) {
 CC_string = listAppend(CC_string,
 #CC[i][1]#=#URLEncodedFormat(CC[i][2])#,  amp;);
 }
 }
 return CC_string;
 }


 // Create a new client cookie
 CC = new_cc();

 // Store the cookie on client's machine
 bake_cookie(CC);
 /cfscript

 cfoutput
 script
 location.href =

#HTTP_PROTOCOL#://#AT_SERVER#/#WEBSITE_ID#/track/visit/?CC_#VERSION#=#URLEn
codedFormat(CC)#;

 /script
 /cfoutput
 ///


 The things i do...*sigh

 Regards
 Steve Onnis


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Barry
 Beattie
 Sent: Wednesday, June 29, 2005 4:40 PM
 To: CFAussie Mailing List
 Subject: [cfaussie] RE: convert from asp


  I got plenty of egg left over from my face it you want some:P

 thanx, Steve, but I've usually got enough to put SunnyQueen out of
 production...

 and here was I thinking all that vbscript skill was redundant - pity you
 can't delete useless memory like Johnny Mnemonic

 Carl, I've got tons of ASP apps you could have a go at converting by
 yourself to brush up your translation skills...ah, but I see you have your
 own to do - Have fun!

 cheers
 barry.b
 Steve Onnis

 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
[EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/



--

Postal: Po Box 3462 Dural, NSW 2158
Email: mailto:[EMAIL PROTECTED]
FireFly Internet Phone: 80011777

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: convert from asp

2005-06-29 Thread Steve Onnis
who is the ASP-meister?

your the one picking out my mistakes:P

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Barry
Beattie
Sent: Wednesday, June 29, 2005 6:11 PM
To: CFAussie Mailing List
Subject: [cfaussie] RE: convert from asp



nah, I just couldn't keep up with the ASP-meister...A man's gotta know his
limitations

I realised the bacon would be mighty stiff and cold by the time it went from
Melb to Bris...

cheers
barry.b



 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Steve
 Onnis
 Sent: Wednesday, 29 June 2005 5:31 PM
 To: CFAussie Mailing List
 Subject: [cfaussie] RE: convert from asp


 Guys?

 Last I saw Barry piked it

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Carl
 Vanderpal
 Sent: Wednesday, June 29, 2005 5:24 PM
 To: CFAussie Mailing List
 Subject: [cfaussie] RE: convert from asp


 I'll add the bacon to your eggs and we'll have one big party..

 And I won't forget the coffee either..!!

 Thanks Guys this has saved me...

 Carl

 On 6/29/05, Steve Onnis [EMAIL PROTECTED] wrote:
  hahahaha
 
  EGGS FOR EVERYONE :P
 
  anyway, never one to back down from a challenge.
 
 
  Now, CF doesnt let you set a PATH value for the cookie
 using the rest of
  the attributes, so it has been omitted.  Also, you cant use
 CFLOCATION
  cause the cookies wont get stored, hence the JavaScript redirect
 
  ///
  cffunction name=bake_cookie output=No
  cfcookie name=CC_#VERSION# value=#arguments[1]#
 expires=#dateadd('', COOKIE_EXPIRES, NOW())#
  /cffunction
 
  cfscript
  // Configuration Settings
  VERSION = 2.0;
  WEBSITE_ID  = 1234;
  AT_SERVER   = www.mysite.com;
  COOKIE_EXPIRES  = 3;
 
 
  HTTP_PROTOCOL = http;
 
  if ( CGI.HTTPS EQ ON ) {
  HTTP_PROTOCOL = https;
  }
 
  //SUBROUTINES
 
  // Create a CC from scratch
  function new_cc () {
  var CC = arrayNew(2);
 
  CC[1][1] = QUERY_STRING;
  CC[2][1] = COOKIE_EXPIRES;
  CC[3][1] = HTTP_REFERER;
  CC[4][1] = SCRIPT_NAME;
  CC[5][1] = SERVER_NAME;
  CC[6][1] = PATH_INFO;
 
  CC[1][2] = QUERY_STRING;
  CC[2][2] = COOKIE_EXPIRES;
 
  for (i = 3; i LTE 6; i = i + 1) {
  CC[i][2] = CGI[CC[i][1]];
  }
 
return hash_to_string(CC);
}
  // receives a multi-dim array
  // returns the CC string
 
  function hash_to_string(CC) {
  var CC_string = ;
  var i = 1;
 
  for (i=1; i LTE 5; i = i + 1) {
  if ( CC[i][1] NEQ ) {
  CC_string = listAppend(CC_string,
  #CC[i][1]#=#URLEncodedFormat(CC[i][2])#,  amp;);
  }
  }
  return CC_string;
  }
 
 
  // Create a new client cookie
  CC = new_cc();
 
  // Store the cookie on client's machine
  bake_cookie(CC);
  /cfscript
 
  cfoutput
  script
  location.href =
 
 #HTTP_PROTOCOL#://#AT_SERVER#/#WEBSITE_ID#/track/visit/?CC_#V
 ERSION#=#URLEn
 codedFormat(CC)#;
 
  /script
  /cfoutput
  ///
 
 
  The things i do...*sigh
 
  Regards
  Steve Onnis
 
 
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] Behalf Of Barry
  Beattie
  Sent: Wednesday, June 29, 2005 4:40 PM
  To: CFAussie Mailing List
  Subject: [cfaussie] RE: convert from asp
 
 
   I got plenty of egg left over from my face it you want some:P
 
  thanx, Steve, but I've usually got enough to put SunnyQueen out of
  production...
 
  and here was I thinking all that vbscript skill was
 redundant - pity you
  can't delete useless memory like Johnny Mnemonic
 
  Carl, I've got tons of ASP apps you could have a go at converting by
  yourself to brush up your translation skills...ah, but I
 see you have your
  own to do - Have fun!
 
  cheers
  barry.b
  Steve Onnis
 
  ---
  You are currently subscribed to cfaussie as:
 [EMAIL PROTECTED]
  To unsubscribe send a blank email to
 [EMAIL PROTECTED]
  Aussie Macromedia Developers: http://lists.daemon.com.au/
 


 --
 
 Postal: Po Box 3462 Dural, NSW 2158
 Email: mailto:[EMAIL PROTECTED]
 FireFly Internet Phone: 80011777

 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
 [EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/



 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
 [EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au

[cfaussie] RE: Catching Errors Using CFCATCH around CFHTTP

2005-06-29 Thread Steve Onnis
maybe add the throwonerror attribute

just cause CF errors on the page your calling, doesnt mean its not there.
CFHTTP just cares if its there or not, not if its erroring

and alsowhats

CFFILE action=Append
blah blah blah
/cfifle

all about?

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Scott
Thornton
Sent: Thursday, June 30, 2005 10:27 AM
To: CFAussie Mailing List
Subject: [cfaussie] Catching Errors Using CFCATCH around CFHTTP


Hi,

I am calling a page :

CFTRY

cfhttp
 url = SOMEPAGE.CFM?urlvar=1
 method = get
/cfhttp

CFCATCH TYPE=ANY

CFFILE action=Append
blah blah blah
/cfifle

/CFCATCH


/CFTRY

and have deliberately changed a query so that it would cause an error on
somepage.cfm.

The problem is, there is no error being caught. Is what I am trying to do
possible???

Secondly, if anyone knows a better method than cfhttp for calling ( kinda
like including) other cf pages that use URL var, Id like to hear it.

Scott Thornton, Programmer
Application Development
Information Services and Telecommunications
Hunter-New England Area Health Service
Phone  RNH +61 2 49236078
Fax   +61 2 49236076

[EMAIL PROTECTED]


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: Catching Errors Using CFCATCH around CFHTTP

2005-06-29 Thread Steve Onnis
I mean wrapping content within CFFILE tags

Not expecting that to work are you?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Scott
Thornton
Sent: Thursday, June 30, 2005 11:08 AM
To: CFAussie Mailing List
Subject: [cfaussie] RE: Catching Errors Using CFCATCH around CFHTTP


Hi,

and alsowhats

CFFILE action=Append
blah blah blah
/cfifle

I want to put the erorr into a log file.

I have thought about using cfhttp.filecontent, but it seems to be empty if
there was an error, instead of including the html erorr page. damn.



 [EMAIL PROTECTED] 06/30/05 10:57 am 
maybe add the throwonerror attribute

just cause CF errors on the page your calling, doesnt mean its not there.
CFHTTP just cares if its there or not, not if its erroring

and alsowhats

CFFILE action=Append
blah blah blah
/cfifle

all about?

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Scott
Thornton
Sent: Thursday, June 30, 2005 10:27 AM
To: CFAussie Mailing List
Subject: [cfaussie] Catching Errors Using CFCATCH around CFHTTP


Hi,

I am calling a page :

CFTRY

cfhttp
 url = SOMEPAGE.CFM?urlvar=1
 method = get
/cfhttp

CFCATCH TYPE=ANY

CFFILE action=Append
blah blah blah
/cfifle

/CFCATCH


/CFTRY

and have deliberately changed a query so that it would cause an error on
somepage.cfm.

The problem is, there is no error being caught. Is what I am trying to do
possible???

Secondly, if anyone knows a better method than cfhttp for calling ( kinda
like including) other cf pages that use URL var, Id like to hear it.

Scott Thornton, Programmer
Application Development
Information Services and Telecommunications
Hunter-New England Area Health Service
Phone  RNH +61 2 49236078
Fax   +61 2 49236076

[EMAIL PROTECTED]


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as:
[EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] RE: ServiceFactory

2005-06-29 Thread Steve Onnis



Arrr 
no. Not from MM anyway. I am sure if you trawl the net you will find some blobs 
and stuff around. Remember they are undocumented for a reason...they are 
not supported

Steve

  -Original Message-From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]On Behalf Of Shane 
  FarmerSent: Thursday, June 30, 2005 2:47 PMTo: CFAussie 
  Mailing ListSubject: [cfaussie] 
  ServiceFactoryHi all,Is there anywhere to get 
  usefull documentation on the ServiceFactory classes? Just looking for 
  documentation on methods and structures in the classes instead of cfdumping 
  all of the structures to find what I'm after.ThanksShane--- 
  You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To 
  unsubscribe send a blank email to [EMAIL PROTECTED] 
  Aussie Macromedia Developers: 
http://lists.daemon.com.au/
---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]

Aussie Macromedia Developers: http://lists.daemon.com.au/





[cfaussie] Re: Strange request for a SQL tool

2005-06-28 Thread Steve Onnis
Easy way?

And yes, i have had problems also doing it with DTS

Easiest way I have found is back the database up and restore it on the new
server

or

copy the LDF and MDF files and transfer them to the new server, put them in
the DATA directory of the new SQL server and use the ATTACH method of
adding the database into the SQL server

If you have foreign keys in your tables and you dont maintain the primary
keys, the copying of data will fail.


If your on a network, the ATTACH method will probably work well when moving
from staging to production aswell cause you can run a script to detach the
old database, if its there, copy the new database across and re attach it.

If you are going to use DTS, then make sure you deselect the Copy object
level permissions and copy logins options when your setting it up.  If
the permissions are not exactly the same then its going to fail.

Regards
Steve Onnis

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Taco Fleur
Sent: Wednesday, June 29, 2005 7:29 AM
To: CFAussie Mailing List
Subject: [cfaussie] Re: Strange request for a SQL tool


Uuuh, DTS copies them for you one at a time.
I'm telling you DTS will do the trick but if you are not willing to have a
look at it
and investigate then go ahead and waste your time doing it manually.

 Taco,

 To copy data from one table to another one at a time is not an option, I
 require something that will automate this for me. If it was one or 2
tables
 I wouldn't care and do the damn thing manually.

 I need a tool that will copy the data to another database, not copy the ID
 field but if need be change the ID field that is other tables use as a
 relationship.

 And yes that is where the constraints come in, this has bee setup to do
this
 for me. But I need to be able to import this data into the new database
 renumber the identities and the constraint (via diagrams) should do the
work
 of making the other changes for me.

 Regards
 Andrew Scott
 Analyst Programmer

 CMS Transport Systems
 Level 2/33 Bank Street
 South Melbourne, Victoria, 3205

 Phone: 03 9699 7988  -  Fax: 03 9699 7976

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Taco Fleur
 Sent: Tuesday, 28 June 2005 4:30 PM
 To: CFAussie Mailing List
 Subject: [cfaussie] Re: Strange request for a SQL tool

 You can also disable check constraints with DTS (I believe).
 If not, then you just need to make sure you run the export in the right
 order, i.e.
 the tables with the foreign relationships first.
 example;

 Person
 User
 Email

 First insert the Person because the User table relies on a record being
 present
 in the Person table etc. etc.

 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to leave-cfaussie-
[EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/




Taco Fleur - E-commerce Development Manager
Shelco Searches  Services
An Authorised ASIC Information Broker
www.shelco.com.au
Ph: + 61 7 3236 2605



---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


[cfaussie] Re: Strange request for a SQL tool

2005-06-28 Thread Steve Onnis
Ill try again
--
Easy way?

And yes, i have had problems also doing it with DTS

Easiest way I have found is back the database up and restore it on the new
server

or

copy the LDF and MDF files and transfer them to the new server, put them in
the DATA directory of the new SQL server and use the ATTACH method of
adding the database into the SQL server

If you have foreign keys in your tables and you dont maintain the primary
keys, the copying of data will fail.


If your on a network, the ATTACH method will probably work well when moving
from staging to production aswell cause you can run a script to detach the
old database, if its there, copy the new database across and re attach it.

If you are going to use DTS, then make sure you deselect the Copy object
level permissions and copy logins options when your setting it up.  If
the permissions are not exactly the same then its going to fail.

Regards
Steve Onnis






-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Chad
Renando
Sent: Wednesday, June 29, 2005 1:52 PM
To: CFAussie Mailing List
Subject: [cfaussie] Re: Strange request for a SQL tool


2 Gig limit, and I believe I had a few hundred thousand records in some
tables.

Besides, it didn't sound like either limitation would apply in Mr.
Scott's case.

Chad
who feels official calling guys Mr.

On 6/29/05, M@ Bourke [EMAIL PROTECTED] wrote:
 One way I did it was export everything, combine it up in MS Access
 (only 'cause I'm familiar with it and it's easy to play with the
 Autonumbers), create a datasource from the new .mdb and then manually
 insert the Access data into SQL.

 I thought access has something like a 20,000 row limit per table ?
 am I correct or incorrect on this ?

 M@
 Who has no qoute for this message.

 ---
 You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to
[EMAIL PROTECTED]
 Aussie Macromedia Developers: http://lists.daemon.com.au/


---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/



---
You are currently subscribed to cfaussie as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/


  1   2   3   4   5   6   7   8   9   10   >