public void Update(Uri file, string content)
 {
     this.content = content;
     try
     {
         this.items = ParseItems(server, content);
     }
     catch (Exception e)
     {
         server.LogError(e.ToString());
     }
 }