Re: Spam:*******, Witango-Talk: Force user back to top of page

2008-02-07 Thread Ben Johansen

try this in body tag

onload="self.moveTo(0,0);"

Ben

On Feb 7, 2008, at 3:07 PM, Dan Stein wrote:

Does anyone know anyway to force the browser to the top of the page  
on load so if someone is in the checkout and hits update cart they  
get forced back to the top of the page so they can be sure to see  
how it effects shipping etc.

--
--
Dan Stein
FileMaker 7 Certified Developer
Digital Software Solutions
799 Evergreen Circle
Telford PA 18969
Land: 215-799-0192
Cell: 610-256-2843
Fax 215-799-0192 ( Call 1st)
FMP, WiTango, EDI,SQL 2000, MySQL, CWP
[EMAIL PROTECTED]
www.dss-db.com


"It is perfectly safe to stand nowhere."
  


TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf




TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf

Re: Witango-Talk: Force user back to top of page

2008-02-07 Thread Jason Schulz
Put a small javascript at the end of the page that calls an anchor at  
the top of the page.


J.

On 08/02/2008, at 10:07 AM, Dan Stein wrote:

Does anyone know anyway to force the browser to the top of the page  
on load so if someone is in the checkout and hits update cart they  
get forced back to the top of the page so they can be sure to see  
how it effects shipping etc.




--
This message has been scanned for viruses and
dangerous content by ESVA, and is
believed to be clean.



TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf

Witango-Talk: Force user back to top of page

2008-02-07 Thread Dan Stein
Does anyone know anyway to force the browser to the top of the page on load
so if someone is in the checkout and hits update cart they get forced back
to the top of the page so they can be sure to see how it effects shipping
etc.
-- 
-- 
Dan Stein
FileMaker 7 Certified Developer
Digital Software Solutions
799 Evergreen Circle
Telford PA 18969
Land: 215-799-0192
Cell: 610-256-2843
Fax 215-799-0192 ( Call 1st)
FMP, WiTango, EDI,SQL 2000, MySQL, CWP
[EMAIL PROTECTED]
www.dss-db.com


"It is perfectly safe to stand nowhere."



TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf

Re: Spam:*****, RE: Witango-Talk: Regex expression

2008-02-07 Thread Ben Johansen
the problem with this one is it doesn't distinguish between words  
wrapped in : and cases where multiple instance of :word:


let me explain

haystack: I do not want Title: but I do want :Title: and :The_title: I  
don't want :important

pattern: .*:\([^:]*\):.*
this one will pick out
": but I do want :"
which is a false positive.

Ben



On Feb 7, 2008, at 11:41 AM, Jesse Parker wrote:


My vote:

.*:\([^:]*\):.*

Anything including null, a colon, any number of things that aren't a  
colon (expr 1), a colon, anything including null.

-Original Message-
From: Ben Johansen [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 07, 2008 2:05 PM
To: witango-talk@witango.com
Subject: Re: Spam:**, Witango-Talk: Regex expression

try this,

/[ ][:]([a-zA-Z0-9_]+)[:][ ]/

Ben

On Feb 7, 2008, at 8:59 AM, Wolf, Gene wrote:

   OK, I am pulling my hair out and I figure some of you have had  
quite a bit more experience with this than I have. Here's what I'm  
trying to get the regex expression in Witango to do:


   I want to process all records with a memo field  
containing :anything here:


   Now, I'm selecting records and processing an array applying the  
regex expression to the appropriate field. I'm using the following  
command:


   <@REGEX EXPR=":{1,}[.]+{1,}:{1,}" STR=.. (you get the idea)

  This expression is accepting anything that has at least one : in  
it. I really want the field selected if it two : in it. So for  
example I do not want Title: but I do want :Title: I don't  
want :important


But I do want :important:

   What am I doing wrong in the above code?


Gene Wolf
Supervisor, Business Systems
DRS Sensors & Targeting Systems-Optronics
2330 Commerce Park Drive NE
Palm Bay, Florida 32905
Phone: 321-309-0685
   321-309-0202 (fax)

Dictionary.com Word of the Day
http://dictionary.reference.com/wordoftheday/

This e-mail, including any attached files, may contain confidential  
and privileged information for the sole use of the intended  
recipient. Any review, use, distribution, or disclosure by others  
is strictly prohibited. If you are not the intended recipient (or  
authorized to receive information for the intended recipient),  
please contact the sender by reply e-mail and delete all copies of  
this message.


"This (document/presentation) may contain technical data as defined  
in the International Traffic In Arms Regulations (ITAR) 22 CFR  
120.10. Export of this material is restricted by the Arms Export  
Control Act (22 U.S.C. 2751 et seq.) and may not be exported to  
foreign persons without prior written approval from the U.S.  
Department of State."



TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf



TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf

TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf




TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf

RE: Witango-Talk: Regex expression

2008-02-07 Thread Jesse Parker
My vote:

.*:\([^:]*\):.*

Anything including null, a colon, any number of things that aren't a colon
(expr 1), a colon, anything including null.
  -Original Message-
  From: Ben Johansen [mailto:[EMAIL PROTECTED]
  Sent: Thursday, February 07, 2008 2:05 PM
  To: witango-talk@witango.com
  Subject: Re: Spam:**, Witango-Talk: Regex expression


  try this,


  /[ ][:]([a-zA-Z0-9_]+)[:][ ]/


  Ben


  On Feb 7, 2008, at 8:59 AM, Wolf, Gene wrote:


   OK, I am pulling my hair out and I figure some of you have had quite
a bit more experience with this than I have. Here's what I'm trying to get
the regex expression in Witango to do:

   I want to process all records with a memo field containing :anything
here:

   Now, I'm selecting records and processing an array applying the regex
expression to the appropriate field. I'm using the following command:

   <@REGEX EXPR=":{1,}[.]+{1,}:{1,}" STR=.. (you get the idea)

  This expression is accepting anything that has at least one : in it. I
really want the field selected if it two : in it. So for example I do not
want Title: but I do want :Title: I don't want :important

But I do want :important:

   What am I doing wrong in the above code?



Gene Wolf
Supervisor, Business Systems
DRS Sensors & Targeting Systems-Optronics
2330 Commerce Park Drive NE
Palm Bay, Florida 32905
Phone: 321-309-0685
   321-309-0202 (fax)

Dictionary.com Word of the Day
http://dictionary.reference.com/wordoftheday/

This e-mail, including any attached files, may contain confidential and
privileged information for the sole use of the intended recipient. Any
review, use, distribution, or disclosure by others is strictly prohibited.
If you are not the intended recipient (or authorized to receive information
for the intended recipient), please contact the sender by reply e-mail and
delete all copies of this message.

"This (document/presentation) may contain technical data as defined in
the International Traffic In Arms Regulations (ITAR) 22 CFR 120.10. Export
of this material is restricted by the Arms Export Control Act (22 U.S.C.
2751 et seq.) and may not be exported to foreign persons without prior
written approval from the U.S. Department of State."


TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf



TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf

Re: Spam:**********, Witango-Talk: Regex expression

2008-02-07 Thread Ben Johansen

try this,

/[ ][:]([a-zA-Z0-9_]+)[:][ ]/

Ben

On Feb 7, 2008, at 8:59 AM, Wolf, Gene wrote:

   OK, I am pulling my hair out and I figure some of you have had  
quite a bit more experience with this than I have. Here's what I'm  
trying to get the regex expression in Witango to do:


   I want to process all records with a memo field  
containing :anything here:


   Now, I'm selecting records and processing an array applying the  
regex expression to the appropriate field. I'm using the following  
command:


   <@REGEX EXPR=":{1,}[.]+{1,}:{1,}" STR=.. (you get the idea)

  This expression is accepting anything that has at least one : in  
it. I really want the field selected if it two : in it. So for  
example I do not want Title: but I do want :Title: I don't  
want :important


But I do want :important:

   What am I doing wrong in the above code?


Gene Wolf
Supervisor, Business Systems
DRS Sensors & Targeting Systems-Optronics
2330 Commerce Park Drive NE
Palm Bay, Florida 32905
Phone: 321-309-0685
   321-309-0202 (fax)

Dictionary.com Word of the Day
http://dictionary.reference.com/wordoftheday/

This e-mail, including any attached files, may contain confidential  
and privileged information for the sole use of the intended  
recipient. Any review, use, distribution, or disclosure by others is  
strictly prohibited. If you are not the intended recipient (or  
authorized to receive information for the intended recipient),  
please contact the sender by reply e-mail and delete all copies of  
this message.


"This (document/presentation) may contain technical data as defined  
in the International Traffic In Arms Regulations (ITAR) 22 CFR  
120.10. Export of this material is restricted by the Arms Export  
Control Act (22 U.S.C. 2751 et seq.) and may not be exported to  
foreign persons without prior written approval from the U.S.  
Department of State."



TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf




TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf

Re: Witango-Talk: Regex expression

2008-02-07 Thread William M Conlon

Have you tried matching at the start of the string with caret [^]?

Have you tried to first just pulling out the text 'anything here'  
from within the colon [:] boundary markers, before looking for  
numeric strings?


have you considered doing your regex in the database (probably  
faster), which might employ a  non-DFA regex engine?


Bill

William M. Conlon, P.E., Ph.D.
To the Point
2330 Bryant Street
Palo Alto, CA 94301
   vox:  650.327.2175 (direct)
   fax:  650.329.8335
mobile:  650.906.9929
e-mail:  mailto:[EMAIL PROTECTED]
   web:  http://www.tothept.com


On Feb 7, 2008, at 8:59 AM, Wolf, Gene wrote:

   OK, I am pulling my hair out and I figure some of you have had  
quite a bit more experience with this than I have. Here's what I'm  
trying to get the regex expression in Witango to do:


   I want to process all records with a memo field  
containing :anything here:


   Now, I'm selecting records and processing an array applying the  
regex expression to the appropriate field. I'm using the following  
command:


   <@REGEX EXPR=":{1,}[.]+{1,}:{1,}" STR=.. (you get the idea)

  This expression is accepting anything that has at least one : in  
it. I really want the field selected if it two : in it. So for  
example I do not want Title: but I do want :Title: I don't  
want :important


But I do want :important:

   What am I doing wrong in the above code?


Gene Wolf
Supervisor, Business Systems
DRS Sensors & Targeting Systems-Optronics
2330 Commerce Park Drive NE
Palm Bay, Florida 32905
Phone: 321-309-0685
   321-309-0202 (fax)

Dictionary.com Word of the Day
http://dictionary.reference.com/wordoftheday/

This e-mail, including any attached files, may contain confidential  
and privileged information for the sole use of the intended  
recipient. Any review, use, distribution, or disclosure by others  
is strictly prohibited. If you are not the intended recipient (or  
authorized to receive information for the intended recipient),  
please contact the sender by reply e-mail and delete all copies of  
this message.


"This (document/presentation) may contain technical data as defined  
in the International Traffic In Arms Regulations (ITAR) 22 CFR  
120.10. Export of this material is restricted by the Arms Export  
Control Act (22 U.S.C. 2751 et seq.) and may not be exported to  
foreign persons without prior written approval from the U.S.  
Department of State."


__ 
__ TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf



RE: Witango-Talk: Regex expression

2008-02-07 Thread Wolf, Gene
HA HA HA HA HA HA HA



From: Driscoll, Kevin [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 07, 2008 12:28 PM
To: witango-talk@witango.com
Subject: Re: Witango-Talk: Regex expression



Use plsql


--
Sent from my BlackBerry Wireless Handheld


-Original Message-
From: Wolf, Gene
To: witango-talk@witango.com
Sent: Thu Feb 07 11:59:52 2008
Subject: Witango-Talk: Regex expression

   OK, I am pulling my hair out and I figure some of you have had quite
a bit more experience with this than I have. Here's what I'm trying to
get the regex expression in Witango to do:

   I want to process all records with a memo field containing :anything
here:

   Now, I'm selecting records and processing an array applying the regex
expression to the appropriate field. I'm using the following command:

   <@REGEX EXPR=":{1,}[.]+{1,}:{1,}" STR=.. (you get the idea)

  This expression is accepting anything that has at least one : in it. I
really want the field selected if it two : in it. So for example I do
not want Title: but I do want :Title: I don't want :important

But I do want :important:

   What am I doing wrong in the above code?

  

Gene Wolf
Supervisor, Business Systems
DRS Sensors & Targeting Systems-Optronics
2330 Commerce Park Drive NE
Palm Bay, Florida 32905
Phone: 321-309-0685
   321-309-0202 (fax)

Dictionary.com Word of the Day
http://dictionary.reference.com/wordoftheday/
 

This e-mail, including any attached files, may contain confidential and
privileged information for the sole use of the intended recipient. Any
review, use, distribution, or disclosure by others is strictly
prohibited. If you are not the intended recipient (or authorized to
receive information for the intended recipient), please contact the
sender by reply e-mail and delete all copies of this message.

"This (document/presentation) may contain technical data as defined in
the International Traffic In Arms Regulations (ITAR) 22 CFR 120.10.
Export of this material is restricted by the Arms Export Control Act (22
U.S.C. 2751 et seq.) and may not be exported to foreign persons without
prior written approval from the U.S. Department of State."



TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf




TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf

Re: Witango-Talk: Regex expression

2008-02-07 Thread Driscoll, Kevin
Use plsql


--
Sent from my BlackBerry Wireless Handheld


-Original Message-
From: Wolf, Gene
To: witango-talk@witango.com
Sent: Thu Feb 07 11:59:52 2008
Subject: Witango-Talk: Regex expression

   OK, I am pulling my hair out and I figure some of you have had quite a bit 
more experience with this than I have. Here's what I'm trying to get the regex 
expression in Witango to do:

   I want to process all records with a memo field containing :anything here: 

   Now, I'm selecting records and processing an array applying the regex 
expression to the appropriate field. I'm using the following command:

   <@REGEX EXPR=":{1,}[.]+{1,}:{1,}" STR=.. (you get the idea) 

  This expression is accepting anything that has at least one : in it. I really 
want the field selected if it two : in it. So for example I do not want Title: 
but I do want :Title: I don't want :important

But I do want :important: 

   What am I doing wrong in the above code? 

   

Gene Wolf 
Supervisor, Business Systems 
DRS Sensors & Targeting Systems-Optronics 
2330 Commerce Park Drive NE 
Palm Bay, Florida 32905 
Phone: 321-309-0685 
   321-309-0202 (fax) 

Dictionary.com Word of the Day 
http://dictionary.reference.com/wordoftheday/ 
  

This e-mail, including any attached files, may contain confidential and 
privileged information for the sole use of the intended recipient. Any review, 
use, distribution, or disclosure by others is strictly prohibited. If you are 
not the intended recipient (or authorized to receive information for the 
intended recipient), please contact the sender by reply e-mail and delete all 
copies of this message.

"This (document/presentation) may contain technical data as defined in the 
International Traffic In Arms Regulations (ITAR) 22 CFR 120.10. Export of this 
material is restricted by the Arms Export Control Act (22 U.S.C. 2751 et seq.) 
and may not be exported to foreign persons without prior written approval from 
the U.S. Department of State."



TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf



TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf

Witango-Talk: Regex expression

2008-02-07 Thread Wolf, Gene
   OK, I am pulling my hair out and I figure some of you have had quite
a bit more experience with this than I have. Here's what I'm trying to
get the regex expression in Witango to do:

   I want to process all records with a memo field containing :anything
here:

   Now, I'm selecting records and processing an array applying the regex
expression to the appropriate field. I'm using the following command:

   <@REGEX EXPR=":{1,}[.]+{1,}:{1,}" STR=.. (you get the idea)

  This expression is accepting anything that has at least one : in it. I
really want the field selected if it two : in it. So for example I do
not want Title: but I do want :Title: I don't want :important
But I do want :important:

   What am I doing wrong in the above code?

   

Gene Wolf
Supervisor, Business Systems
DRS Sensors & Targeting Systems-Optronics
2330 Commerce Park Drive NE
Palm Bay, Florida 32905
Phone: 321-309-0685
   321-309-0202 (fax)

Dictionary.com Word of the Day
http://dictionary.reference.com/wordoftheday/

This e-mail, including any attached files, may contain confidential and
privileged information for the sole use of the intended recipient. Any
review, use, distribution, or disclosure by others is strictly
prohibited. If you are not the intended recipient (or authorized to
receive information for the intended recipient), please contact the
sender by reply e-mail and delete all copies of this message.

> "This (document/presentation) may contain technical data as defined in
> the International Traffic In Arms Regulations (ITAR) 22 CFR 120.10.
> Export of this material is restricted by the Arms Export Control Act
> (22 U.S.C. 2751 et seq.) and may not be exported to foreign persons
> without prior written approval from the U.S. Department of State."
> 


TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf

Re: Spam:*******, Re: Witango-Talk: Has any one seen this response

2008-02-07 Thread Michael Heth


On Feb 6, 2008, at 7:25 PM, Robert Garcia wrote:


I think that was Rosanne Rosanna Danna




No, Emily said "Never Mind"

Rosanne said

"it's a l w a y s   sumthin'".

Which applies to this case or pretty much any case dealing with the  
Internets and their workings.


I still miss LitellaVison.

M./

If Phil can begin his V6 announcement with an appropriate "not ready  
for primetime player" quote, well I guess we'll all have to read it  
all the way through ;-).



M./

Michael Heth


TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf