Closed
Bug 693969
Opened 14 years ago
Closed 14 years ago
Implement the ability to add an attachment to several bugs at once
Categories
(Bugzilla :: Attachments & Requests, enhancement, P5)
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: kapila.kohli, Unassigned)
Details
User Agent: Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Steps to reproduce:
Trying to attach a single document to several bugs using "Change several bugs at once".
Actual results:
Firstly attachment option was not coming., i added in template/en/default/list/edit-multiple.html.tmpl to show that option on clicking "changes several bugs at once"
<tr>
<th><label for="data">File</label>:</th>
<td>
<em>Enter the path to the file on your computer.</em><br>
<input type="file" id="data" name="data" size="50"
[% IF Param("allow_attach_url") %]
onchange="DataFieldHandler()"
[% END %]
>
</td>
</tr>
[% IF Param("allow_attach_url") %]
<tr>
<th><label for="attachurl">AttachURL</label>:</th>
<td>
<em>URL to be attached instead.</em><br>
<input type="text" id="attachurl" name="attachurl" size="60"
maxlength="2000"
onkeyup="URLFieldHandler()" onblur="URLFieldHandler()">
</td>
</tr>
[% END %]
Expected results:
Now i can seleect the file but its not getting attached in the bug on selection & then commit.
please suggest what should i do so as file get attached to the bugs selected.
Comment 1•14 years ago
|
||
This is not the right place to ask how to customize your code, see http://www.bugzilla.org/support/ for help. Now about implementing this feature upstream, I'm not sure how useful this feature would be. You almost never want to do this, especially because you wouldn't be able to set flags correctly if selected bugs are not in the same product and component. In that case, you would have to edit each selected bug one by one to set flags. Also, I would see this feature as a very dangerous way to fill the DB pretty quickly, as you could attach a huge attachment to many bugs at once. Based on these concerns and on bug 198298, I'm marking this bug as wontfix.
Severity: normal → enhancement
Status: UNCONFIRMED → RESOLVED
Closed: 14 years ago
Priority: -- → P5
Resolution: --- → WONTFIX
Summary: Change several bugs at once for adding single attachment → Implement the ability to add an attachment to several bugs at once
You need to log in
before you can comment on or make changes to this bug.
Description
•