index.html 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>amfPHP Entry Point</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6. <style type="text/css">
  7. .static, #left, .notParamEditor, pre{
  8. /*don't apply font to ACE editor or else cursor position is messed up. :not selector dones't work, so need
  9. to do it to everything but it' */
  10. font-family: Arial, Helvetica, sans-serif;
  11. color: #33536D;
  12. }
  13. *{
  14. font-size: 15px;
  15. margin: 0px;
  16. padding: 0px;
  17. }
  18. input{
  19. color:black;
  20. }
  21. a, input[type="submit"], button {
  22. color: #007EE5;
  23. cursor:pointer;
  24. text-decoration: none;
  25. }
  26. input, #result, button{
  27. padding: 8px;
  28. border: 1px solid #525252;
  29. -moz-border-radius: 4px;
  30. -webkit-border-radius: 4px;
  31. border-radius: 4px;
  32. margin: 5px;
  33. }
  34. .static {
  35. height: 20px;
  36. padding: 20px;
  37. padding-top: 10px;
  38. border-bottom: 1px solid #525252;
  39. }
  40. #titleSpan {
  41. font-size: 24px;
  42. }
  43. .static ul {
  44. float: right;
  45. list-style-type: none;
  46. margin-top: 7px;
  47. }
  48. .static a{
  49. padding-right: 20px;
  50. }
  51. .static ul li {
  52. float: left;
  53. margin-left: 20px;
  54. }
  55. #left li ul {
  56. padding-left: 15px;
  57. margin-bottom: 10px;
  58. }
  59. #left{
  60. float: left;
  61. margin: 20px;
  62. }
  63. #right {
  64. float: left;
  65. margin-top: 20px;
  66. position:relative;
  67. border-left: 1px solid #525252;
  68. }
  69. #right form {
  70. margin-bottom: 20px;
  71. }
  72. .menu {
  73. padding: 16px;
  74. margin-bottom:16px;
  75. }
  76. .menu li {
  77. margin-left: 15px;
  78. margin-bottom: 2px;
  79. }
  80. .menu li b {
  81. font-size: 14px;
  82. }
  83. .menu a{
  84. padding-right: 10px;
  85. }
  86. .underline {
  87. text-decoration: underline;
  88. }
  89. #signin input{
  90. margin-left: 0;
  91. margin-right: 0;
  92. }
  93. #signin input[type="submit"] {
  94. float: right;
  95. }
  96. input[type="submit"], button {
  97. padding: 5px;
  98. margin: 5px;
  99. background: #FFFFFF;
  100. }
  101. #serviceMethods{
  102. margin-top: 20px;
  103. }
  104. h3{
  105. padding: 5px;
  106. }
  107. #dataView{
  108. padding: 5px;
  109. }
  110. #dataView#tree{
  111. font-size: 12px;
  112. }
  113. .warning{
  114. color:red;
  115. }
  116. .paramEditorContainer{
  117. /*
  118. The editor must be created in a div with absolute position. So use a wrapper for positioning.
  119. See http://dylemma.io/post/4
  120. */
  121. position: relative;
  122. height: 4em;
  123. width: 500px;
  124. margin:5px;
  125. border: 1px solid #525252;
  126. }
  127. button img,
  128. button span {
  129. vertical-align: middle;
  130. }
  131. #newsBtn{
  132. /*
  133. Hide news button by default
  134. */
  135. display:none;
  136. }
  137. #chartDivContainer{
  138. background-color: white;
  139. padding: 10px;
  140. }
  141. #controls{
  142. margin-bottom: 10px;
  143. }
  144. .jqplot-table-legend{
  145. z-index: 1;
  146. }
  147. #divRss{
  148. max-width: 300px;
  149. }
  150. </style>
  151. </head>
  152. <body>
  153. <div class='static'>
  154. <span id="titleSpan">AmfPHP Entry Point</span>
  155. <ul>
  156. <li><a href="http://www.silexlabs.org/amfphp/feedback/">Feedback</a></li>
  157. <li><a href="http://www.silexlabs.org/groups/amfphp/amfphp-users/">Forum</a></li>
  158. <li><a href="http://www.silexlabs.org/amfphp/documentation/">Documentation</a></li>
  159. <li><a href="http://community.silexlabs.org/amfphp/reference/">Class Reference</a></li>
  160. <li><a href="https://github.com/silexlabs/amfphp-2.0">Source Code</a></li>
  161. <li><a href="http://www.silexlabs.org/amfphp/">AmfPHP Website</a></li>
  162. <li><a href="http://www.silexlabs.org/">Silex Labs</a></li>
  163. <li><a href="http://www.silexlabs.org/category/exchange/exchange-amfphp/">More Plugins</a></li>
  164. </ul>
  165. </div> <div id='content'>
  166. This is the URL where you must send your requests to process them. In the <a href="http://www.silexlabs.org/amfphp/documentation/">documentation</a> it is known as the 'entry point'. You might also see 'gateway' in some other documentation.
  167. <br/>
  168. <br/>
  169. </div>
  170. </body>
  171. </html>