> Brian, > > I am new to Turbine but I think I have a couple of ideas. > Others can correct me or provide better solutions. > > On Sun, Mar 17, 2002 at 11:22:24AM -0800, Brian Rowe wrote: > > Hi, > > I am trying to simplly put the the user name on the > > screen. In a velocity template I used > > > > $data.getUser() > Try $data.getUser().getFirstName() $data.getUser().getLastName()
Or using a variable ($user) filled with everything in the object users: #set ($user=$data.getUser()) $user.getFirstName() $user.getLastName() > > > 2. Is there documentation that I couldn't find? I > > don't seem to be able to find what properties are > > available to me to be used. > The RunData interface I think RunData ($data in Velocity) is > Implemented by DefaultTurbineRunData the turbine api docs that > come with the tdk are very helpful. > > HTH, > > Jim > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
