function postDataItems post
  set the itemDelimiter to "="
  repeat with x = 1 to the number of lines of post
    put item 1 of line x of post into line x of post
  end repeat
  return post
end postDataItems