24 Feb
2000
24 Feb
'00
9:38 p.m.
Consider: FolderA SomeOtherItem FolderB ItemToExport I can export ItemToExport from FolderA by calling: (Item == ItemToExport) <dtml-with "FolderA.FolderB"> <dtml-call "manage_exportObject(id=Item)"> </dtml-with> New findings: I have found that I can export SomeOtherItem from the root by calling: (PathToItem == FolderA and Item == SomeOtherItem) <dtml-with "_.getitem(PathToItem,0)"> <dtml-call "manage_exportObject(id=Item)"> </dtml-with> But if I try to set PathToItem equal to FolderA.FolderB I get a KeyError: FolderA.FolderB Any thoughts???????????????? Desperate DR