Commit Graph

34 Commits

Author SHA1 Message Date
gerv%gerv.net
8f2afb69b0 Bug 135817 - update template filename. Oops. 2002-04-26 06:46:16 +00:00
gerv%gerv.net
73f235dadf Bug 135814 - templatise Token.pm. Patch by zeroj; 2xr=bbaetz. 2002-04-26 06:01:30 +00:00
gerv%gerv.net
25f5d8eef4 Bug 136180 - use uri/url_quote filters correctly. Patch by ddk; 2xr=gerv. 2002-04-24 18:27:43 +00:00
gerv%gerv.net
3bc9d4ca2b Bug 138588 - change to use new template structure. Patch by gerv, r=myk, afranke. 2002-04-24 07:24:50 +00:00
bbaetz%student.usyd.edu.au
2df551b1ef Bug 126883 - bugzilla.dtd isn't quite correct
r=gerv, justdave
2002-04-04 04:19:58 +00:00
justdave%syndicomm.com
04a1b81006 Remaining pieces of Bug 23067 from yesterday... no idea why the first commit didn't pick these up. 2002-04-01 22:52:40 +00:00
gerv%gerv.net
d391f38ecb Bug 110012 - show_bug templatisation. r=bbaetz, afranke. 2002-03-23 17:58:41 +00:00
bbaetz%student.usyd.edu.au
31ae83ceb3 Bug 97729 - uploaders need to be able to obsolete their own attachments
r=jake, justdave
2002-02-26 06:13:35 +00:00
justdave%syndicomm.com
065a93f81a Fix for bug 125516: the recent fix for emails truncating when a period occurred on a line by itself broke Exim because it
needs the -t and -i as separate parameters instead of stacked (the original patch had -ti)
Patch by Tobias Burnus <burnus@gmx.de>
r= justdave, gerv
2002-02-17 08:22:31 +00:00
bbaetz%student.usyd.edu.au
b798365389 Bug 100094 - use generic template handling code
r=mattyt, afranke
2002-02-13 02:27:24 +00:00
justdave%syndicomm.com
a4a033f5d4 Fix for bug 117055: Emails were being truncated if they contained a line with nothing but a period on them. We now pass -i to
sendmail and its clones to tell it to ignore periods (since we close the pipe when we're done, rather than signalling it with
a period).  Has been tested with sendmail and postfix.
Patch by Dave Miller <justdave@syndicomm.com>
r= afranke, bugzilla@bkor.dhs.org, jake
2002-02-06 02:47:00 +00:00
bbaetz%student.usyd.edu.au
be348b2fe1 Bug 93037 - use YYYY-MM-DD HH:MM formatting for attachment dates
r=gerv,myk
2002-01-23 00:24:31 +00:00
justdave%syndicomm.com
e24c04e22a Fix for bug 108982: enable taint mode for all user-facing CGI files.
Patch by Brad Baetz <bbaetz@student.usyd.edu.au>
r= jake, justdave
2002-01-20 01:44:52 +00:00
jake%acutex.net
a325f27a1b Bug 109530 - xml.cgi was quoting stuff way too much. This is because it was incorrectly quoted in Bug.pm
r= justdave, louie
2001-11-26 14:16:10 +00:00
gerv%gerv.net
807c799353 Bug 104261 - incorrect template paths. r=myk, ddk. 2001-11-22 06:12:36 +00:00
justdave%syndicomm.com
830eb08e7c Fix for bug 105773: Email addresses in the CC list are now sorted case-insensitively
Patch by Adam Kennedy <bugzilla@ali.as>
r= justdave x2
2001-11-03 02:05:43 +00:00
jake%acutex.net
c85a5d1839 Fixing tinderbox bustage (removing <Tab>s and adding a "use vars" line) 2001-10-31 03:31:00 +00:00
myk%mozilla.org
4ea5f75411 Fix for bug 98602: re-implementation of "create attachment" page.
Patch by Myk Melez <myk@mozilla.org>.
r=gerv@mozilla.org,jake@acutex.net
2001-10-30 23:42:22 +00:00
bbaetz%cs.mcgill.ca
543d7e522a Bug 97469 - Assignee/QA/Reporter/CC don't get email on restricted bugs.
Also fixes seeing bugs in the buglist (bug 95024), dependancy lists,
tooltips, duplicates, and everywhere else I could see which checked group
bugs.groupset == 0.

Also fxed bug 101560, by clearing BASH_ENV

r=myk,justdave
2001-10-23 15:44:53 +00:00
myk%mozilla.org
e13d19a446 Fix for bug 84338: initial implementation of attachment tracker, which lets users flag attachments with statuses.
Patch by Myk Melez <myk@mozilla.org>
r=justdave@syndicomm.com
2001-08-31 04:19:32 +00:00
justdave%syndicomm.com
d07cee59a1 Fix for bug 95731: "INSERT INTO shadowlog" failed because "Table 'shadowlog' not locked", fixed typo in lock tables command.
Patch by Myk Melez <myk@mozilla.org>
r= justdave@syndicomm.com
2001-08-17 08:38:54 +00:00
justdave%syndicomm.com
482db0c87a Fix for bug 95535: the token generator for password resets is allowing the & character to be used for tokens, but wasn't escaping them for the URL it emailed to users to use to get in to reset their password.
Patch by Dave Miller <justdave@syndicomm.com>
r= myk@mozilla.org
2001-08-16 06:52:55 +00:00
justdave%syndicomm.com
6b3b75de75 Fix for bug 77473, bug 74032, and bug 85472: Passwords are no longer stored in plaintext in the database. Passwords are no longer encrypted with MySQL's ENCRYPT() function (because it doesn't work on some installs), but with Perl's crypt() function. The crypt-related routines now properly deal with salts so that they work on systems that use methods other than UNIX crypt to crypt the passwords (such as MD5). Checksetup.pl will walk through your database and re-crypt everyone's passwords based on the plaintext password entry, then drop the plaintext password column. As a consequence of no longer having a plaintext password, it is no longer possible to email someone their password, so the login screen has been changed to request a password reset instead. The user is emailed a temporary identifying token, with a link back to Bugzilla. They click on the link or paste it into their browser and Bugzilla allows them to change their password.
Patch by Myk Melez <myk@mozilla.org>
r= justdave@syndicomm.com, jake@acutex.net
2001-07-11 05:29:21 +00:00
justdave%syndicomm.com
bb1c25a4d0 Fix for bug 72862: fixes more Perl warnings in RelationSet.pm and globals.pl 2001-06-01 02:14:23 +00:00
justdave%syndicomm.com
8e2cc80353 Correcting my email address in the comments 2001-04-17 02:26:16 +00:00
cyeh%bluemartini.com
7b0711915d fix for 47726: Doesn't display properly in IE5.5 because bug url & are not encoded
patch submitted by rufus@nonstuff.de (Rufus)
call QuoteXMLChars on bug_file_loc and attachment desc
2001-02-26 23:46:01 +00:00
dave%intrec.com
bd7d9e2d5e Fix for bug 46913: xml.cgi produces SQL error when accessed while not
logged in yet.  Thanks to luke_harless@attglobal.net for discovering this
one.
2000-09-02 02:44:54 +00:00
cyeh%bluemartini.com
c098326bd4 lot's of stuff:
add whoid usergroupset comment query to bug data fields
add AppendComment function
add CanChangeField function to check if a person can change a field
add display() for quick dumps of the bug
add Collision to check for midair collisions before changing a bug
added a stub function for changing a bug in the database
init_bug will now take either a userid or an e-mail address as a valid parameter
2000-06-27 23:16:08 +00:00
cyeh%bluemartini.com
1e39281c6b Checkin for Bug 42851 'Use listbox with input for CC management on bug form'
contributed by dave@intrec.com (Dave Miller)
2000-06-21 19:03:45 +00:00
endico%mozilla.org
e887d71751 was converting from dbid to login + real name. Remove the real name 2000-06-21 07:50:16 +00:00
endico%mozilla.org
81439801a5 adding toArrayOfStrings subroutine needed by Bug.pm 2000-06-13 09:45:12 +00:00
endico%mozilla.org
b23034f90a 'Bug' data was in a global var. different bugs were sharing this and overwritig each other. 2000-06-12 06:52:41 +00:00
endico%mozilla.org
8c199a1eb4 experimental: Not part of normal bugzilla distibution. Bug.pm creates a bug object and provides methods for getting and setting attributes and for printing out the bug as xml. xml.cgi prompts for a list of bugs and displays the list as html. xml.cgi replaces export_bug.cgi 2000-06-08 20:30:10 +00:00
dmose%mozilla.org
ffaaebea3c allow users to watch the bugs of other users 2000-03-28 21:31:24 +00:00