aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove accidentally committed .orig files (from bug 190220)jouni%heikniemi.net2004-08-019-0/+0
|
* Patch for bug 253360: replace IF() with CASE WHEN for database ↵jocuri%softhome.net2004-07-313-14/+14
| | | | compatibility; patch by Tomas Kopal <Tomas.Kopal@altap.cz>; r=vladd, a=justdave.
* Patch for bug 253357: replace IFNULL with COALESCE for increased database ↵jocuri%softhome.net2004-07-313-3/+3
| | | | compatibility; patch by Tomas Kopal <Tomas.Kopal@altap.cz>; r=vladd, a=justdave.
* Bug 253588: Change Bugzilla->user to be usable even for a logged-out userbugreport%peshkin.net2004-07-3115-49/+73
| | | | | | patch by erik,joel r=kiko a=justdave
* Patch for bug 53452: Mid-air collision: allow copy-paste of the comment from ↵jocuri%softhome.net2004-07-311-0/+5
| | | | a textarea; patch by Brodie Thiesfield <brofield@jellycan.com>; r=kiko, a=justdave.
* Patch for bug 190220: templatize editcomponents.cgi; patch by GavinS ↵jocuri%softhome.net2004-07-3124-442/+1148
| | | | <bugzilla@chimpychompy.org>; r=jouni, a=justdave.
* Bug 253447: Fix unhelpful error if user enters text in "blocks" fieldbugreport%peshkin.net2004-07-302-5/+3
| | | | | r=kiko a=justdave
* Fix for bug 216008: Time Tracking: default values cause change bugkiko%async.com.br2004-07-291-1/+8
| | | | errors. Check if the time values haven't actually changed by using integer comparison (instead of string comparison). r=jouni, a=justdave.
* Missing bits of fix for bug 236678: Clean up access to COOKIE global.kiko%async.com.br2004-07-291-8/+0
| | | | | | Murder the last remaining places in the tree where COOKIE is used; includes a rather thorough cleanup of Bugzilla::Bug->user and a minor doc update. r=joel, a=justdave.
* Fix for bug 252789: Empty timetrackinggroup causes error "hours workedkiko%async.com.br2004-07-291-15/+22
| | | | | | | needs to be positive" when changing bug. Sanitizing the AddComment bits in process_bug.cgi to only touch work_time if user is in timetrackinggroup. Fixes regression introduced in bug 252159. r=jouni,joel; a=justdave.
* Fix for bug 252839: Remove &action=view from links in attachment table;kiko%async.com.br2004-07-291-1/+1
| | | | | this was done to improve link target consistency and avoid shell-pasting bustage from the & character. r=myk, a=justdave.
* Fix for bug 236678: Clean up access to COOKIE global. Murder the lastkiko%async.com.br2004-07-294-42/+29
| | | | | remaining places in the tree where COOKIE is used; includes a rather thorough cleanup of Bugzilla::Bug->user and a minor doc update. r=joel, a=justdave.
* Bug 204903: Enable searches to match NULL aliases, missing qa_contact, and ↵bugreport%peshkin.net2004-07-291-3/+16
| | | | | | | search on CC even when cc-list is empty r=jouni a=myk
* Bug 251837: Extend group_group_map to control which groups can see each otherbugreport%peshkin.net2004-07-279-74/+286
| | | | | r=kiko a=justdave
* Fix for bug 252943: broken title in interdiff. Adds reasonable title whilekiko%async.com.br2004-07-271-3/+8
| | | | | doing an interdiff, and fixes some broken and confusing double-linking in the text. r=joel, a=justdave.
* Bug 252450: Unlock tables in edit*.cgi before sending trailerbugreport%peshkin.net2004-07-274-21/+4
| | | | | r=kiko a=justdave
* Bug 251837: Add UI to add/remove 'My Bugs' link in footerbugreport%peshkin.net2004-07-272-10/+35
| | | | | r=joel a=justdave
* Bug 253088: Fix ability of users with bless privileges to bless usersbugreport%peshkin.net2004-07-271-1/+1
| | | | | r=kiko a=justdave
* Bug 239112 - docs patch to give min. version of TT for hooks. Patch by ↵gerv%gerv.net2004-07-271-0/+9
| | | | nick.barnes; r=gerv, a=justdave.
* Fix for bug 251911: Silly ThrowUserError bits in attachment.cgi. Fixingkiko%async.com.br2004-07-261-24/+30
| | | | | variables missing in some errors raised, and doing bits of $::FORM cleanup while we're at it. r=joel, a=justdave.
* Fix for bug 252709: Focus Bugzilla_login field (in login page). r=jouni, a=myk.kiko%async.com.br2004-07-241-2/+3
|
* Fix for bug 252840: Provide product name in enter bug page title. r,a=myk.kiko%async.com.br2004-07-241-1/+2
|
* Fix for bug 252487: Focus requestee field when ? is toggled. r=jouni, a=myk.kiko%async.com.br2004-07-241-2/+5
|
* Fix for bug 252370: Provide edit link for attachment in comment. Adds ankiko%async.com.br2004-07-241-3/+3
| | | | | | [edit] link next to attachments in comment text, and removes the &action=view suffix which breaks things when pasting into a shell. r=bugreport, myk; a=myk.
* Bug 272721: Document testserver.plbugreport%peshkin.net2004-07-241-1/+17
| | | | | r=zach a=joel
* Bug 252329: Returning to buglist after an empty fulltext search causes code ↵jouni%heikniemi.net2004-07-231-3/+11
| | | | | | | error r=kiko, a=justdave ----------------------------------------------------------------------
* Updating POD documentation for Bugzilla/Error to suggest the use ofkiko%async.com.br2004-07-231-4/+9
| | | | 'abort' after passing a few minutes looking for it. rs=joel
* Using "abort" instead of 1 to make the unlock_tables request consistentkiko%async.com.br2004-07-231-1/+1
| | | | with the rest of Bugzilla.
* Fix for bug 252159: centralize time validation. Adds a ValidateTimekiko%async.com.br2004-07-233-19/+14
| | | | | function to Bugzilla::Bug and uses it in relevant callsites. Patch by Alexandre Michetti Manduca <michetti@grad.icmc.usp.br>. r=kiko, a=justdave.
* Fix for bug 252358: Unnecessary documentation aboutkiko%async.com.br2004-07-231-24/+6
| | | | | /usr/bonsaitools/bin/perl into UNIX (non-root) Installation Notes. Patch by Marco Aurélio Graciotto Silva <magsilva@icmc.usp.br>. r=kiko, a=justdave.
* Bug 252388: Fix undef warning when Bugzilla->cgi->header() is called twicebugreport%peshkin.net2004-07-221-1/+1
| | | | | r=jouni a=justdave
* Bug 245877: Add an installation test suitebugreport%peshkin.net2004-07-223-1/+194
| | | | | r=gerv a=justdave
* Bug 238544: Emit appropriate error if content and matches are used inbugreport%peshkin.net2004-07-222-0/+12
| | | | | | invalid search combinations. r=jouni a=justdave
* Bug 98751: Make it easier to update a stored query.jouni%heikniemi.net2004-07-224-2/+28
| | | | r=gerv, a=justdave
* Bug 252190: Fix unitialized value in editusers.cgibugreport%peshkin.net2004-07-221-3/+3
| | | | | r=vlad a=justdave
* Fix for bug 252379: Remove $COOKIE from query.cgi. r=joel, a=justdave.kiko%async.com.br2004-07-221-5/+5
|
* Fix for bug 252378: Remove $COOKIE from attachment.cgi. r=bugreport,kiko%async.com.br2004-07-221-3/+3
| | | | a=justdave.
* Fix for bug 251727: Create a /images directory. Moved 1x1.gif into it; leftkiko%async.com.br2004-07-222-1/+1
| | | | | | ant.jpg out to avoid complaints about "this very important testing resource" <wink>. Fixed single callsite (and someone please explain to me what it's useful for!) a=justdave, myk.
* Fix for bug 251841: body id from urlbase with tilde (~) failskiko%async.com.br2004-07-211-2/+2
| | | | | validation. Swap [sequences of] tilde, hypens and some other common symbols into hyphens. r=burnus, a=myk.
* Fix for bug 123030: Move query.cgi javascript to separate file. Createkiko%async.com.br2004-07-213-298/+335
| | | | | | productform.js that contains functions to handle the various select boxes in the advanced search page, and update the callsites to use it. r,a=myk.
* Bug 241900: Allow Bugzilla::Auth to have multiple login and validation stylesbugreport%peshkin.net2004-07-2117-144/+504
| | | | | | patch by erik r=joel, kiko a=myk
* Bug 245272: Add per-chart negation to boolean searchesbugreport%peshkin.net2004-07-213-3/+20
| | | | | r=justdave,myk,timeless a=myk
* Bug 165589 Add data/errorlog logging support to bugzillabugreport%peshkin.net2004-07-211-0/+31
| | | | | r=jouni a=myk
* Fix for bug 251935: Remove $COOKIE from process_bug.cgi. r=joel, a=myk.kiko%async.com.br2004-07-211-9/+7
|
* Fix for bug 251937: Remove $COOKIE from buglist.cgi. r=burnus, a=myk.kiko%async.com.br2004-07-211-13/+13
|
* Fix for bug 251933: Remove $::COOKIE from post_bug.cgi. r=joel, a=myk.kiko%async.com.br2004-07-211-5/+4
|
* Bug 250547: Make FlagTypes use INNER JOIN instead of comma operator.jouni%heikniemi.net2004-07-201-2/+2
| | | | | Patch by Tomas Kopal <Tomas.Kopal@altap.cz> r=jouni, a=justdave
* Bug 86051: Enable changing product name case.jouni%heikniemi.net2004-07-201-2/+18
| | | | | Patch by GavinS <bugzilla@chimpychompy.org> r=jouni, a=justdave
* Bug 252002: Fix typo in create-guided.html.tmpl.jouni%heikniemi.net2004-07-201-1/+1
| | | | | Patch by GavinS <bugzilla@chimpychompy.org>, r=jouni, a=justdave
* Fix for bug 251898: Add function information to PatchReader output.kiko%async.com.br2004-07-181-5/+11
| | | | | | Added support for the function strings included in unified and contextual diffs, which is included in PatchReader-0.9.5. r=jkeiser, a=justdave.