Re: Witango-Talk: Custom Meta Tags

2008-03-13 Thread John McGowan
On 3/12/08, Fogelson, Steve <[EMAIL PROTECTED]> wrote: > > > > > Hi, > > I am working on my first custom tags using a class file. Everything seems to > be working well. > > Except when the Witango service is restarted, the first time a custom tag is > requested, it errors out. What error? > It se

RE: Witango-Talk: Assigning array to a Var whose name is a Var.

2008-03-13 Thread Robert Shubert
<@VAR NAME=@@user$affiliate[1,2] SCOPE=domain> Is ambiguous. That's why you need long hand. It can be interpreted as to return a variable named the value of the cell [1,2] of an array user$affiliate but what you mean to say is that you want to return the cell [1,2] from the array in the variable

RE: Witango-Talk: Custom Meta Tags

2008-03-13 Thread Fogelson, Steve
Good morning John, There is no code in either the On_Create or On_Destroy methods. Here are the messages I get in debug. I numbered them for reference. 1 [Thread] [15] Looking for class in /Tcf/CustomTags.tcf 2 [Thread] [15] Getting network file C:\Inetpub\wwwroot\CatSite\Tcf\CustomTags.tcf 3 [

RE: Witango-Talk: Custom Meta Tags

2008-03-13 Thread Robert Shubert
That is a parsing error, take a look at that branch and correct it. Likely the TCF is being loaded into cache anyway (so you're only seeing the parsing error once per domain) but you will probably get a crash if you call the malformed method. See what that BranchReturnResults is trying to do and co

Witango-Talk: Array subset creation

2008-03-13 Thread John Hotaling
Hello: I'm looking for the most efficient way to create a "subset" array from another "master" array (I'll need to create several subset arrays actually). However, I don't want to do any looping to create it due to performance concerns. I've used the <@delrows> meta-tag and that works fine but

Re: Witango-Talk: Array subset creation

2008-03-13 Thread Ben Johansen
Ok, Robert G designed the Initial and I've used it all over 1. <@assign local$warrs <@filter domain$warrs "#parentSku = '<@var local$sku>' and #web_or_dash != 'D'">> 2. <@define local$sku_compare2 type=array cols=<@numcols array=domain $products> rows=<@numrows array=local$warrs>> 3. <@assig