|
@@ -118,9 +118,7 @@ View::show_header(($NewRequest ? 'Create a request' : 'Edit a request'), 'bbcode
|
118
|
118
|
</tr>
|
119
|
119
|
<? if ($NewRequest || $CanEdit) { ?>
|
120
|
120
|
<tr>
|
121
|
|
- <td class="label">
|
122
|
|
- Type
|
123
|
|
- </td>
|
|
121
|
+ <td class="label tooltip" title="What alphabet the sequence uses, n.b., plasmids fit in the Other category">Type</td>
|
124
|
122
|
<td>
|
125
|
123
|
<? if (!empty($Disabled)) { ?>
|
126
|
124
|
<input type="hidden" name="type" value="<?=$CategoryName?>" />
|
|
@@ -168,40 +166,34 @@ View::show_header(($NewRequest ? 'Create a request' : 'Edit a request'), 'bbcode
|
168
|
166
|
</td>
|
169
|
167
|
</tr>
|
170
|
168
|
<tr>
|
171
|
|
- <td class="label">Title</td>
|
|
169
|
+ <td class="label tooltip" title="FASTA definition line, e.g., Alcohol dehydrogenase ADH1">Sequence Name</td>
|
172
|
170
|
<td>
|
173
|
171
|
<input type="text" id="title" name="title" size="45" value="<?=(!empty($Title) ? $Title : '')?>" <?=$Disabled?>/>
|
174
|
172
|
</td>
|
175
|
173
|
</tr>
|
176
|
174
|
<tr>
|
177
|
|
- <td class="label">Romaji Title</td>
|
|
175
|
+ <td class="label tooltip" title="FASTA organism line binomial nomenclature, e.g., Saccharomyces cerevisiae">Organism</td>
|
178
|
176
|
<td>
|
179
|
177
|
<input type="text" id="title_rj" name="title_rj" size="45" value="<?=(!empty($TitleRJ) ? $TitleRJ : '')?>" <?=$Disabled?>/>
|
180
|
178
|
</td>
|
181
|
179
|
</tr>
|
182
|
180
|
<tr>
|
183
|
|
- <td class="label">Japanese Title</td>
|
|
181
|
+ <td class="label tooltip" title="FASTA organism line if applicable, e.g., S288C">Strain/Variety</td>
|
184
|
182
|
<td>
|
185
|
183
|
<input type="text" id="title_jp" name="title_jp" size="45" value="<?=!empty($TitleJP)?$TitleJP:''?>" <?=$Disabled?>/>
|
186
|
184
|
</td>
|
187
|
185
|
</tr>
|
188
|
|
- <tr id="dlsiteid_tr">
|
189
|
|
- <td class="label">DLSite ID</td>
|
190
|
|
- <td>
|
191
|
|
- <input type="text" id="dlsiteid" name="dlsiteid" size="15" value="<?=isset($DLsiteID)?$DLsiteID:''?>" <?=$Disabled?>/>
|
192
|
|
- </td>
|
193
|
|
- </tr>
|
194
|
186
|
<? } ?>
|
195
|
187
|
<? if ($NewRequest || $CanEdit) { ?>
|
196
|
188
|
<tr id="image_tr">
|
197
|
|
- <td class="label">Image</td>
|
|
189
|
+ <td class="label tooltip" title="A meaningful picture, e.g., of the specimen">Picture</td>
|
198
|
190
|
<td>
|
199
|
191
|
<input type="text" id="image" name="image" size="45" value="<?=(!empty($Image) ? $Image : '')?>" <?=$Disabled?>/>
|
200
|
192
|
</td>
|
201
|
193
|
</tr>
|
202
|
194
|
<? } ?>
|
203
|
195
|
<tr>
|
204
|
|
- <td class="label">Tags</td>
|
|
196
|
+ <td class="label tooltip" title="Comma-seperated list of tags, n.b., use vanity.house for data you produced">Tags</td>
|
205
|
197
|
<td>
|
206
|
198
|
<?
|
207
|
199
|
$GenreTags = $Cache->get_value('genre_tags');
|
|
@@ -227,10 +219,6 @@ View::show_header(($NewRequest ? 'Create a request' : 'Edit a request'), 'bbcode
|
227
|
219
|
<? } ?>
|
228
|
220
|
</select>
|
229
|
221
|
<input type="text" id="tags" name="tags" size="45" value="<?=(!empty($Tags) ? display_str($Tags) : '')?>"<? Users::has_autocomplete_enabled('other'); ?> <?=$Disabled?>/>
|
230
|
|
- <br />
|
231
|
|
- Tags should be comma-separated, and you should use a period (".") to separate words inside a tag — e.g. "<strong class="important_text_alt">big.breasts</strong>".
|
232
|
|
- <br /><br />
|
233
|
|
- There is a list of official tags to the left of the text box. Please use these tags instead of "unofficial" tags (e.g. use the official "<strong class="important_text_alt">nakadashi</strong>" tag, instead of an unofficial "<strong class="important_text">creampie</strong>" tag.).
|
234
|
222
|
</td>
|
235
|
223
|
</tr>
|
236
|
224
|
<? if ($NewRequest || $CanEdit) { ?>
|
|
@@ -264,7 +252,7 @@ View::show_header(($NewRequest ? 'Create a request' : 'Edit a request'), 'bbcode
|
264
|
252
|
<? }
|
265
|
253
|
if ($NewRequest) { ?>
|
266
|
254
|
<tr id="voting">
|
267
|
|
- <td class="label">Bounty (MB)</td>
|
|
255
|
+ <td class="label tooltip" title="How much upload credit the fulfiller wins">Bounty</td>
|
268
|
256
|
<td>
|
269
|
257
|
<input type="text" id="amount_box" size="8" value="<?=(!empty($Bounty) ? $Bounty : '100')?>" onchange="Calculate();" />
|
270
|
258
|
<select id="unit" name="unit" onchange="Calculate();">
|