summaryrefslogtreecommitdiffstats
path: root/extensions/REMO/template/en/default/bug/create/create-remo-it.html.tmpl
blob: aeea160a4c03902d3d090596c502b84d83464e36 (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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
[%# 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.
  #%]

[% PROCESS global/variables.none.tmpl %]

[% PROCESS global/header.html.tmpl
   onload = "init()"
   title = "Community IT Request"
   style_urls = [ "extensions/REMO/web/styles/moz_reps.css" ]
%]

[% USE Bugzilla %]
[% mandatory = '<span class="mandatory" title="Required">*</span>' %]

<script type="text/javascript">
var Dom = YAHOO.util.Dom;

function mandatory(elements) {
  result = true;
  for (i in elements) {
    element = elements[i];

    if (typeof(element) == "object") {
      missing = true;
      for (j = 0; j < element.length; j++) {
        if (element[j].checked) {
          missing = false;
          break;
        }
      }

      if (missing) {
        Dom.addClass(element[0].name, 'missing');
      } else {
        Dom.removeClass(element[0].name, 'missing');
      }
    } else {
      el = Dom.get(element);
      value = el.value.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
      el.value = value;

      if (value == '') {
        Dom.addClass(element, 'missing');
        result = false;
      } else {
        Dom.removeClass(element, 'missing');
      }
    }
  }
  return result;
}

function submitForm() {
  fields = [ 'name', 'mozillian', 'community', document.forms.f.items ];
  if (Dom.get('item_hosting').checked) {
    fields.push('hosting_visits');
    fields.push('hosting_running');
  }
  if (Dom.get('item_domain').checked
      || Dom.get('item_apps_email').checked
      || Dom.get('item_ssl').checked
  ) {
    fields.push('domain_name');
  }
  if (Dom.get('item_other').checked) {
    fields.push('other_value');
  }

  if (!mandatory(fields)) {
    alert('Please enter all the required fields.');
    return false;
  }

  Dom.get('short_desc').value =
    "IT Request: " + Dom.get('community').value + ' (' + Dom.get('name').value + ')';
  return true;
}

function setItemVisibility() {
  if (Dom.get('item_hosting').checked) {
    Dom.removeClass('hosting', 'bz_default_hidden');
  } else {
    Dom.addClass('hosting', 'bz_default_hidden');
  }
  if (Dom.get('item_domain').checked
      || Dom.get('item_apps_email').checked
      || Dom.get('item_ssl').checked
  ) {
    var title = [];
    if (Dom.get('item_apps_email').checked)
      title.push('Google Apps Email');
    if (Dom.get('item_domain').checked)
      title.push('Domain');
    if (Dom.get('item_ssl').checked)
      title.push('SSL');
    Dom.get('domain_title').innerHTML = title.join(', ');
    Dom.removeClass('domain', 'bz_default_hidden');
  } else {
    Dom.addClass('domain', 'bz_default_hidden');
  }
  if (Dom.get('item_other').checked) {
    Dom.removeClass('other', 'bz_default_hidden');
  } else {
    Dom.addClass('other', 'bz_default_hidden');
  }
}

function init() {
  items = document.forms.f.items;
  for (i = 0; i < items.length; i++) {
    YAHOO.util.Event.on(items[i], 'click', setItemVisibility);
  }
  setItemVisibility();
}

</script>

<noscript>
<h1>Javascript is required to use this form.</h1>
</noscript>

<h1>Community IT Request</h1>

<form method="post" action="post_bug.cgi" id="tmRequestForm" name="f">
<input type="hidden" name="product" value="Mozilla Reps">
<input type="hidden" name="component" value="Community IT Requests">
<input type="hidden" name="bug_severity" value="normal">
<input type="hidden" name="rep_platform" value="All">
<input type="hidden" name="priority" value="--">
<input type="hidden" name="op_sys" value="Other">
<input type="hidden" name="version" value="unspecified">
<input type="hidden" name="groups" value="mozilla-reps">
<input type="hidden" name="format" value="[% format FILTER html %]">
<input type="hidden" name="comment" id="comment" value="">
<input type="hidden" name="short_desc" id="short_desc" value="">
<input type="hidden" name="token" value="[% token FILTER html %]">

<table id="reps-form">

<tr class="odd">
  <th>Your Name:[% mandatory FILTER none %]</th>
  <td><input id="name" name="name" size="40" value="[% user.name FILTER html %]"></td>
</tr>

<tr class="even">
  <th>Mozillians.org Profile:[% mandatory FILTER none %]</th>
  <td><input id="mozillian" name="mozillian" size="40"></td>
</tr>

<tr class="odd">
  <th>Reps Profile (if applicable):</th>
  <td><input id="reps" name="reps" size="40"></td>
</tr>

<tr class="even">
  <th>Your Community's Name:[% mandatory FILTER none %]</th>
  <td><input id="community" name="community" size="40"></td>
</tr>

<tr class="odd">
  <th>
    Items Requesting:[% mandatory FILTER none %]
  </th>
  <td>
    <div id="items">
      <div>
        <input type="checkbox" name="items" value="hosting" id="item_hosting">
        <label for="item_hosting">Hosting</label>
      </div>
      <div>
        <input type="checkbox" name="items" value="apps_email" id="item_apps_email">
        <label for="item_apps_email">Google Apps Emails</label>
      </div>
      <div>
        <input type="checkbox" name="items" value="domain" id="item_domain">
        <label for="item_domain">Domain</label>
      </div>
      <div>
        <input type="checkbox" name="items" value="ssl" id="item_ssl">
        <label for="item_ssl">SSL</label>
      </div>
      <div>
        <input type="checkbox" name="items" value="other" id="item_other">
        <label for="item_other">Other</label>
      </div>
    </div>
  </td>
</tr>

<tbody id="hosting">
<tr class="even">
  <th colspan="2">Hosting</th>
</tr>
<tr class="odd">
  <th>Expected visits per month:[% mandatory FILTER none %]</th>
  <td><input id="hosting_visits" name="hosting_visits" size="40"></td>
</tr>
<tr class="odd">
  <th>What will run on the hosting?:[% mandatory FILTER none %]</th>
  <td><textarea id="hosting_running" name="hosting_running" class="small"></textarea></td>
</tr>
<tr class="odd">
  <th>Data:</td>
  <td>
    Any data we can use to help choose the best solution (traffic graphs etc).<br>
    <textarea id="hosting_data" name="hosting_data" class="small"></textarea>
  </td>
</tr>
</tbody>

<tbody id="domain">
<tr class="even">
  <th colspan="2" id="domain_title">Domain</th>
</tr>
<tr class="odd">
  <th>Domain Name:[% mandatory FILTER none %]</th>
  <td><input id="domain_name" name="domain_name" size="40"></td>
</tr>
</tbody>

<tbody id="other">
<tr class="even">
  <th colspan="2">Other Item</th>
</tr>
<tr class="odd">
  <th>Other:[% mandatory FILTER none %]</th>
  <td><input id="other_value" name="other_value" size="40"></td>
</tr>
</tbody>

<tr class="even">
  <th colspan="2">
    Other Comments
  </th>
</tr>
<tr class="even">
  <td colspan="2">
    Please explain why you'd like the hosting, and anything else this form does not include.<br>
    <textarea id="comments" name="comments" rows="4"></textarea>
  </td>
</tr>

<tr class="even">
  <td colspan="2">
    <input id="submit" type="submit" value="Submit" onclick="return submitForm()">
  </td>
</tr>

<tr class="even">
  <td width="35%">&nbsp;</td>
  <td width="65%">&nbsp;</td>
</tr>

</table>

</form>

[% PROCESS global/footer.html.tmpl %]