UpgradeLog.htm 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <!DOCTYPE html>
  2. <!-- saved from url=(0014)about:internet -->
  3. <html xmlns:msxsl="urn:schemas-microsoft-com:xslt"><head><meta content="en-us" http-equiv="Content-Language" /><meta content="text/html; charset=utf-16" http-equiv="Content-Type" /><link type="text/css" rel="stylesheet" href="_UpgradeReport_Files\UpgradeReport.css" /><title _locID="ConversionReport0">
  4. Migration Report
  5. </title><script type="text/javascript" language="javascript">
  6. // Startup
  7. // Hook up the the loaded event for the document/window, to linkify the document content
  8. var startupFunction = function() { linkifyElement("messages"); };
  9. if(window.attachEvent)
  10. {
  11. window.attachEvent('onload', startupFunction);
  12. }
  13. else if (window.addEventListener)
  14. {
  15. window.addEventListener('load', startupFunction, false);
  16. }
  17. else
  18. {
  19. document.addEventListener('load', startupFunction, false);
  20. }
  21. // Toggles the visibility of table rows with the specified name
  22. function toggleTableRowsByName(name)
  23. {
  24. var allRows = document.getElementsByTagName('tr');
  25. for (i=0; i < allRows.length; i++)
  26. {
  27. var currentName = allRows[i].getAttribute('name');
  28. if(!!currentName && currentName.indexOf(name) == 0)
  29. {
  30. var isVisible = allRows[i].style.display == '';
  31. isVisible ? allRows[i].style.display = 'none' : allRows[i].style.display = '';
  32. }
  33. }
  34. }
  35. function scrollToFirstVisibleRow(name)
  36. {
  37. var allRows = document.getElementsByTagName('tr');
  38. for (i=0; i < allRows.length; i++)
  39. {
  40. var currentName = allRows[i].getAttribute('name');
  41. var isVisible = allRows[i].style.display == '';
  42. if(!!currentName && currentName.indexOf(name) == 0 && isVisible)
  43. {
  44. allRows[i].scrollIntoView(true);
  45. return true;
  46. }
  47. }
  48. return false;
  49. }
  50. // Linkifies the specified text content, replaces candidate links with html links
  51. function linkify(text)
  52. {
  53. if(!text || 0 === text.length)
  54. {
  55. return text;
  56. }
  57. // Find {DriveLetter}:\Something or \\{uncshare}\something strings and replace them with file:/// links
  58. // It expects that a path ends in .extension, and that that extension does not have a space within it,
  59. // it does this as not to greedily match in the case of "Text C:\foo\file.txt some other text"
  60. var filePath = /([A-z]\:|\\{2}[A-z].+)\\([^<]+)\.([^<\s]+)/gi;
  61. // Find http, https and ftp links and replace them with hyper links
  62. var urlLink = /(http|https|ftp)\:\/\/[a-zA-Z0-9\-\.]+(:[a-zA-Z0-9]*)?\/?([a-zA-Z0-9\-\._\?\,\/\\\+&%\$#\=~;\{\}])*/gi;
  63. return text.replace(filePath, '<a class="localLink" href="file:///$&">$&</a>')
  64. .replace(urlLink, '<a href="$&">$&</a>') ;
  65. }
  66. // Linkifies the specified element by ID
  67. function linkifyElement(id)
  68. {
  69. var element = document.getElementById(id);
  70. if(!!element)
  71. {
  72. element.innerHTML = linkify(element.innerHTML);
  73. }
  74. }
  75. function ToggleMessageVisibility(projectName)
  76. {
  77. if(!projectName || 0 === projectName.length)
  78. {
  79. return;
  80. }
  81. toggleTableRowsByName("MessageRowClass" + projectName);
  82. toggleTableRowsByName('MessageRowHeaderShow' + projectName);
  83. toggleTableRowsByName('MessageRowHeaderHide' + projectName);
  84. }
  85. function ScrollToFirstVisibleMessage(projectName)
  86. {
  87. if(!projectName || 0 === projectName.length)
  88. {
  89. return;
  90. }
  91. // First try the 'Show messages' row
  92. if(!scrollToFirstVisibleRow('MessageRowHeaderShow' + projectName))
  93. {
  94. // Failed to find a visible row for 'Show messages', try an actual message row
  95. scrollToFirstVisibleRow('MessageRowClass' + projectName);
  96. }
  97. }
  98. </script></head><body><h1 _locID="ConversionReport">
  99. Migration Report - </h1><div id="content"><h2 _locID="OverviewTitle">Overview</h2><div id="overview"><table><tr><th></th><th _locID="ProjectTableHeader">Project</th><th _locID="PathTableHeader">Path</th><th _locID="ErrorsTableHeader">Errors</th><th _locID="WarningsTableHeader">Warnings</th><th _locID="MessagesTableHeader">Messages</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td><strong><a href="#MediaBrowser.ApiInteraction.Wp7">MediaBrowser.ApiInteraction.Wp7</a></strong></td><td>MediaBrowser.ApiInteraction.Wp7\MediaBrowser.ApiInteraction.Wp7.csproj</td><td class="textCentered"><a href="#MediaBrowser.ApiInteraction.Wp7Error">1</a></td><td class="textCentered"><a>0</a></td><td class="textCentered"><a href="#">0</a></td></tr></table></div><h2 _locID="SolutionAndProjectsTitle">Solution and projects</h2><div id="messages"><a name="MediaBrowser.ApiInteraction.Wp7" /><h3>MediaBrowser.ApiInteraction.Wp7</h3><table><tr id="MediaBrowser.ApiInteraction.Wp7HeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassMediaBrowser.ApiInteraction.Wp7"><td><a name="MediaBrowser.ApiInteraction.Wp7Error" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>MediaBrowser.ApiInteraction.Wp7\MediaBrowser.ApiInteraction.Wp7.csproj:
  100. </strong><span>The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?prd=12395&amp;pver=11&amp;sbp=ProjectTypeDeprecated&amp;plcid=0x409&amp;clcid=0x409&amp;ar=MSDN&amp;sar=ProjectCompatibility&amp;o1=C089C8C0-30E0-4E22-80C0-CE093F111A43</span></td></tr></table></div></div></body></html>