Witango-Talk: Apache2 (Win32) run .jsp files as TML

2004-08-02 Thread Matt Muro
Hey Gang, I've added the following line to my Apache 2.0.49 (Win32) httpd.conf file: AddType application/witango-application-file .jsp so that the .jsp files I'm converting to TML (not TAF) files are passed along to Witango 5. It works fine if the .jsp files are TAFs, but not if they're

Witango-Talk: Regex Word Boundary Syntax

2004-08-02 Thread Dave Machin
I need to do a regex to find a word in a sentance and I need to make sure I only match where the word is a stand-alone word and not part of a larger word. I though regex word boundary syntax was \b but it doesn't seem to work - does anyone know what the syntax is...? Dave Machin E-Mail.

Re: Witango-Talk: datetime formatting

2004-08-02 Thread Jason Schulz
Try writing a hard coded date query and once that works, use the format arguments to format @arg accordingly. I haven't used Crystal Reports, but a common date format in queries is -MM-DD, rather than MM/DD/. Jason. On 03/08/2004, at 3:01 AM, Barbara McCormick wrote: Hello, I need to

Re: Witango-Talk: Regex Word Boundary Syntax

2004-08-02 Thread Fergal Donlon
Hi Dave, @REGEX EXPR= zzz |^zzz | zzz$ STR=zzz quick zzzbrown zzz jumped over the lazzzy zzz dog zzz TYPE=E POSITION=ALL will return all instances off zzz but not those contained within other words (not the zzz in zzzbrown or lazzzy do not get returned) The expression translates to a space, zzz

Re: Witango-Talk: Apache2 (Win32) run .jsp files as TML

2004-08-02 Thread Customer Support
The witango module automatically registers the .taf, .tcf, .tml and .thtml with the apache server when it is loaded. Using the ForceType application/witango-application-file should work fine and you can use it for as many extensions as you like. You also do not need to use the AddType