| 1 | <?xml version="1.0" encoding="utf-8"?> |
|---|
| 2 | #macro(genTasklist $i) |
|---|
| 3 | <div> |
|---|
| 4 | $task: |
|---|
| 5 | <select name="ucn_task" onchange="javascript:taskChanged(this.options[this.options.selectedIndex].value, $i);"> |
|---|
| 6 | #foreach( $task in $tasklist ) |
|---|
| 7 | <option value="$task.getID()">$task.getLongName("${lang}")</option> |
|---|
| 8 | #end |
|---|
| 9 | </select> |
|---|
| 10 | </div> |
|---|
| 11 | #end |
|---|
| 12 | |
|---|
| 13 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|---|
| 14 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
|---|
| 15 | |
|---|
| 16 | <head> |
|---|
| 17 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|---|
| 18 | <title>Unicorn</title> |
|---|
| 19 | <link rev="start" href="./" title="Home Page" /> |
|---|
| 20 | <style type="text/css" media="all">@import "style/base.css";</style> |
|---|
| 21 | <script type="text/javascript" src="tabtastic/addclasskillclass.js"></script> |
|---|
| 22 | <script type="text/javascript" src="tabtastic/attachevent.js"></script> |
|---|
| 23 | <script type="text/javascript" src="tabtastic/addcss.js"></script> |
|---|
| 24 | <script type="text/javascript" src="tabtastic/tabtastic.js"></script> |
|---|
| 25 | <script type="text/javascript" src="en_parameters.js"></script> |
|---|
| 26 | </head> |
|---|
| 27 | |
|---|
| 28 | <body onload="init()"> |
|---|
| 29 | |
|---|
| 30 | <div id="banner"> |
|---|
| 31 | <h1 id="title"> |
|---|
| 32 | <a href="http://www.w3.org/"> |
|---|
| 33 | <img height="48" alt="W3C" id="logo" src="http://www.w3.org/Icons/WWW/w3c_home_nb" /> |
|---|
| 34 | </a> |
|---|
| 35 | <img src="images/unicorn.png" alt="Unicorn" /> |
|---|
| 36 | </h1> |
|---|
| 37 | </div> |
|---|
| 38 | |
|---|
| 39 | <p id="tagline">the Web's Universal Conformance Checker - <strong>ALPHA Test Version</strong></p> |
|---|
| 40 | |
|---|
| 41 | <ul id="lang_choice"> |
|---|
| 42 | #foreach( $key in $languages.keySet() ) |
|---|
| 43 | <li><a lang="$key" |
|---|
| 44 | xml:lang="$key" |
|---|
| 45 | hreflang="$key" |
|---|
| 46 | rel="alternate" |
|---|
| 47 | href="index.${key}.html">$languages.get($key)</a> |
|---|
| 48 | </li> |
|---|
| 49 | #end |
|---|
| 50 | </ul> |
|---|
| 51 | |
|---|
| 52 | |
|---|
| 53 | |
|---|
| 54 | <div id="frontforms"> |
|---|
| 55 | <ul class="tabset_tabs"> |
|---|
| 56 | <li><a href="#validate-by-uri" class="active">$validate-by-uri</a></li><!-- |
|---|
| 57 | --><li><a href="#validate-by-upload">$validate-by-upload</a></li><!-- |
|---|
| 58 | --><li><a href="#validate-by-input">$validate-by-input</a></li> |
|---|
| 59 | </ul> |
|---|
| 60 | <div id="fields"> |
|---|
| 61 | |
|---|
| 62 | <fieldset id="validate-by-uri" class="tabset_content front"> |
|---|
| 63 | <legend class="tabset_label">$legend-by-uri</legend> |
|---|
| 64 | <form method="get" action="observe"> |
|---|
| 65 | #genTasklist(0) |
|---|
| 66 | <p class="instructions">$instruction-by-uri</p> |
|---|
| 67 | <p> |
|---|
| 68 | <label title="$uri_title" for="ucn_uri"> |
|---|
| 69 | $uri: |
|---|
| 70 | <input type="text" name="ucn_uri" id="ucn_uri" size="45" /> |
|---|
| 71 | </label> |
|---|
| 72 | <input type="hidden" name="ucn_lang" value="${lang}" /> |
|---|
| 73 | |
|---|
| 74 | </p> |
|---|
| 75 | <fieldset id="opt_uri" class="options"> |
|---|
| 76 | <p title="$simple_options">$simple_options</p> |
|---|
| 77 | <div class="simpleParamList"></div> |
|---|
| 78 | </fieldset> |
|---|
| 79 | <fieldset id="extra_opt_uri" class="moreoptions"> |
|---|
| 80 | <p class="toggle closed" title="Show/Hide extra options" onclick="expand()">$extra_options</p> |
|---|
| 81 | <!-- invisible --> |
|---|
| 82 | <div class="advancedParamList"></div> |
|---|
| 83 | <!-- / invisible --> |
|---|
| 84 | </fieldset> |
|---|
| 85 | <p class="submit_button"> |
|---|
| 86 | <label title="$submit_title"><input type="submit" value="$submit" /></label> |
|---|
| 87 | </p> |
|---|
| 88 | </form> |
|---|
| 89 | </fieldset> |
|---|
| 90 | |
|---|
| 91 | <fieldset id="validate-by-upload" class="tabset_content front"> |
|---|
| 92 | <legend class="tabset_label">$legend-by-upload</legend> |
|---|
| 93 | <form method="post" enctype="multipart/form-data" action="observe"> |
|---|
| 94 | #genTasklist(1) |
|---|
| 95 | |
|---|
| 96 | <p class="instructions">$instruction-by-upload</p> |
|---|
| 97 | <p> |
|---|
| 98 | <label title="$instruction-by-upload" for="ucn_file"> |
|---|
| 99 | $local_file |
|---|
| 100 | <input type="file" id="ucn_file" name="ucn_file" size="30" /> |
|---|
| 101 | <input type="hidden" name="ucn_lang" value="fr" /> |
|---|
| 102 | </label> |
|---|
| 103 | |
|---|
| 104 | </p> |
|---|
| 105 | <fieldset id="opt_upload" class="options"> |
|---|
| 106 | <p title="$simple_options">$simple_options</p> |
|---|
| 107 | <div class="simpleParamList"></div> |
|---|
| 108 | </fieldset> |
|---|
| 109 | <fieldset id="extra_opt_upload" class="moreoptions"> |
|---|
| 110 | <p class="toggle closed" title="Show/Hide extra options" onclick="expand()">$extra_options</p> |
|---|
| 111 | <!-- invisible --> |
|---|
| 112 | <div class="advancedParamList"></div> |
|---|
| 113 | <!-- / invisible --> |
|---|
| 114 | </fieldset> |
|---|
| 115 | <p class="submit_button"> |
|---|
| 116 | <label title="$submit_title"> |
|---|
| 117 | <input type="submit" value="$submit" /> |
|---|
| 118 | </label> |
|---|
| 119 | </p> |
|---|
| 120 | </form> |
|---|
| 121 | </fieldset> |
|---|
| 122 | |
|---|
| 123 | <fieldset id="validate-by-input" class="tabset_content front"> |
|---|
| 124 | <legend class="tabset_label">$legend-by-input</legend> |
|---|
| 125 | <form action="observe" method="get"> |
|---|
| 126 | #genTasklist(2) |
|---|
| 127 | <p class="instructions">$instruction-by-input</p> |
|---|
| 128 | <p> |
|---|
| 129 | <textarea name="ucn_text" rows="12" cols="70"></textarea> |
|---|
| 130 | <span id="ucn_text_mime"></span> |
|---|
| 131 | <input type="hidden" name="ucn_lang" value="fr" /> |
|---|
| 132 | </p> |
|---|
| 133 | <fieldset id="opt_direct" class="options"> |
|---|
| 134 | <p title="$simple_options">$simple_options</p> |
|---|
| 135 | <div class="simpleParamList"></div> |
|---|
| 136 | </fieldset> |
|---|
| 137 | <fieldset id="extra_opt_direct" class="moreoptions"> |
|---|
| 138 | <p class="toggle closed" title="Show/Hide extra options" onclick="expand()">$extra_options</p> |
|---|
| 139 | <!-- invisible --> |
|---|
| 140 | <div class="advancedParamList"></div> |
|---|
| 141 | <!-- / invisible --> |
|---|
| 142 | </fieldset> |
|---|
| 143 | <p class="submit_button"> |
|---|
| 144 | <label title="$submit_title"> |
|---|
| 145 | <input type="submit" value="$submit" /> |
|---|
| 146 | </label> |
|---|
| 147 | </p> |
|---|
| 148 | </form> |
|---|
| 149 | </fieldset> |
|---|
| 150 | </div><!-- fiends --> |
|---|
| 151 | </div><!-- end div id = frontforms --> |
|---|
| 152 | <h2>$last_news</h2> |
|---|
| 153 | <h3>$news_subtitle</h3> |
|---|
| 154 | <p>$news</p> |
|---|
| 155 | |
|---|
| 156 | <p><strong>Note</strong>: Vous devez activer JavaScript pour pouvoir vérifier des documents.</p> |
|---|
| 157 | |
|---|
| 158 | <ul class="navbar" id="menu"> |
|---|
| 159 | <li><a href="http://www.w3.org/QA/2006/obs_framework/" title="Documentation about this service and the software behind it">$documentation</a> <span class="hideme">|</span></li> |
|---|
| 160 | <li><a href="http://dev.w3.org/cvsweb/2006/unicorn/" title="$download_title">$download</a> <span class="hideme">|</span></li> |
|---|
| 161 | <li><a href="mailto:public-qa-dev@w3.org" title="$feedback_title">$feedback</a> <span class="hideme">|</span></li> |
|---|
| 162 | </ul> |
|---|
| 163 | |
|---|
| 164 | <p id="activity_logos"> |
|---|
| 165 | <a href="http://www.w3.org/QA/" title="W3C's Quality Assurance Activity, bringing you free Web quality tools and more"> |
|---|
| 166 | <img src="http://www.w3.org/QA/2002/12/qa.png" alt="QA" /> |
|---|
| 167 | </a> |
|---|
| 168 | <a href="http://www.w3.org/Style/CSS/learning" title="Learn more about Cascading Style Sheets"></a> |
|---|
| 169 | </p> |
|---|
| 170 | |
|---|
| 171 | <p id="support_logo"> |
|---|
| 172 | Support this tool, become a<br /> |
|---|
| 173 | <a href="http://www.w3.org/Consortium/supporters"> |
|---|
| 174 | <img src="http://www.w3.org/Consortium/supporter-logos/csupporter.png" alt="W3C Supporter" /> |
|---|
| 175 | </a> |
|---|
| 176 | </p> |
|---|
| 177 | |
|---|
| 178 | <p class="copyright"> |
|---|
| 179 | <a rel="Copyright" href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1994-2008 |
|---|
| 180 | <a href="http://www.w3.org/"><acronym title="World Wide Web Consortium">W3C</acronym></a>® |
|---|
| 181 | |
|---|
| 182 | (<a href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute of Technology">MIT</acronym></a>, |
|---|
| 183 | <a href="http://www.ercim.org/"><acronym title="European Research Consortium for Informatics and Mathematics">ERCIM</acronym></a>, |
|---|
| 184 | <a href="http://www.keio.ac.jp/">Keio</a>), |
|---|
| 185 | All Rights Reserved. |
|---|
| 186 | W3C <a href="http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, |
|---|
| 187 | <a href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a>, |
|---|
| 188 | <a rel="Copyright" href="http://www.w3.org/Consortium/Legal/copyright-documents">document use</a> |
|---|
| 189 | and <a rel="Copyright" href="http://www.w3.org/Consortium/Legal/copyright-software">software licensing</a> |
|---|
| 190 | |
|---|
| 191 | rules apply. Your interactions with this site are in accordance |
|---|
| 192 | with our <a href="http://www.w3.org/Consortium/Legal/privacy-statement#Public">public</a> and |
|---|
| 193 | <a href="http://www.w3.org/Consortium/Legal/privacy-statement#Members">Member</a> privacy |
|---|
| 194 | statements. |
|---|
| 195 | </p> |
|---|
| 196 | |
|---|
| 197 | </body> |
|---|
| 198 | |
|---|
| 199 | </html> |
|---|