aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/test/medium/base.html
blob: aca0d14ad6aa8ac8e12b225022ff2e24e55b6666 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <link href="../../src/main/webapp/css/sonar.css" rel="stylesheet" media="all">
  <script src="../../src/main/webapp/js/sonar.js"></script>
  <script src="../../src/main/js/libs/third-party/jquery.mockjax.js"></script>
  <script>
    var baseUrl = '';
    var $j = jQuery.noConflict();
    window.suppressTranslationWarnings = true;
    jQuery.mockjaxSettings.contentType = 'text/json';
    jQuery.mockjaxSettings.responseTime = 50;
    jQuery(document).ready(function () {
      $j('.open-modal').modal();
    });
    window.SS = {
      hoursInDay: 8,
      user: '',
      userName: '',
      userEmail: '',
      lf: {
        enableGravatar: false,
        gravatarServerUrl: ''
      },
      updateCenterActive: true
    };
  </script>
  <script>
    window.sonarqube = {};
    window.sonarqube.el = '#content';
    window.sonarqube.urlRoot = '/test/medium/base.html';
    window.sonarqube.projectId = 'eb294572-a6a4-43cf-acc2-33c2fe37c02e'
    window.sonarqube.file = { uuid: 'uuid', key: 'key' };
  </script>
  <script>
    jQuery.mockjax({ url: '/api/l10n/index', responseText:'{}' });
  </script>
</head>
<body>
<div id="content"></div>
<script src="../../src/main/webapp/js/bundles/main.js"></script>
</body>
</html>