gecko-dev/webtools/bugzilla
zach%zachlipton.com d1851dde5d Adding a test for safe system and exec calls. Part of this code by Dave. 2001-09-05 01:43:25 +00:00
..
Bugzilla Fix for bug 84338: initial implementation of attachment tracker, which lets users flag attachments with statuses. 2001-08-31 04:19:32 +00:00
contrib Fix for bug 73249: perl warnings under 5.6.0. 2001-06-01 08:34:45 +00:00
docs Updating release notes for 2.14 2001-08-29 19:39:01 +00:00
t Adding a test for safe system and exec calls. Part of this code by Dave. 2001-09-05 01:43:25 +00:00
template/default Fix for bug 84338: initial implementation of attachment tracker, which lets users flag attachments with statuses. 2001-08-31 03:54:37 +00:00
.cvsignore re-fix bug 76154: permissions weren't being set correctly on the .htaccess files when checksetup.pl was run again. Also adding .htaccess to .cvsignore so it won't show up as ? in cvs diffs and updates. 2001-07-25 07:26:42 +00:00
1x1.gif
Attachment.pm Fix for bug 84338: initial implementation of attachment tracker, which lets users flag attachments with statuses. 2001-08-31 04:19:32 +00:00
Bug.pm
CGI.pl Fix for bug 84338: initial implementation of attachment tracker, which lets users flag attachments with statuses. 2001-08-31 03:54:37 +00:00
README Updates to README from bug 94846. 2001-08-11 19:56:40 +00:00
RelationSet.pm Fix for bug 72862: fixes more Perl warnings in RelationSet.pm and globals.pl 2001-06-01 02:14:23 +00:00
Token.pm Fix for bug 95731: "INSERT INTO shadowlog" failed because "Table 'shadowlog' not locked", fixed typo in lock tables command. 2001-08-17 08:38:54 +00:00
UPGRADING CHANGES move to "UPGRADING-pre-2.8" 2001-08-10 22:35:22 +00:00
UPGRADING-pre-2.8 CHANGES move to "UPGRADING-pre-2.8" 2001-08-10 22:35:22 +00:00
ant.jpg
attachment.cgi Fix for bug 97764: Fixes errant sending of mail on attachment changes to users who do not want to receive mail about their own changes. 2001-08-31 21:40:33 +00:00
booleanchart.html
bug_form.pl Fix for bug 84338: initial implementation of attachment tracker, which lets users flag attachments with statuses. 2001-08-31 03:54:37 +00:00
bug_status.html Fix for bug 96603: Grammatical error in bug_status.html. Simple one word fix. 2001-08-31 23:37:36 +00:00
buglist.cgi Fix for bug 84338: initial implementation of attachment tracker, which lets users flag attachments with statuses. 2001-08-31 03:54:37 +00:00
bugwritinghelp.html
bugzilla.dtd
changepassword.cgi
checksetup.pl Fix for bug 97721: Bugzilla now requires Perl 5.005 (previous requirement was Perl 5.004). This is due to the use of Template Toolkit for templatizing the pages for easier local customization. The new attachment tracker that was checked in earlier tonight uses the templates. Also included on this patch is a check for AppConfig, which is a prerequisite for Template Toolkit, because the Makefile.PL for Template Toolkit won't run without it, and it doesn't tell CPAN that it has prereqs, which causes confusion if you're installing from CPAN. 2001-08-31 06:08:43 +00:00
colchange.cgi Fix for bug 57848, perl warnings in several files. 2001-06-01 02:07:28 +00:00
collectstats.pl Fix for bug 21253: removing all single-parameter system() calls from Bugzilla 2001-06-06 21:17:42 +00:00
confirmhelp.html
createaccount.cgi 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. 2001-07-11 05:29:21 +00:00
createattachment.cgi
defparams.pl Fix for bug 84338: initial implementation of attachment tracker, which lets users flag attachments with statuses. 2001-08-31 03:54:37 +00:00
describecomponents.cgi Fix for bug 82781: describecomponents.cgi now checks viewing permissions to make sure you can see a product 2001-06-06 04:32:45 +00:00
describekeywords.cgi
doeditparams.cgi Fix for bug 95082 - Param('shutdownhtml') doesn't completely shut down bugzilla. 2001-08-13 19:11:35 +00:00
doeditvotes.cgi Fixing a couple typoes 2001-08-28 17:55:14 +00:00
duplicates.cgi Bug 96063 - the old method of doing this barfed on long URL strings. 2001-08-21 00:36:54 +00:00
editattachstatuses.cgi Fix for bug 84338: initial implementation of attachment tracker, which lets users flag attachments with statuses. 2001-08-31 04:19:32 +00:00
editcomponents.cgi Fix for bug 71396 - $::db->do isn't needed anymore 2001-06-16 14:51:16 +00:00
editgroups.cgi Fix for bug 75482: adding the capability to deactivate a group without deleting it (prevent new bugs from being placed into that group, but don't remove the group restriction from bugs already in it). 2001-06-06 03:16:52 +00:00
editkeywords.cgi
editmilestones.cgi Fix for bug 71396 - $::db->do isn't needed anymore 2001-06-16 14:51:16 +00:00
editparams.cgi Fix for bug 95082 - Param('shutdownhtml') doesn't completely shut down bugzilla. 2001-08-13 19:11:35 +00:00
editproducts.cgi Fix for bug 71396 - $::db->do isn't needed anymore 2001-06-16 14:51:16 +00:00
editusers.cgi 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. 2001-07-11 05:29:21 +00:00
editversions.cgi Refixing bug 71396. Each PushGlobalSQLState() needs a PopGlobalSQLState() and this file instead had two "pushes". 2001-06-19 01:37:02 +00:00
enter_bug.cgi Fix for bug 87596: improper definition of $::components in globals.pl 2001-07-01 02:00:56 +00:00
globals.pl Fix for bug 42810 - Bugzilla would choke if your product name contained a ' mark. 2001-08-31 23:51:35 +00:00
help.html
helpemailquery.html
how_to_mail.html
importxml.pl fix for bug 91903: insecure dependency in require in importxml.pl under taint mode only in Perl 5.005. 2001-07-25 20:12:00 +00:00
index.html
localconfig.js
long_list.cgi
move.pl Fix for bugs 55161 and 12819. The activity log now stores only what's changed in multi-value fields. 2001-07-20 15:18:30 +00:00
new_comment.cgi
notargetmilestone.html
post_bug.cgi Fixing "used only once" errors flagged by tinderbox on the last checkin. 2001-06-27 02:31:55 +00:00
process_bug.cgi Fix for bug 92266: Prevent dataloss in the bugs_activity table by wrapping 2001-08-26 22:58:34 +00:00
processmail Fix for bug 84338: initial implementation of attachment tracker, which lets users flag attachments with statuses. 2001-08-31 03:54:37 +00:00
query.cgi Fix for bug 42810 - Bugzilla would choke if your product name contained a ' mark. 2001-08-31 23:51:35 +00:00
queryhelp.cgi
quicksearch.html
quicksearch.js Re-fix for bug 77699: the undefined error affected other browsers than just IE5, so work around it for all browsers. 2001-07-20 08:25:30 +00:00
quicksearchhack.html
quips.cgi Landing quips.cgi (bug 73191) by Owen Taylor <otaylor@redhat.com> 2001-05-29 04:01:48 +00:00
relogin.cgi
reports.cgi Make bug chart filenames other-OS friendly by removing colons. Bug 88179. r=jake. 2001-07-01 19:09:29 +00:00
robots.txt
runtests.sh Added a --verbose option to runtests.sh that the tinderbox scripts can use to get all the warnings and errors and whatnot into the build log. Also corrected several syntax and logic errors in the 1.t test file. 2001-09-01 03:06:15 +00:00
sanitycheck.cgi Fix for bug 91808: Additional sanitycheck tests for the duplicates table. 2001-09-03 01:08:05 +00:00
show_activity.cgi More leak pluggin. This one fixes bug 39526. 2001-06-01 13:38:01 +00:00
show_bug.cgi Landing Myk's patch for bug #71767 2001-06-02 22:02:02 +00:00
showattachment.cgi Users should only be able to view attachments if they can view the bug that the file is attached to (bug 70189) 2001-06-06 18:36:25 +00:00
showdependencygraph.cgi Bugzilla was leaking information about bugs marked secure (using bug groups). This checkin fixes bugs 39524, 39527, 39531, and 39533. 2001-05-31 15:52:25 +00:00
showdependencytree.cgi Bugzilla was leaking information about bugs marked secure (using bug groups). This checkin fixes bugs 39524, 39527, 39531, and 39533. 2001-05-31 15:52:25 +00:00
showvotes.cgi Bugzilla was leaking information about bugs marked secure (using bug groups). This checkin fixes bugs 39524, 39527, 39531, and 39533. 2001-05-31 15:52:25 +00:00
syncshadowdb Fix for bug 75840: syncshadowdb -syncall now properly shuts down Bugzilla during the sync process so mysql doesn't get overloaded while the tables are locked. This patch also adds some funtionality to the script to allow you to specify an alternate temp directory on the command line, in case you have a large database and need it made to a different filesystem for space reasons. 2001-08-31 05:49:01 +00:00
token.cgi Fix for bug 95731: "INSERT INTO shadowlog" failed because "Table 'shadowlog' not locked", fixed typo in lock tables command. 2001-08-17 12:42:34 +00:00
userprefs.cgi 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. 2001-07-11 05:29:21 +00:00
votehelp.html
whineatnews.pl
xml.cgi

README

* This README is no longer used to house installation instructions.  Instead,
it contains pointers to where you may find the information you need.

* Installation instructions are now found in docs/, with a variety of document
types available.  Please refer to these documents when installing, configuring,
and maintaining your Bugzilla installation.  A helpful starting point is
docs/txt/Bugzilla-Guide.txt, or with a web browser at docs/html/index.html.

* Release notes for people upgrading to a new version of Bugzilla are
available at docs/rel_notes.txt.

* If you wish to contribute to the documentation, please read docs/README.docs.

* The Bugzilla web site is at "http://www.mozilla.org/projects/bugzilla/".
This site will contain the latest Bugzilla information, including how to
report bugs and how to get help with Bugzilla.