[Seaside] More S-Exprs

Jim Benson jb@speed.net
Tue, 28 May 2002 12:38:30 -0700


Another S-Exprs question:

Out of the examples:

html
 #(
 [date] [time]
 ( form sea:id: reload
  ( iadateselector sea:id: date )
  ( iatimeselector sea:id: time )
  ( input type: submit )
 )
 (form sea:id: reload
  ( input type: checkbox sea:id: twentyFourHour '24 Hour Clock' )
  ( input type: submit value: Change )
 )
)

I want to convert this to S-Expr form. How do I handle the line:

 [date] [time]

As I understand it, the first element in the S-Expr array is treated as a
tag. How do you trick it?

Jim