src/share/classes/com/sun/tools/doclets/formats/html/markup/HtmlWriter.java

changeset 1835
536cad596942
parent 1833
f1b90ea7d402
child 1993
240f424cc0d5
child 2119
84df20dc604a
equal deleted inserted replaced
1834:76d08c649607 1835:536cad596942
312 " if (targetPage != \"\" && targetPage != \"undefined\")" + DocletConstants.NL + 312 " if (targetPage != \"\" && targetPage != \"undefined\")" + DocletConstants.NL +
313 " targetPage = targetPage.substring(1);" + DocletConstants.NL + 313 " targetPage = targetPage.substring(1);" + DocletConstants.NL +
314 " if (targetPage.indexOf(\":\") != -1 || (targetPage != \"\" && !validURL(targetPage)))" + DocletConstants.NL + 314 " if (targetPage.indexOf(\":\") != -1 || (targetPage != \"\" && !validURL(targetPage)))" + DocletConstants.NL +
315 " targetPage = \"undefined\";" + DocletConstants.NL + 315 " targetPage = \"undefined\";" + DocletConstants.NL +
316 " function validURL(url) {" + DocletConstants.NL + 316 " function validURL(url) {" + DocletConstants.NL +
317 " if (!(url.indexOf(\".html\") == url.length - 5))" + DocletConstants.NL + 317 " var pos = url.indexOf(\".html\");" + DocletConstants.NL +
318 " if (pos == -1 || pos != url.length - 5)" + DocletConstants.NL +
318 " return false;" + DocletConstants.NL + 319 " return false;" + DocletConstants.NL +
319 " var allowNumber = false;" + DocletConstants.NL + 320 " var allowNumber = false;" + DocletConstants.NL +
320 " var allowSep = false;" + DocletConstants.NL + 321 " var allowSep = false;" + DocletConstants.NL +
321 " var seenDot = false;" + DocletConstants.NL + 322 " var seenDot = false;" + DocletConstants.NL +
322 " for (var i = 0; i < url.length - 5; i++) {" + DocletConstants.NL + 323 " for (var i = 0; i < url.length - 5; i++) {" + DocletConstants.NL +

mercurial