summaryrefslogtreecommitdiffstats
path: root/extensions/BMO/template/en/default/bug/create/custom_forms.none.tmpl
blob: 0d37a1386c93e0f899e6c8e4f55c98d094215ee7 (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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
[%# 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/.
  #
  # This Source Code Form is "Incompatible With Secondary Licenses", as
  # defined by the Mozilla Public License, v. 2.0.
  #%]

[%# link  => url (can be relative to bugzilla.mozilla.org, or full url)
  # title => visible title
  # group => optional group name, if present the form won't be show to
  #          users not in this group
  # hide  => optional boolean, if true the form will not be shown on
  #          enter_bug (but will be visible on the custom forms list)
  #%]

[%
custom_forms = {
  "addons.mozilla.org" => [
    {
      link  => "https://github.com/mozilla/addons/issues",
      title => "Report an issue with addons.mozilla.org on GitHub."
    }
  ],
  "mozilla.org" => [
    {
      link  => "form.moz.project.review",
      title => "Mozilla Project Review",
      group => "mozilla-employee-confidential",
    },
    {
      link  => "form.trademark",
      title => "Trademark Usage Requests",
    },
    {
      link  => "form.gear",
      title => "Mozilla Gear Request",
      group => "mozilla-employee-confidential",
    },
    {
      link  => "form.poweredby",
      title => "Powered by Mozilla Logo Requests",
    },
    {
      link  => "form.mozlist",
      title => "Mozilla Discussion Forum Requests",
      group => "mozilla-employee-confidential",
    },
  ],
  "Marketing" => [
    {
      link  => "form.user.engagement",
      title => "User Engagement Initiation Form",
      group => "mozilla-employee-confidential",
    },
    {
      link  => "form.gear",
      title => "Mozilla Gear Request",
      group => "mozilla-employee-confidential",
    },
    {
      link  => "form.creative",
      title => "Brand Engagement Initiation Form",
      group => "mozilla-employee-confidential",
    },
    {
      link  => "form.poweredby",
      title => "Powered by Mozilla Logo Requests",
    },
    {
      link  => "form.comm.newsletter",
      title => "Mozilla Communities Newsletter",
    },
    {
      link  => "form.costume",
      title => "Firefox Costume Requests",
    },
  ],
  "Finance" => [
    {
      link  => "form.finance",
      title => "Finance Request",
      group => "mozilla-employee-confidential",
    },
  ],
  "Mozilla PR" => [
    {
      link  => "form.mozpr",
      title => "PR Project Form",
      group => "pr-private",
    },
  ],
  "Infrastructure & Operations" => [
    {
      link  => "form.itrequest",
      title => "IT Request Form",
      group => "mozilla-employee-confidential",
    },
    {
      link  => "form.mozlist",
      title => "Mozilla Discussion Forum Requests",
      group => "mozilla-employee-confidential",
    },
  ],
  "Tech Evangelism" => [
    {
      link  => "form.mobile.compat",
      title => "Mobile Web Compatibility Problem",
    },
  ],
  "Air Mozilla" => [
    {
      link  => "https://air.mozilla.org/requests/",
      title => "Air Mozilla/Brown Bag Request",
      group => "mozilla-employee-confidential",
    },
  ],
  "Websites" => [
    {
      link  => "form.web.bounty",
      title => "Web Bounty Form",
    },
  ],
  "Firefox" => [
    {
      link  => "form.screen.share.whitelist",
      title => "Firefox Screen Sharing Whitelist Submission",
      hide  => 1,
    }
  ],
  "Testing" => [
    {
      link  => "form.automative",
      title => "Automation Request Form",
    },
  ],
  "Developer Engagement" => [
    {
      link  => "form.dev.engagement.event",
      title => "Developer Events Request Form",
    },
  ],
  "developer.mozilla.org" => [
    {
      link  => "form.mdn",
      title => "MDN Web Docs Feedback",
    },
  ],
  "Internet Public Policy" => [
    {
      link  => "form.ipp",
      title => "Internet Public Policy Issue",
    },
  ],
  "Data Compliance" => [
    {
      link  => "form.data.compliance",
      title => "Data Compliance Form",
    },
  ],
  "Recruiting" => [
    {
      link => "form.recruiting",
      title => "Recruiting Requests",
    },
    {
       link => "form.intern",
       title => "Intern Requests",
    },
  ]
  "Legal" => [
    {
      title => 'Mozilla Foundation Vendor Request',
      link  => 'enter_bug.cgi?product=Mozilla%20Foundation%20Operations',
    },
    {
      title => 'Mozilla Corporation Vendor Request',
      link  => 'form.moz.project.review'
    },
    {
      title => 'Commercial (Partner) Agreement',
      link  => 'form.moz.project.review'
    },
    {
      title => 'Independent Contractor Request',
      link  => 'form.moz.project.review'
    },
    {
      title => "NDA Request",
      link  => "form.nda",
    },
    {
      title => "Name Clearance Request",
      link  => "form.name.clearance",
    }
  ],
}
%]