Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

110 lines
2.6 KiB

  1. <html>
  2. <head>
  3. <title>SAPI 5 Installation Page</title>
  4. <STYLE>
  5. A
  6. {
  7. COLOR: #0000ff;
  8. FONT-FAMILY: Arial;
  9. FONT-SIZE: 12pt;
  10. TEXT-DECORATION: None
  11. }
  12. A:HOVER
  13. {
  14. COLOR: #ff0000;
  15. FONT-FAMILY: Arial;
  16. FONT-SIZE: 12pt;
  17. TEST-DECORATION: None
  18. }
  19. BODY
  20. {
  21. COLOR: #0000ff;
  22. FONT-FAMILY: Arial;
  23. FONT-SIZE: 12pt
  24. }
  25. A#HomeLink
  26. {
  27. COLOR: BLACK;
  28. FONT-SIZE: 12pt;
  29. FONT-WEIGHT: BOLD
  30. }
  31. TD
  32. {
  33. COLOR: #0000ff;
  34. FONT-FAMILY: Arial;
  35. FONT-SIZE: 12pt;
  36. BORDER-BOTTOM: #777777 outset thin;
  37. BORDER-LEFT: #777777 outset thin;
  38. BORDER-RIGHT: #777777 outset thin;
  39. BORDER-TOP: #777777 outset thin;
  40. PADDING-BOTTOM: 2px;
  41. PADDING-LEFT: 2px;
  42. PADDING-RIGHT: 2px;
  43. PADDING-TOP: 2px
  44. }
  45. </STYLE>
  46. </head>
  47. <body>
  48. <center>
  49. <table width="60%">
  50. <caption align=left><h2>SAPI 5 Installation Page</h2>
  51. </caption>
  52. <TH >Date
  53. <TH >Build<br>Number
  54. <TH >
  55. <TH >Retail
  56. <TH >
  57. <TH >Debug
  58. <TH >
  59. <% Set fso = CreateObject("Scripting.FileSystemObject")
  60. BuildDate = Date
  61. BuildRoot = "\\iking-dubbel\sapi5\"
  62. Dim Anchor(4)
  63. Anchor(0) = "\release\msi\sp5sdk.msi""><B>Install SDK</B></A>"
  64. Anchor(1) = "\release\msm\""><B>Merge Modules</B></A>"
  65. Anchor(2) = "\debug\msi\sp5sdk.msi""><B>Install SDK</B></A>"
  66. Anchor(3) = "\debug\msm\""><B>Merge Modules</B></A>"
  67. Anchor(4) = "\bin""><B>Tools</B></A>"
  68. for i = 1 to 10
  69. 'do
  70. BuildNum = ""
  71. BuildNum = Month(BuildDate) + ((Year(BuildDate) - 1999) * 12)
  72. if BuildNum <= 9 then
  73. BuildNum = "0" & BuildNum
  74. end if
  75. if Day(BuildDate) <= 9 then
  76. BuildNum = BuildNum & "0"
  77. end if
  78. BuildNum = BuildNum & Day(BuildDate)
  79. BuildDir = BuildRoot + BuildNum
  80. BuildDate = BuildDate - 1
  81. 'stop
  82. 'loop until fso.FolderExists(BuildDir)
  83. if fso.FolderExists(BuildDir) then
  84. 'if True then
  85. Response.Write "<tr><td>"
  86. Response.Write (BuildDate + 1)
  87. Response.Write "</td>"
  88. Response.Write "<td align=center>"
  89. Response.Write "<a href=""http://iking-dubbel/buildall.asp?bldnum=" & BuildNum & """> "
  90. Response.Write BuildNum & "</a>"
  91. Response.Write "</td>"
  92. for each Column in Anchor
  93. if left(Column, 8) = "\release" then
  94. FontColor = "afafaf"
  95. elseif left(Column, 6) = "\debug" then
  96. FontColor = "ffff00"
  97. else
  98. FontColor = "ff0000"
  99. end if
  100. Response.Write ("<td bgcolor=" + FontColor + "><a href=""file://" + BuildDir + Column + "</td>")
  101. next
  102. 'stop
  103. Response.Write "</tr>" + vbCrlf
  104. end if
  105. next %>
  106. </table>
  107. <h3>Select build number to see build logs and BVT results by platform. </h3>
  108. </center>
  109. </body>
  110. </html>