Re: Witango-Talk: frames

2004-01-06 Thread webdude
I have used the noframes tag the same way when it comes to SEO. Currently, I have 4 framed sites popping up #1 for various 2 and 3 keyword phrases (google, yahoo, msn, aol etc.). It works very well. The only problems I have encountered is when going to and from SSL. As long as you use the

Re: Witango-Talk: Results Search Action

2004-01-06 Thread Campbell Steve
Hello I am posting a simple results list after a search action to show all listings in a certain table. NO hard task to say the least. This happens to be entries that show up as daily news articles, sometimes one a day, sometimes a bunch on any given day. I am trying to find a way for my

RE: Witango-Talk: Results Search Action

2004-01-06 Thread Ben Johansen
So are you thinking something like this? @DAYS DATE='@CURRENTDATE' DAYS='-7' Ben Johansen - http://www.pcforge.com Authorized Witango MDaemon Reseller Available for Witango Developement -Original Message- From: Campbell Steve [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 06, 2004

Re: Witango-Talk: Results Search Action

2004-01-06 Thread Campbell Steve
Yes sir I am...is this the only tag/code that I need? This sure looks like what I used before. Thanks Steve From: Ben Johansen [EMAIL PROTECTED] Organization: Intelisoft, Inc. Reply-To: [EMAIL PROTECTED] Date: Tue, 6 Jan 2004 14:32:00 -0500 To: [EMAIL PROTECTED] Subject: RE:

RE: Witango-Talk: Results Search Action

2004-01-06 Thread Ben Johansen
This tag will help establish the dates. You will probably need to use the @FILTER tag to extract the items from the current resultSet array into its own array. Ben Johansen - http://www.pcforge.com Authorized Witango MDaemon Reseller Available for Witango Developement -Original

Witango-Talk: Call Method

2004-01-06 Thread Dan Stein
I have a tcf call CS.tcf There is a method in there called timer. This is how I am calling it. @CALLMETHOD OPJECT=CS METHOD=Timer ENCODING=NONE I am getting the error -2 The specified object was not found. Dan -- Dan Stein Digital Software Solutions 799 Evergreen Circle Telford PA 18969

RE: Witango-Talk: Call Method

2004-01-06 Thread Dave Shelley
Dan, You spelled OBJECT wrong. If that's just a typo in the email, check that you are creating the object properly before calling the method. @assign scope$CS @createobject type=tcf objected=yourTCFfile Dave -Original Message- From: Dan Stein [mailto:[EMAIL PROTECTED] Sent: January

Witango-Talk: cvs

2004-01-06 Thread Alan Wolfe
does anyone use cvs or any other version control system on their production server (for windows) for taf files? i was looking at www.cvshome.org for cvs and it says the version for windows isnt as good as for a unix machine so I'm wondering what everyone else is using that's on windows.

Re: Witango-Talk: Call Method

2004-01-06 Thread Dan Stein
@assign request$CS @createobject type=tcf objectid=cs.tcf @CALLMETHOD OBJECT=CS METHOD=Timer ENCODING=NONE Still getting the error on 1/6/04 16:40, Dave Shelley at [EMAIL PROTECTED] wrote: Dan, You spelled OBJECT wrong. If that's just a typo in the email, check that you are creating

Re: Witango-Talk: cvs

2004-01-06 Thread Eric Weidl
Hi, I'm using CVSNT on Windows; Win 2000 to be specific. Works fine. The gut feeling of the people I've talked to is that CVSNT (that is, the CVS server running on Windows) may not be as robust as CVS server running on *nix under high loads. No one seems to question its ability under low or

Re: Witango-Talk: cvs

2004-01-06 Thread Jonah Simpson
Hey John and Alan! I haven't checked into TortiseCVS at all. I'm using FreeVCS http://www.freevcs.de/ . Seems to work pretty well. There aren't any hooks into WiTango, but the server and clients are both multi-platform. Uses a database to track changes, and is very flexible in terms of the db

Re: Witango-Talk: Call Method

2004-01-06 Thread Dan Stein
That did it. Needed the quotes. on 1/6/04 17:43, Alan Wolfe at [EMAIL PROTECTED] wrote: you might try putting things in quotes and adding a value= to the assign: @assign request$CS value=@createobject type=tcf objectid='cs.tcf' @CALLMETHOD OBJECT=request$CS METHOD=Timer() ENCODING=NONE