index.html 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>x_file_assemble_control</title>
  6. <script src="jquery.js"></script>
  7. <script src="common.js"></script>
  8. <script src="attachment.js"></script>
  9. <script src="file.js"></script>
  10. <script>
  11. $(document).ready(function() {
  12. attachment_get_init();
  13. });
  14. </script>
  15. </head>
  16. <body style="margin: 0; font-size: 1.0em; font-family: Microsoft Yahei">
  17. <div id="container" style="width: 1000px; margin: 0 auto;">
  18. <div id="header"
  19. style="background-color: #4682B4; clear: both; text-align: center;">
  20. x_file_assemble_control</div>
  21. <div id="menu"
  22. style="background-color: #B0E0E6; height: 950px; width: 280px; float: left;">
  23. <ul>
  24. <li>Attachment
  25. <ul>
  26. <li><a onclick="attachment_get_init()" href="#">Get</a></li>
  27. </ul>
  28. </li>
  29. <li>File
  30. <ul>
  31. <li><a onclick="file_list_referenceType()" href="#">List
  32. ReferenceType</a></li>
  33. <li><a onclick="file_get_init()" href="#">Get</a></li>
  34. <li><a onclick="file_list_next('(0)')" href="#">List</a></li>
  35. <li><a onclick="file_list_withReferenceType_init()" href="#">List
  36. With ReferenceType</a></li>
  37. <li><a onclick="file_list_next_all('(0)')" href="#">List
  38. All</a></li>
  39. <li><a onclick="file_upload_init()" href="#">Upload</a></li>
  40. <li><a onclick="file_download_init()" href="#">Download</a></li>
  41. <li><a onclick="file_copy_init()" href="#">Copy</a></li>
  42. </ul>
  43. </li>
  44. <li>Debug
  45. <ul>
  46. <li><a onclick="debug_init()" href="#">Debug</a></li>
  47. </ul>
  48. </li>
  49. </ul>
  50. </div>
  51. <div style="float: left; width: 720px;">
  52. <div id="content" style="width: 100%;">&nbsp;</div>
  53. <div id="result"
  54. style="width: 100%; white-space: pre; font-size: 10px; word-break: break-all; word-wrap: break-word;">
  55. &nbsp;</div>
  56. </div>
  57. <div id="footer"
  58. style="background-color: #4682B4; clear: both; text-align: center; display: none">
  59. Copyright © x</div>
  60. </div>
  61. </body>
  62. </html>