index.html 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
  2. <!-- NewPage -->
  3. <html lang="de">
  4. <head>
  5. <title>ARX API Documentation</title>
  6. <script type="text/javascript">
  7. targetPage = "" + window.location.search;
  8. if (targetPage != "" && targetPage != "undefined")
  9. targetPage = targetPage.substring(1);
  10. if (targetPage.indexOf(":") != -1 || (targetPage != "" && !validURL(targetPage)))
  11. targetPage = "undefined";
  12. function validURL(url) {
  13. try {
  14. url = decodeURIComponent(url);
  15. }
  16. catch (error) {
  17. return false;
  18. }
  19. var pos = url.indexOf(".html");
  20. if (pos == -1 || pos != url.length - 5)
  21. return false;
  22. var allowNumber = false;
  23. var allowSep = false;
  24. var seenDot = false;
  25. for (var i = 0; i < url.length - 5; i++) {
  26. var ch = url.charAt(i);
  27. if ('a' <= ch && ch <= 'z' ||
  28. 'A' <= ch && ch <= 'Z' ||
  29. ch == '$' ||
  30. ch == '_' ||
  31. ch.charCodeAt(0) > 127) {
  32. allowNumber = true;
  33. allowSep = true;
  34. } else if ('0' <= ch && ch <= '9'
  35. || ch == '-') {
  36. if (!allowNumber)
  37. return false;
  38. } else if (ch == '/' || ch == '.') {
  39. if (!allowSep)
  40. return false;
  41. allowNumber = false;
  42. allowSep = false;
  43. if (ch == '.')
  44. seenDot = true;
  45. if (ch == '/' && seenDot)
  46. return false;
  47. } else {
  48. return false;
  49. }
  50. }
  51. return true;
  52. }
  53. function loadFrames() {
  54. if (targetPage != "" && targetPage != "undefined")
  55. top.classFrame.location = top.targetPage;
  56. }
  57. </script>
  58. </head>
  59. <frameset cols="20%,80%" title="Documentation frame" onload="top.loadFrames()">
  60. <frameset rows="30%,70%" title="Left frames" onload="top.loadFrames()">
  61. <frame src="overview-frame.html" name="packageListFrame" title="All Packages">
  62. <frame src="allclasses-frame.html" name="packageFrame" title="All classes and interfaces (except non-static nested types)">
  63. </frameset>
  64. <frame src="overview-summary.html" name="classFrame" title="Package, class and interface descriptions" scrolling="yes">
  65. <noframes>
  66. <noscript>
  67. <div>JavaScript is disabled on your browser.</div>
  68. </noscript>
  69. <h2>Frame Alert</h2>
  70. <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p>
  71. </noframes>
  72. </frameset>
  73. </html>