summaryrefslogtreecommitdiffstats
path: root/Bugzilla
AgeCommit message (Collapse)AuthorFilesLines
2004-03-27Fix for bug 234175: Remove deprecated ConnectToDatabase() andkiko%async.com.br1-9/+1
quietly_check_login()/confirm_login() calls. Cleans up callsites (consisting of most of our CGIs), swapping (where appropriate) for calls to Bugzilla->login. Patch by Teemu Mannermaa <wicked@etlicon.fi>. r=bbaetz, kiko. a=justdave.
2004-03-27Fix for bug 226754: Move InvalidateLogins into Bugzilla::Auth::CGI. ↵kiko%async.com.br3-30/+44
Consolidates the logout code into Bugzilla::Auth::CGI, and provides simple front-end wrappers in Bugzilla.pm for use in the CGIs we have. r=bbaetz, joel; a=justdave. Adds a set of constants to the logout() API which allow specifying "how much" we should log out -- all sessions, the current session, or all sessions but the current one. Fixes callsites to use this new API; cleans and documents things a bit while we're at it. Part I in the great COOKIE apocalypse.
2004-03-27Fix for bug 226764: Move InvalidateLogins into Bugzilla::Auth::CGI.kiko%async.com.br1-40/+74
Consolidates the logout code into Bugzilla::Auth::CGI, and provides simple front-end wrappers in Bugzilla.pm for use in the CGIs we have. r=bbaetz, joel; a=justdave. Adds a set of constants to the logout() API which allow specifying "how much" we should log out -- all sessions, the current session, or all sessions but the current one. Fixes callsites to use this new API; cleans and documents things a bit while we're at it. Part I in the great COOKIE apocalypse.
2004-03-26Patch for bug 238683: fix for usage of uninitialized value in concatenation ↵jocuri%softhome.net1-1/+1
in Bugzilla/CGI.pm: remove extra $ char; patch by corporate_gadfly@hotmail.com; r=vlad; a=justdave.
2004-03-20Patch for bug 179351: improve variable scoping issues in order to fix a bug ↵jocuri%softhome.net1-4/+3
causing oddly formatted dependency emails; patch by Teemu Mannermaa <wicked@etlicon.fi> revised slightly by justdave; r=joel; a=justdave.
2004-03-18Bug 237864: clean up leftovers from the bug 192516 checkin (some occurances ↵justdave%syndicomm.com3-5/+5
of Token got missed) r= gerv, a= justdave
2004-03-18Bug 192516: Moving the loose .pm files into the Bugzilla directory, where ↵justdave%syndicomm.com6-20/+22
they belong. These files pre-date the Bugzilla directory, and would have gone there had it existed at the time. The four files in question were copied on the CVS server to preserve CVS history in the files. This checkin deletes them from the old location and modifies everything else to know where they are now. r= myk, gerv a= justdave
2004-03-17Fix for bug 232397: .bz_obsolete shouldn't specify "underline". Definekiko%async.com.br1-2/+29
specific bz_obsolete/closed/inactive classes (that don't specify underline, but line-through instead) and additional Template filters for conveniently applying them. Change occurences of <strike> to use new classes and clean up callsites. Patch by byron jones <bugzilla@glob.com.au>. r=myk, gerv. a=myk.
2004-03-17Patch for bug 235459: add icalendar output format in buglist; patch by ↵jocuri%softhome.net2-0/+26
William Jon McCann <mccannwj@pha.jhu.edu>; r=vlad; a=justdave.
2004-03-03Bump version number to 2.17.7 for release.justdave%syndicomm.com1-1/+1
2004-03-01Backing out patch for bug 235459 which set tree on fire.jocuri%softhome.net1-1/+0
2004-03-01Patch for bug 235459: add icalendar todo output format for buglist; patch by ↵jocuri%softhome.net1-0/+1
William Jon McCann <mccannwj@pha.jhu.edu>; r,a=justdave.
2004-02-25Tree bustage fix: eliminates the tabs that have been introduced while ↵jocuri%softhome.net1-3/+3
checking in the patch for bug 226251.
2004-02-23Patch for bug 226251 (internal error when server push is enabled): Due to ↵jocuri%softhome.net1-7/+15
randomization of perl hash table functionality since 5.8.1 the 'hack' to unset the nph parameter for multipart messages is not working reliable, instead a modified clone of the original multipart_init function is setting this parameter to '0' and is ignoring the given nph parameter from buglist.cgi; patch by Stephen Reindl <sr@stephenreindl.de>; r=bbaetz; a=justdave.
2004-02-13Fix for bug 234100: removes redundant longdescs table join criterionmyk%mozilla.org1-1/+0
r=justdave
2004-02-13Bug 232749 - fix various charting problems revealed by b.m.o. upgrade, ↵gerv%gerv.net1-5/+18
including editing, subscribe buttons and terminology. Patch by gerv; r=kiko, a=justdave.
2004-02-09Patch for bug 232441: Suggest solution in the error message in case admin ↵jocuri%softhome.net1-1/+1
forgets to rerun checksetup.pl; r=kiko; a=justdave.
2004-02-06Fix for bug 127995: shows the size of attachments in the show bug and ↵myk%mozilla.org2-3/+28
attachment interfaces. Patch by Dave Swegen <dswegen@software.plasmon.com> r=myk a=myk
2004-01-31Fix for bug 228917: Makes some flag SQL work with PostgreSQL by using the ↵myk%mozilla.org2-6/+6
semantically equivalent INNER JOIN over a comma (,). Patch by mkanat@kerio.com. r=myk a=myk
2004-01-26Fix for bug 232164: Adds backwards-compatibility hack for changedin queries ↵myk%mozilla.org1-16/+27
for newly created bugs and simplifies the code. r=bbaetz
2004-01-26Fix for bug 232140: makes tests work on b.m.o by making BugMail.pm use ↵myk%mozilla.org1-0/+1
Bugzilla::Util, which contains the trim() function BugMail.pm needs. r=bbaetz
2004-01-26Fix for bug 232150: Corrects "field changed" queries including [Bug ↵myk%mozilla.org1-10/+19
creation] as one of the fields so that they actually work instead of taking forever. The query was structured as "[Bug creation] clause OR (bugs_activity JOIN clause OR (other field clauses))" when it should have been "bugs_activity JOIN CLAUSE AND ([Bug creation] clause OR other field clauses)" r=bbaetz a=myk
2004-01-22Bug 231391 - make "cumulate" option work on new charts, together with a few ↵gerv%gerv.net1-0/+3
UI tweaks. Patch by gerv; r=kiko, a=myk.
2004-01-21Bug 225075: Fix exact case search so it only selects bugs with matching case ↵bugreport%peshkin.net1-1/+1
strings. r=bbaetz, a=justdave
2004-01-20Backing out bug 230293, we decided this was the wrong approach.justdave%syndicomm.com1-1/+1
a= justdave
2004-01-17Fix for bug 90468: Bugzilla does not log out automatically when closingkiko%async.com.br1-7/+22
the session. Patch by toms@myrealbox.com (Toms Baugis), with minor cleanups by me. r=kiko, a=myk.
2004-01-12Fix for bug 229658: Implements a mechanism for extensions to hook into ↵myk%mozilla.org2-0/+88
standard Bugzilla templates so they can extend the Bugzilla UI without having to modify the standard templates themselves, making it easier to develop and use Bugzilla extensions. r=bbaetz, gerv a=myk
2004-01-11Bug 230293: Need User configurable CSV seperator, or return as text/csv MIME ↵jocuri%softhome.net1-1/+1
type; patch by Stephen Lee <slee@wilcoxassoc.com>; r=gerv; a=justdave.
2003-12-08Bug 226682 - make it possible to edit series. This also changes the Series ↵gerv%gerv.net1-85/+93
object interface a bit. Patch by gerv; r=kiko, a=justdave.
2003-12-07Fix for bug 226982: Move password change code into Bugzilla::Auth (partkiko%async.com.br1-28/+50
1). Factored code out from Bugzilla::Auth::DB->authenticate() into separate methods so we can use them externally. Add extra API to DB.pm, which is currently used only internally (pending part 2). r=bbaetz, a=justdave
2003-12-07Bug 226673: Eliminate some warnings in checksetup.pl for "blah::Version used ↵justdave%syndicomm.com1-1/+0
only once" and make sure errors don't get wrapped in CGI:Carp's HTML wrapper. r=bbaetz, a=justdave
2003-11-27Bug 226324: Move relogin.cgi code to Bugzilla::Auth::CGI. Provide akiko%async.com.br1-1/+26
logout() method that is proxied through Bugzilla.pm's logout(), and fix callers to use it. r=justdave, bbaetz, a=justdave
2003-11-23Bug 226027: Use the Perl CGI module to send cookies.justdave%syndicomm.com1-8/+45
r=bbaetz, a=justdave
2003-11-23Bug 226284 - slow queries for creation_tsbbaetz%acm.org1-1/+1
r,a=justdave
2003-11-22Bug 208604 - Make data/template dir locations configurablebbaetz%acm.org5-24/+55
2003-11-22Bug 220642 - Setting pref 'maxusermatches' to '0' does not search for allbbaetz%acm.org1-3/+8
possibilities. Patch by Andreas Ho¶fle, r=bbaetz, a=myk
2003-11-21Fix for bug 226207: Internal Server Error while requesting an attachmentkiko%async.com.br1-0/+1
flag. Simple namespace fix. r=myk, a=myk.
2003-11-10Bump version number to 2.17.6justdave%syndicomm.com1-1/+1
2003-11-08Bug 221160 - crash if illegal date specified in new charts date range. Patch ↵gerv%gerv.net1-1/+1
by gerv; r=kiko, a=justdave.
2003-11-08Bug 222564 - The chart made when creating a new Product/Component is not ↵gerv%gerv.net1-10/+14
public. Patch by gerv; r=kiko, a=justdave.
2003-11-03Bump version number for releasejustdave%syndicomm.com1-1/+1
2003-11-03Bu 210735 - collectstats.pl broken. Removes "uninitialised value" warning. ↵gerv%gerv.net1-2/+1
Patch by gerv; r=bbaetz, a=justdave.
2003-10-26Bug 223093: correcting the title on "perldoc Bugzilla::Auth::DB"justdave%syndicomm.com1-1/+1
r= bbaetz, a= justdave
2003-10-25Fix for bug 183788: make request mail go out when a request is created and ↵myk%mozilla.org1-3/+3
there's no requestee but there is a cc: list
2003-10-19Bug 221977: Insecure dependency in require while running with -T switch at ↵jocuri%softhome.net1-0/+6
Bugzilla/Auth.pm; patch by Dave Miller (justdave@bugzilla.org); r=gerv; a=justdave.
2003-09-18Bug 219216: Javascript improperly using FILTER html instead of FILTER js ↵justdave%syndicomm.com1-0/+1
causing data with @ produced by javascript to show up as &#64; r=timeless, a=justdave
2003-09-14Bug 208699 - Move Throw{Code,Template}Error into Error.pmbbaetz%acm.org7-44/+114
r,a=justdave
2003-09-12Bug 120030 - Bugzilla bug lists are a spammer's paradise. Patches by lots of ↵gerv%gerv.net1-3/+3
people, but in the end by gerv; r,a=justdave.
2003-09-07Bug 207044 - Filter more template directives. None of these are security ↵gerv%gerv.net1-0/+5
bugs, but they need fixing anyway. Patch by gerv; r,a=justdave.
2003-09-03Fix for bug 145588: adds full-text search option for more accurate finding ↵myk%mozilla.org1-2/+66
of individual bugs via words that appear in their descriptions/comments/summaries. r=bbaetz a=myk