summaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/test/views/layouts/main.jade
blob: ccc08eb3ad85d0e0e1542ce8ae442efd368b66e5 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
html
  head
    meta(http-equiv='Content-Type', content='text/html; charset=UTF-8')
    link(href='/css/sonar.css', rel='stylesheet', media='all')

    script(src='/js/libs/translate.js')
    script(src='/js/libs/third-party/jquery.js')
    script(src='/js/libs/third-party/jquery-ui.js')
    script(src='/js/libs/third-party/d3.js')
    script(src='/js/libs/third-party/latinize.js')
    script(src='/js/libs/third-party/underscore.js')
    script(src='/js/libs/third-party/backbone.js')
    script(src='/js/libs/third-party/backbone-super.js')
    script(src='/js/libs/third-party/backbone.marionette.js')
    script(src='/js/libs/third-party/handlebars.js')
    script(src='/js/libs/third-party/underscore.js')
    script(src='/js/libs/third-party/select2.js')
    script(src='/js/libs/third-party/keymaster.js')
    script(src='/js/libs/third-party/moment.js')
    script(src='/js/libs/third-party/numeral.js')
    script(src='/js/libs/third-party/numeral-languages.js')
    script(src='/js/libs/third-party/bootstrap/tooltip.js')
    script(src='/js/libs/third-party/bootstrap/dropdown.js')
    script(src='/js/libs/third-party/md5.js')
    script(src='/js/libs/select2-jquery-ui-fix.js')
    script(src='/js/libs/widgets/base.js')
    script(src='/js/libs/widgets/widget.js')
    script(src='/js/libs/widgets/bubble-chart.js')
    script(src='/js/libs/widgets/timeline.js')
    script(src='/js/libs/widgets/stack-area.js')
    script(src='/js/libs/widgets/pie-chart.js')
    script(src='/js/libs/widgets/histogram.js')
    script(src='/js/libs/widgets/word-cloud.js')
    script(src='/js/libs/widgets/tag-cloud.js')
    script(src='/js/libs/widgets/treemap.js')
    script(src='/js/libs/graphics/pie-chart.js')
    script(src='/js/libs/graphics/barchart.js')
    script(src='/js/libs/sortable.js')
    script(src='/js/libs/inputs.js')
    script(src='/js/components/common/dialogs.js')
    script(src='/js/components/common/processes.js')
    script(src='/js/components/common/jquery-isolated-scroll.js')
    script(src='/js/components/common/handlebars-extensions.js')
    script(src='/js/libs/application.js')
    script(src='/js/libs/csv.js')
    script(src='/js/libs/dashboard.js')
    script(src='/js/libs/recent-history.js')
    script(src='/js/libs/third-party/require.js')

    script(src='/js/libs/third-party/jquery.mockjax.js')
    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: ''
        }
      };

    script.
      requirejs.config({ baseUrl: baseUrl + '/js' });
    block header
  body
    #body
      block body