public static Item save(Event event, Item item) throws Event, IOException {
String type = event.query().header("content-type");
String boundary = "--" + unquote(type.substring(type.indexOf("boundary=") + 9));
Input in = event.input();
String line = in.line();
while(line != null) {
/*
* find boundary
*/