appinfo.html 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <!DOCTYPE html>
  2. <!--
  3. ~ /*
  4. ~ * Copyright (C) 2016 Amit Shekhar
  5. ~ * Copyright (C) 2011 Android Open Source Project
  6. ~ *
  7. ~ * Licensed under the Apache License, Version 2.0 (the "License");
  8. ~ * you may not use this file except in compliance with the License.
  9. ~ * You may obtain a copy of the License at
  10. ~ *
  11. ~ * http://www.apache.org/licenses/LICENSE-2.0
  12. ~ *
  13. ~ * Unless required by applicable law or agreed to in writing, software
  14. ~ * distributed under the License is distributed on an "AS IS" BASIS,
  15. ~ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. ~ * See the License for the specific language governing permissions and
  17. ~ * limitations under the License.
  18. ~ */
  19. -->
  20. <html lang="en">
  21. <head>
  22. <title>YYDebugDatabase - iOS Database Debugging</title>
  23. <meta charset="utf-8">
  24. <meta name="viewport" content="width=device-width, initial-scale=1">
  25. <link rel='shortcut icon' href='favicon.ico' type='image/x-icon'>
  26. <script type= "text/javascript" src="jquery.min.js"></script>
  27. <script type= "text/javascript" src="bootstrap.min.js"></script>
  28. <script type= "text/javascript" src="jquery.dataTables.min.js"></script>
  29. <script type= "text/javascript" src="dataTables.altEditor.free.js"></script>
  30. <script type= "text/javascript" src="dataTables.buttons.min.js"></script>
  31. <script type= "text/javascript" src="dataTables.select.min.js"></script>
  32. <script type= "text/javascript" src="dataTables.responsive.min.js"></script>
  33. <link href="bootstrap.min.css" rel="stylesheet">
  34. <link href="custom.css" rel="stylesheet">
  35. <link href="jquery.dataTables.min.css" rel="stylesheet">
  36. <link href="buttons.dataTables.min.css" rel="stylesheet">
  37. <link href="select.dataTables.min.css" rel="stylesheet">
  38. <link href="responsive.dataTables.min.css" rel="stylesheet">
  39. </head>
  40. <body onload='getAppInfo()'>
  41. <!-- Navigation -->
  42. <nav class="navbar navbar-default navbar-fixed-top" role="navigation">
  43. <div class="container">
  44. <!-- Brand and toggle get grouped for better mobile display -->
  45. <div class="navbar-header">
  46. <button type="button" class="navbar-toggle" data-toggle="collapse"
  47. data-target="#bs-example-navbar-collapse-1">
  48. <span class="sr-only">Toggle navigation</span>
  49. <span class="icon-bar"></span>
  50. <span class="icon-bar"></span>
  51. <span class="icon-bar"></span>
  52. </button>
  53. <a class="navbar-brand" href="index.html">iOS Debug Database</a>
  54. </div>
  55. <!-- Collect the nav links, forms, and other content for toggling -->
  56. <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
  57. <ul class="nav navbar-nav navbar-right">
  58. <li>
  59. <a href="index.html">Database</a>
  60. </li>
  61. <li>
  62. <a href="http://modelend.com/"
  63. target="_blank">Modelend</a>
  64. </li>
  65. <li>
  66. <a href="https://github.com/y500/YYDebugDatabase"
  67. target="_blank">Github</a>
  68. </li>
  69. </ul>
  70. </div>
  71. <!-- /.navbar-collapse -->
  72. </div>
  73. <!-- /.container -->
  74. </nav>
  75. <div class="container padding-fifty">
  76. <div class="row padding-twenty">
  77. <div id="parent-appinfo-div" class="">
  78. <div class="panel panel-info">
  79. <div class="panel-heading">App Infomation</div>
  80. </div>
  81. </div>
  82. <div style="height: 50px"></div>
  83. <div id="parent-data-div" class="">
  84. <div class="panel panel-info">
  85. <div class="panel-heading">Userdefault</div>
  86. </div>
  87. </div>
  88. </div>
  89. <div id="snackbar">Data Updated Successfully</div>
  90. </div>
  91. <script type= "text/javascript" src="app.js"></script>
  92. </body>
  93. </html>