<html> <head> <title>Member Node Web Service Test Results</title> <style type="text/css"> div { padding-left: 10px; padding-right: 10px; border-top: 2px solid #CCC; } body { font-family: sans-serif; margin: 0px; } div.padded { margin-top: 20px; } table { width: 100%; } th { text-align: left; } td { width: 60%; text-align: left; padding-left: 50px; } .green {background: green; padding: 10px; padding-left: 30px;} .red {background: red; padding: 10px; padding-left: 30px;} .orange {background: orange; padding: 10px; padding-left: 30px;} .grey {background: grey; padding: 10px; padding-left: 30px;} .yellow {background: yellow; padding: 10px; padding-left: 30px;} </style> <script language="javascript"> function toggleTrace(showHideDiv, switchTextDiv) { var ele = document.getElementById(showHideDiv); var text = document.getElementById(switchTextDiv); if(ele.style.display == "block") { ele.style.display = "none"; text.innerHTML = "show trace"; } else { ele.style.display = "block"; text.innerHTML = "hide trace"; } } </script> </head> <body> <div style="background: #ccc; padding: 30px; font-weight: bold;">DataONE Member Node Web Service Test Results</div> <div class="template"/> </body> </html>