summaryrefslogtreecommitdiffstats
path: root/comm/suite/extensions/debugQA/content/debugQAMenuOverlay.xul
blob: 45167cbe758ec3ee569b0802ed42230b312a7a10 (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<?xml version="1.0"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->

<overlay id="debugQAMenuOverlay"
         xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">

<script src="chrome://debugQA/content/debugQAMenuOverlay.js"/>

  <!-- Menu -->
  <menubar id="main-menubar">
    <!-- Menu for testing. -->
    <menu id="debugMenu" accesskey="U" label="Debug" insertbefore="menu_Help">
      <menupopup id="menu_Debug_Popup">
        <menuitem label="Verification"
                  oncommand="openQAUrl('https://www.seamonkey-project.org/dev/qa-verification');"/>

        <menuseparator/>

        <menu label="Viewer Demos">
          <menupopup>
            <menuitem label="#0 Basic Styles"
                      oncommand="openQAUrl('https://www-archive.mozilla.org/newlayout/samples/test0.html');"/>
            <menuitem label="#1 CSS Styles"
                      oncommand="openQAUrl('https://www-archive.mozilla.org/newlayout/samples/test1.html');"/>
            <menuitem label="#2 Images"
                      oncommand="openQAUrl('https://www-archive.mozilla.org/newlayout/samples/test2.html');"/>
            <menuitem label="#3 Basic Tables"
                      oncommand="openQAUrl('https://www-archive.mozilla.org/newlayout/samples/test3.html');"/>
            <menuitem label="#4 Simple Tables"
                      oncommand="openQAUrl('https://www-archive.mozilla.org/newlayout/samples/test4.html');"/>
            <menuitem label="#5 More Styles"
                      oncommand="openQAUrl('https://www-archive.mozilla.org/newlayout/samples/test5.html');"/>
            <menuitem label="#6 Deeply Nested Tables"
                      oncommand="openQAUrl('https://www-archive.mozilla.org/newlayout/samples/test6.html');"/>
            <menuitem label="#7 Scaled Anim Image"
                      oncommand="openQAUrl('https://www-archive.mozilla.org/newlayout/samples/test7.html');"/>
            <menuitem label="#8 Form"
                      oncommand="openQAUrl('https://www-archive.mozilla.org/newlayout/samples/test8.html');"/>
            <menuitem label="#9 Frames"
                      oncommand="openQAUrl('https://www-archive.mozilla.org/newlayout/samples/test9.html');"/>
            <menuitem label="#10 Anim Images"
                      oncommand="openQAUrl('https://www-archive.mozilla.org/newlayout/samples/test10.html');"/>
            <menuitem label="#11 Fixed Positioning"
                      oncommand="openQAUrl('https://www-archive.mozilla.org/newlayout/samples/test11.html');"/>
            <menuitem label="#12 More Fixed Pos"
                      oncommand="openQAUrl('https://www-archive.mozilla.org/newlayout/samples/test12.html');"/>
            <menuitem label="#13 DHTML"
                      oncommand="openQAUrl('https://www-archive.mozilla.org/newlayout/samples/test13.html');"/>
            <menuitem label="#16 Gfx Widgets"
                      oncommand="openQAUrl('https://www-archive.mozilla.org/newlayout/samples/test16.html');"/>
          </menupopup>
        </menu>

        <!-- XBL Test Suite all broken -->
        <menu label="XBL Test Suite" hidden="true" disabled="true">
          <menupopup>
            <menuitem label="#0 Remote XBL"
                      oncommand="openQAUrl('https://www-archive.mozilla.org/projects/xbl/test0/test.xul');"/>
            <menuitem label="#1 Technicolor DIV"
                      oncommand="openQAUrl('https://www-archive.mozilla.org/projects/xbl/test1/test.html');"/>
            <menuitem label="#2 Rollover Madness"
                      oncommand="openQAUrl('https://www-archive.mozilla.org/projects/xbl/test2/test.html');"/>
            <menuitem label="#3 Popups in HTML"
                      oncommand="openQAUrl('https://www-archive.mozilla.org/projects/xbl/test3/test.html');"/>
            <menuitem label="#4 Partition Magic"
                      oncommand="openQAUrl('https://www-archive.mozilla.org/projects/xbl/test4/test.html');"/>
            <menuitem label="#5 Sticky Notes"
                      oncommand="openQAUrl('https://www-archive.mozilla.org/projects/xbl/test5/test.html');"/>
          </menupopup>
        </menu>

        <menu label="Internal Pages">
          <menupopup>
            <menuitem label="Support Page"
                      oncommand="goAbout('support');"/>
            <menuitem label="Networking Status"
                      oncommand="goAbout('networking');"/>
            <menuitem label="Performance Status"
                      oncommand="goAbout('performance');"/>
            <menuitem label="Memory Status"
                      oncommand="goAbout('memory');"/>
          </menupopup>
        </menu>

        <menuseparator/>

        <menuitem label="Composer (with test page)"
                  oncommand="NewEditorWindow('chrome://debugqa/content/EditorInitPage.html');"/>
        <menuitem label="Flush Memory"
                  oncommand="flushMemory();"/>
        <menuitem label="Show Configuration Editor"
                  oncommand="goAbout('config');"/>
      </menupopup>
    </menu>

    <menu id="qaMenu" accesskey="Q" label="QA" insertbefore="menu_Help">
      <menupopup id="qaMenuPopup">
        <menuitem label="Getting Involved"
                  oncommand="openQAUrl('https://www.seamonkey-project.org/dev/get-involved');"/>
        <menuitem label="SeaMonkey QA"
                  oncommand="openQAUrl('https://wiki.mozilla.org/SeaMonkey:QA');"/>
        <menuitem label="Useful Sites"
                  oncommand="openQAUrl('https://www.seamonkey-project.org/dev/useful-sites');"/>

        <menuseparator/>

        <menuitem label="Frequently Reported Bugs"
                  oncommand="openQAUrl('https://bugzilla.mozilla.org/duplicates.cgi');"/>
        <menuitem label="Bug Writing Guidelines"
                  oncommand="openQAUrl('https://developer.mozilla.org/docs/Mozilla/QA/Bug_writing_guidelines');"/>
        <menuitem label="File a Bug"
                  oncommand="openQAUrl('https://bugzilla.mozilla.org/enter_bug.cgi?format=guided#h=dupes|SeaMonkey');"/>

        <menuseparator/>

        <menuitem label="Bugs Filed Today"
                  oncommand="openQAUrl('https://bugzilla.mozilla.org/buglist.cgi?product=Core&amp;product=MailNews+Core&amp;product=SeaMonkey&amp;chfieldfrom=0d&amp;chfieldto=Now&amp;chfield=%5BBug+creation%5D');"/>
        <menuitem label="Tree Status"
                  oncommand="openQAUrl('https://treestatus.mozilla-releng.net/static/ui/treestatus/');"/>
        <menuseparator/>
        <menuitem label="Recent SeaMonkey website Checkins"
                  oncommand="openQAUrl('https://hg.mozilla.org/SeaMonkey/seamonkey-project-org/pushloghtml?startdate=2+weeks+ago&amp;enddate=now');"/>
        <menuitem label="Recent gitlab SeaMonkey website Checkins"
                  oncommand="openQAUrl('https://gitlab.com/seamonkey-project/website/activity/');"/>
        <menuseparator/>
        <menuitem label="Recent comm-central Checkins"
                  oncommand="openQAUrl('https://hg.mozilla.org/comm-central/pushloghtml?startdate=24+hours+ago&amp;enddate=now');"/>
        <menuitem label="Recent mozilla-central Checkins"
                  oncommand="openQAUrl('https://hg.mozilla.org/mozilla-central/pushloghtml?startdate=24+hours+ago&amp;enddate=now');"/>
        <menuitem label="Recent comm-esr102 Checkins"
                  oncommand="openQAUrl('https://hg.mozilla.org/releases/comm-esr102/pushloghtml?startdate=2+weeks+ago&amp;enddate=now');"/>
        <menuitem label="Recent mozilla-esr102 Checkins"
                  oncommand="openQAUrl('https://hg.mozilla.org/releases/mozilla-esr102/pushloghtml?startdate=2+weeks+ago&amp;enddate=now');"/>
        <menuitem label="Recent gitlab 2.53 comm Activity"
                  oncommand="openQAUrl('https://gitlab.com/seamonkey-project/seamonkey-2.53-comm/activity/');"/>
        <menuitem label="Recent gitlab 2.53 mozilla Activity"
                  oncommand="openQAUrl('https://gitlab.com/seamonkey-project/seamonkey-2.53-mozilla/activity/');"/>
        <menuitem label="Recent gitlab 2.53 l10n Activity"
                  oncommand="openQAUrl('https://gitlab.com/seamonkey-project/seamonkey-2.53-l10n/activity/');"/>
        <menuseparator/>
        <menuitem label="Daily unofficial 2.53 Builds"
                  oncommand="openQAUrl('https://www.wg9s.com/comm-253/');"/>
      </menupopup>
    </menu>
  </menubar>

</overlay>