| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <html i18n-values="dir:textdirection;lang:language"> | 3 <html dir="$i18n{textdirection}" lang="$i18n{language}"> |
| 4 | 4 |
| 5 <head> | 5 <head> |
| 6 <meta charset="utf-8"> | 6 <meta charset="utf-8"> |
| 7 <meta name="google" value="notranslate"> | 7 <meta name="google" value="notranslate"> |
| 8 | 8 |
| 9 <script> | 9 <script> |
| 10 function addRow(name, url, isdir, | 10 function addRow(name, url, isdir, |
| 11 size, size_string, date_modified, date_modified_string) { | 11 size, size_string, date_modified, date_modified_string) { |
| 12 if (name == "." || name == "..") | 12 if (name == "." || name == "..") |
| 13 return; | 13 return; |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 display: none; | 185 display: none; |
| 186 } | 186 } |
| 187 </style> | 187 </style> |
| 188 | 188 |
| 189 <title id="title"></title> | 189 <title id="title"></title> |
| 190 | 190 |
| 191 </head> | 191 </head> |
| 192 | 192 |
| 193 <body> | 193 <body> |
| 194 | 194 |
| 195 <div id="listingParsingErrorBox" i18n-values=".innerHTML:listingParsingErrorBoxT
ext"></div> | 195 <div id="listingParsingErrorBox">$i18nRaw{listingParsingErrorBoxText}</div> |
| 196 | 196 |
| 197 <h1 id="header" i18n-content="header"></h1> | 197 <h1 id="header">$i18n{header}</h1> |
| 198 | 198 |
| 199 <div id="parentDirLinkBox" style="display:none"> | 199 <div id="parentDirLinkBox" style="display:none"> |
| 200 <a id="parentDirLink" class="icon up"> | 200 <a id="parentDirLink" class="icon up"> |
| 201 <span id="parentDirText" i18n-content="parentDirText"></span> | 201 <span id="parentDirText">$i18n{parentDirText}</span> |
| 202 </a> | 202 </a> |
| 203 </div> | 203 </div> |
| 204 | 204 |
| 205 <table> | 205 <table> |
| 206 <thead> | 206 <thead> |
| 207 <tr class="header" id="theader"> | 207 <tr class="header" id="theader"> |
| 208 <th i18n-content="headerName" onclick="javascript:sortTable(0);"></th> | 208 <th onclick="javascript:sortTable(0);">$i18n{headerName}</th> |
| 209 <th class="detailsColumn" i18n-content="headerSize" onclick="javascript:so
rtTable(1);"></th> | 209 <th class="detailsColumn" onclick="javascript:sortTable(1);"> |
| 210 <th class="detailsColumn" i18n-content="headerDateModified" onclick="javas
cript:sortTable(2);"></th> | 210 $i18n{headerSize} |
| 211 </th> |
| 212 <th class="detailsColumn" onclick="javascript:sortTable(2);"> |
| 213 $i18n{headerDateModified} |
| 214 </th> |
| 211 </tr> | 215 </tr> |
| 212 </thead> | 216 </thead> |
| 213 <tbody id="tbody"> | 217 <tbody id="tbody"> |
| 214 </tbody> | 218 </tbody> |
| 215 </table> | 219 </table> |
| 216 | 220 |
| 217 </body> | 221 </body> |
| 218 | 222 |
| 219 </html> | 223 </html> |
| OLD | NEW |