Anyone can upload a patch. Patches are evaluated by project team members and either Applied or Declined.
| ID |
Uploaded |
Status |
Description |
Work Items |
Action |
|
5093
|
Jan 27 2010 at
12:14 AM
|
Being evaluated
|
In the WriteResult function of SitemapHandler there is an exception when a path can't load the path correctly. Putting it in a try catch and handling the exception case to mean no file present works well.
if (string.IsNullOrEmpty(siteMapNode["lastmod"])) { string physicalPath = string.Empty; try { physicalPath = Request.MapPath(siteMapNode.Url); } catch (HttpException) { // Can't look that path up - skip it return null; }
|
|
|