[cfaussie] AXIS Error

2006-06-18 Thread Taco Fleur
I have named a directory services and seemed to be getting an AXIS error for every page in that directory, took me a while to figure out it was the directory name, as soon as I renamed it to service all was fine. Since when have directory names become reserved?

Anything I can do to overcome this?

thanks.-- Taco Fleur - http://www.pacificfox.com.au Web Design, Web development, Graphic Design and Complete Internet Solutionsan industry leader with commercial IT experience since 1994 … 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] JS Reg Expression

2006-06-18 Thread Andrew Scott








Can anyone tell me what I did wrong with
this JS reg _expression_?



Test = string.replace('/?\w+\s+[^]META*','');









Senior Coldfusion Developer

Aegeon Pty. Ltd.

www.aegeon.com.au

Phone:+613 8676 4223

Mobile: 0404 998 273








--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---






[cfaussie] Re: JS Reg Expression

2006-06-18 Thread Steve Onnis



and 
maybe best to use the non case sensitive and global extensions as 
well

Test = 
string.replace(//?\w+\s+[^]META*/ig,''); 


  -Original Message-From: cfaussie@googlegroups.com 
  [mailto:[EMAIL PROTECTED]On Behalf Of Blair 
  McKenzieSent: Monday, June 19, 2006 10:40 AMTo: 
  cfaussie@googlegroups.comSubject: [cfaussie] Re: JS Reg 
  _expression_You define regex strings with //, not '':
  Test = 
  string.replace(//?\w+\s+[^]META*/,''); 
  Blair
  On 6/19/06, Andrew 
  Scott [EMAIL PROTECTED] 
  wrote: 
  



Can anyone tell me 
what I did wrong with this JS reg _expression_?

Test = 
string.replace('/?\w+\s+[^]META*','');




Senior Coldfusion 
Developer
Aegeon Pty. 
Ltd.
www.aegeon.com.au 

Phone:+613 
8676 4223
Mobile : 0404 998 
273

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: JS Reg Expression

2006-06-18 Thread Andrew Scott








Ok, call me stupid but it produces a JS
illegal character in firefox, so thats why I placed the 
around the _expression_?









Senior Coldfusion Developer

Aegeon Pty. Ltd.

www.aegeon.com.au

Phone:+613 8676 4223

Mobile: 0404 998 273








--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---






[cfaussie] inserting carage returns

2006-06-18 Thread cfgroupie

Hey,

I'm having some issues starting this morning. I want to simply put a
carage return between two variables. For somereason i'm thick today.

cfset crlf = #chr(10)#  #chr(13)#
cfset newLine = '#GetAllDetails.HomeAddress1# #crlf#
#GetAllDetails.HomeAddress2#'

what the?

J


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: JS Reg Expression

2006-06-18 Thread Steve Onnis



what 
are you trying to do with the _expression_? remove the META 
tags?

  -Original Message-From: cfaussie@googlegroups.com 
  [mailto:[EMAIL PROTECTED]On Behalf Of Andrew 
  ScottSent: Monday, June 19, 2006 11:03 AMTo: 
  cfaussie@googlegroups.comSubject: [cfaussie] Re: JS Reg 
  _expression_
  
  Ok, call me stupid 
  but it produces a JS illegal character in firefox, so that’s why I placed the 
  ‘’ around the _expression_?
  
  
  
  
  Senior Coldfusion 
  Developer
  Aegeon Pty. 
  Ltd.
  www.aegeon.com.au
  Phone:+613 
  8676 4223
  Mobile: 0404 998 
  273
  
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: JS Reg Expression

2006-06-18 Thread Andrew Scott








Steve,



Thank you very much, I knew I was close
but wasnt sure what I was doing wrong as my reg expressions arent
crash hotJ





Senior Coldfusion Developer

Aegeon Pty. Ltd.

www.aegeon.com.au

Phone:+613 8676 4223

Mobile: 0404 998 273













From:
cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf Of Steve Onnis
Sent: Monday, 19 June 2006 11:37
AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: JS Reg
_expression_







textarea id=bla
rows=4 cols=40/textarea
script
string = sdfsg sdgf sdgf SD gf sdgf span
sdfsdfsdf/span META
meta sdfg fsdfg sdfg/meta asfasdf asdf asdf;
Test = string.replace(/(\/?META[^]*)/ig,''); 
document.getElementById(bla).value = Test;
/script











remember





/g = global replace





/i is non case sensitive





/gi is both together











() to group strings together and [] to
define a character class











that should work











Steve





-Original Message-
From: cfaussie@googlegroups.com
[mailto:cfaussie@googlegroups.com]On Behalf Of Andrew Scott
Sent: Monday, June 19, 2006 11:25
AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: JS Reg
_expression_

Yes,



Because I have a DevNet serial here and
when returning data via Ajax CF places the meta tag in the string and
JS craps out with this info in the stringL









Senior Coldfusion Developer

Aegeon Pty. Ltd.

www.aegeon.com.au

Phone:+613 8676 4223

Mobile: 0404 998 273













--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---






[cfaussie] Re: inserting carage returns

2006-06-18 Thread Chris Velevitch

Doesn't the browser ignore carriage return and line feed characters?
Woudn't the break tag be better?


Chris
-- 
Chris Velevitch
Manager - Sydney Flash Platform Developers Group
www.flashdev.org.au

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: inserting carage returns

2006-06-18 Thread cfgroupie

Well nope it didn't, see its being inserted into a stored procedure.
but it needs to have the carriage return before it insertscan't be
html either.

j.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: inserting carage returns

2006-06-18 Thread cfgroupie

Nope got itsorry its wasn't showing correctly on the webpage but
was working correctly in the databasemy bad...i'm going home.

thanks again...!!!


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: inserting carage returns

2006-06-18 Thread Ryan Sabir


In what way does it fail? Are you sure its not something else causing the 
problem?

Have you tried outputting the variable with PRE tags around it?
 

 -Original Message-
 From: cfaussie@googlegroups.com 
 [mailto:[EMAIL PROTECTED] On Behalf Of cfgroupie
 Sent: Monday, 19 June 2006 12:01 PM
 To: cfaussie
 Subject: [cfaussie] Re: inserting carage returns
 
 
 Well nope it didn't, see its being inserted into a stored procedure.
 but it needs to have the carriage return before it 
 insertscan't be html either.
 
 j.
 
 
  


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: inserting carage returns

2006-06-18 Thread Chris Velevitch

You've lost me here. Are trying to programmatically define a stored
procedure or you're trying to write a stored procedure (in cf) or
you're trying to call a stored procedure?


Chris
-- 
Chris Velevitch
Manager - Sydney Flash Platform Developers Group
www.flashdev.org.au

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Announcement: Australian Flex Developer Derby!

2006-06-18 Thread Darren Tracey

This message was sent by Ed Sullivan from Adobe.
-
Hello Folks,

Adobe listened to your feedback regarding being excluded from the NA
Flex Developer Derby, and Clare Gillespie did some fantastic work in
getting a local version of the contest up and running for the user
communities of Australia!

I am pleased to announce The Adobe  Builder AU Flex Developer Derby:
http://www.builderau.com.au/comps/adobe-flex-derby/.  Please help
spread the word by posting to your sites, blogs and letting your
memberships know about the contest.

And I fully expect at least one of you to take home a prize!!

The Adobe Sydney office is seriously committed to the local community
and hopefully the development of this contest goes a long way towards
demonstrating that.

Now let's see what you can do with Flex Beta3!!!

Thank you!!

Ed

Eligibility:
This contest is available to residents in Australia only, and residents
of jurisdictions or regions prohibiting such promotions should consider
this program void. The Labs Showcase Gallery is open to residents of
all countries and we welcome your submissions.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---