Commit Graph

3142 Commits

Author SHA1 Message Date
bbaetz%student.usyd.edu.au
cf8e2d560b Correct date on logincookies schema change. 2002-02-08 11:16:05 +00:00
justdave%syndicomm.com
dd92b52de9 Fix for bug 97966: Changing the product in the query page would remove your component, version, and milestone selections, even if the other product used the same ones, or you were selecting an additional product without unselecting the first one.
Patch by Christian Reis <kiko@async.com.br>
r= caillon, justdave
2002-02-08 03:31:10 +00:00
ian%hixie.ch
e96a0843d8 Fixes a copy-paste error in the help line. r=timeless; b=123708 2002-02-07 08:36:23 +00:00
ian%hixie.ch
ba09233316 Lets the invite command accept the more natural syntax 'invite user in #channel' rather than just 'invite user channel'. r=zach; b=72949 2002-02-07 08:33:17 +00:00
justdave%syndicomm.com
a0dd58d6e4 Fix for bug 122897: Comments entered on the bug form are now added to the bug before it is closed and moved when moving a bug
to another Bugzilla install.
Patch by Dave Miller <justdave@syndicomm.com>
r= timeless, bbaetz
2002-02-06 04:34:10 +00:00
justdave%syndicomm.com
916bf2b36a Fix for bug 119005: The instructions in editgroups.cgi incorrectly state that you can't use spaces in a group name. You in
fact can.
Patch by Christian Reis <kiko@async.com.br>
r= bbaetz x 2
2002-02-06 02:54:08 +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
0c682418d4 Bug 119715 - strictvaluechecks should always be enabled
r=justdave, gerv
2002-02-05 00:20:09 +00:00
bbaetz%student.usyd.edu.au
289e7236a2 Bug 122418 pt2 - obsoleting a patch from the create attachment screen gave
a taint error.
2002-02-05 00:11:48 +00:00
gerv%gerv.net
e0a5210fa6 Remove JS strict warning. 2002-02-04 22:47:26 +00:00
bbaetz%student.usyd.edu.au
b56c24f1b4 bug 122418 - setting attachment status fails taint checks. Just needed to
detaint after checking.
r=gerv,kiko
2002-02-04 22:16:18 +00:00
gerv%gerv.net
32dc696315 show_bug.cgi templatisation. 2002-02-04 21:17:17 +00:00
zach%zachlipton.com
adf57d19ba Fix for bug 87398: checksetup.pl should warn if not run as root. Patch
adds a warning if the user has webservergroup set but does not run
checksetup.pl as root.

r1=kiko, r2=justdave
2002-02-04 16:38:33 +00:00
bbaetz%student.usyd.edu.au
12965a910a Bug 95732 - remove logincookies.cryptpassword, and invalidate cookies from
the db when required instead.
(Also fixes bug 58242 as a side effect)

r=myk, kiko
2002-02-04 12:23:05 +00:00
justdave%syndicomm.com
c35da50db3 Fix for bug 14461: QA contact is no longer required. You can still leave it blank in editing and creating components if you
want, even if it's enabled now.  This is consistant with the behavior of this field everywhere else in Bugzilla now.
Eventually this will be a per-product setting whether to enforce having one or not.
Patch by Matthew Tuck <matty@chariot.net.au>
r= justdave x 2
2002-02-04 00:41:40 +00:00
myk%mozilla.org
b6fa253e93 Fix for bug 121747: Stops every script before it does anything else if Bugzilla is currently shut down. Also adds global template
instantiation code to globals.pl.
Patch by Myk Melez <myk@mozilla.org>.
r=gerv,kiko
2002-02-03 09:28:48 +00:00
myk%mozilla.org
fd16f86957 Fix for bug 98021: Cleans up "edit attachment" interface on NS4.x by removing text of buttons that do not work in that browser.
Patch by Myk Melez <myk@mozilla.org>.
r=kiko x 2
2002-02-01 17:50:00 +00:00
jake%acutex.net
1b6ad69f01 Bug 122154 part 2 - Eliminiate the use of the "usetms" Javascript cache variable.
Patch by Christian Reis <kiko@async.com.br>
r= bbaetz, jake
2002-02-01 14:52:37 +00:00
jake%acutex.net
e193dc9fd4 Bug 121636 - Provide support for cvsgraph (requires the cvsgraph binary, see bug 121636 for more information).
r= kiko
2002-02-01 14:32:55 +00:00
timeless%mac.com
0625a92542 Bug 109138 platform detection not working on macintosh
r=bbaetz r=gerv
adds another regexp for MacOSX
2002-02-01 10:05:04 +00:00
ian%hixie.ch
a89dffc374 * Added getGroupMembers() to the User data source.
* Fixed a bug in the MySQL implementation of User data source's getGroupName() method. It treated 'row' as an array ref instead of a normal array.
* Made the MySQL User data source automatically add a group with ID 1, named 'Administrators'.
* Special-cased the group with ID 1 in the user object so that if a user is in that group, he automatically is assumed to have all rights.
* Fixed a bug with the saving of the original groups in the user object (the backup object was simply a reference to the original object, which was later changed in place, causing the backup to change too).
* Fixed the handling of rights in the user object constructor to simply set the rights in one line instead of using indirection.
* Fixed the invalidateRights() method of the user object to correctly re-set the rights (previously it was not turning the generated array into a hashref).
* Added a setup.install implementation to the login component. It now queries the user for an administration username and creates the relevant user and puts it in the magic group 1.
* Fixed a call to checkAddress() in the login component.
2002-02-01 06:48:02 +00:00
ian%hixie.ch
1c49734d21 Commented out the call to Net::SMTP's verify() method and replaced it with a generic regexp sanity check. It appears that VRFY is not correctly implemented on all servers. (I may be mistaken on this; it might just be a bug somewhere in the PLIF code that is messing something up, but I couldn't find it if so.) 2002-02-01 06:38:55 +00:00
ian%hixie.ch
3a41393898 Added a check that ensures that the configuration file is not readable or writable by anyone except the user running the script. This closes a potential security hole on shared machines. Changed the umask during the creation of the configuration file so that the permission bits are set that way too. Added a comment to clarify the superficially recursive nature of the configuration database and the configuration data source. 2002-02-01 06:36:27 +00:00
ian%hixie.ch
2787ed1409 Another change that should be done at some point: Move PLIF/DataSource/*/MySQL.pm to PLIF/DataSource/MySQL/*.pm 2002-02-01 06:32:17 +00:00
bbaetz%student.usyd.edu.au
883a899bc3 Bug 122744 - charting fails taint checks
r=daa@distributed.net, gerv
2002-01-31 23:51:38 +00:00
bbaetz%student.usyd.edu.au
954fc92673 Fix up "used only once" warning from kiko's checkin.
r=kiko x 2.
2002-01-31 23:46:51 +00:00
jake%acutex.net
c4ee5cb2f7 Bug 122636 - Templatise colchange.cgi
Patch by David Lawrence <dkl@redhat.com> and Christian Reis <kiko@async.com.br>
r= kiko, jake
2002-01-31 20:12:50 +00:00
ian%hixie.ch
7b34209a7b Removed an erroneous comment, which should be the last traces of the old problem of the lack of a configuration file being a fatal error. 2002-01-31 18:30:21 +00:00
ian%hixie.ch
ed5ab39edd Theoretical nit: call inherited constructor just in case at some point in the future it does something useful... 2002-01-31 17:35:52 +00:00
jake%acutex.net
7737ac0eb5 Some additional files we should be ignoring 2002-01-31 16:28:35 +00:00
jake%acutex.net
df7eee0ab3 Bug 122589 -- Update gnats conversion script to newer schema of 2.14.
Patch by Andrea Dell'Amico <adellam@link.it>
2002-01-31 14:29:21 +00:00
mcafee%netscape.com
f4a1b2b4be adding mocha to dns 2002-01-31 05:25:08 +00:00
timeless%mac.com
10e66de5e7 Bug 122518 Speed up the showbuilds.cgi redirect on http://tinderbox.mozilla.org
patch by netdemonz@yahoo.com r=mcafee
2002-01-31 04:22:39 +00:00
myk%mozilla.org
53ec5f6abd Fix for bug 109480: Removes createattachment.cgi from CVS.
Removed by Myk Melez <myk@mozilla.org>.
r=bbaetz x 2
2002-01-30 18:08:01 +00:00
myk%mozilla.org
aba1aab698 Fix for bug 104521: Removes old attachment interface in favor of new attachment tracker.
Patch by Myk Melez <myk@mozilla.org>.
r=bbaetz,kiko
2002-01-30 14:14:12 +00:00
bbaetz%student.usyd.edu.au
57b6ddc197 Bug 122154 - change arrays to numeric, and clean up query.atml js
patch by kiko@async.com.br, r=caillon,bbaetz
2002-01-30 13:43:11 +00:00
gerv%gerv.net
160d8f886b Bug 117509 - createaccount.cgi templatisation. 2002-01-29 23:26:37 +00:00
kestes%walrus.com
e3c9bc355d added some thoughts on how this should work. I still need to debug it. 2002-01-29 21:11:59 +00:00
kestes%walrus.com
2fb2a921a2 many bug fixes. it still will not work, I need a few more hours to finish
debugging this.
2002-01-29 11:38:55 +00:00
kestes%walrus.com
8ddb33175c fix comment. 2002-01-29 01:11:10 +00:00
kestes%walrus.com
f075e3a0f4 regularize $last_cvs_data to be $last_vc_data this is clearer and matches
perforce.pm.  Also fix comments about the function call names to match
new naming system.
2002-01-29 01:09:15 +00:00
kestes%walrus.com
8f6db3af70 this is a first draft. I need to debug this before it will work,
but you can see the logic of it and it will not take long to get it
to work.
2002-01-29 01:06:26 +00:00
mcafee%netscape.com
af5cff9c38 adding mocha to pageload list 2002-01-28 08:05:46 +00:00
mcafee%netscape.com
745569d042 graph size wasn't preserving average setting 2002-01-28 06:51:22 +00:00
zach%zachlipton.com
3a2a216faf Fix for bug 121735: Perl warning running checksetup.pl if a module has a
non-numeric version number. Patch sets checksetup.pl to use a string
compare instead of a numeric one.

Patch by Dave Miller. r1=Bradley Baetz and r2=Gerv
2002-01-27 18:59:38 +00:00
gerv%gerv.net
af5e8a7904 Removing new_comment.cgi - all part of quips.cgi now. 2002-01-25 22:41:37 +00:00
gerv%gerv.net
9f7179af83 quips.cgi rewrite and templatisation. 2002-01-25 22:40:04 +00:00
ian%hixie.ch
551d3369d7 Fix a minor typo in some SQL code which was causing an error during the creation of the user table. 2002-01-25 03:18:15 +00:00
ian%hixie.ch
28d425cd54 Moved the DBI module over to thew new more generic settings getting/saving API and removed the old DBI-specific one. Fixed an assert() call to check for the values being defined and not non-zero/non-blank. Fixed the password field to allow blank values (by making a blank value the default). Also fixed the calls to getArgument to not ever pass an undefined value as the default. 2002-01-25 03:17:05 +00:00
ian%hixie.ch
7ac3c80e5c More things that need doing on the long (and not so long) run. 2002-01-25 03:12:26 +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
bbaetz%student.usyd.edu.au
12167e816a Bug 120543 - Software error when entering a bug when not logged in & only
one product.
r=caillon,jake
2002-01-22 22:23:21 +00:00
bbaetz%student.usyd.edu.au
d9d0617952 Bug 121074 - taint error after changing bug
r=daa@distributed.net,jake
2002-01-22 15:12:11 +00:00
bbaetz%student.usyd.edu.au
ab40697509 Bug 98368 - dbi connect doesn't use db_port option.
Patch by gene.stuckey@tellabs.com, r=bbaetz,justdave
2002-01-22 06:49:22 +00:00
bbaetz%student.usyd.edu.au
1346d2dbe8 Bug 121170 - template outputs empty <style> tag
r=justdave,timeless
2002-01-22 05:08:09 +00:00
jake%acutex.net
f9e57c321e Bug 113438 - The DTD from Bugzilla's XML output was not correct, so any attempts to validate the output were futile.
Patch by Jan <tamino_xml@yahoo.com>
r= jake
2002-01-21 13:39:54 +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
b4ed051d8d Remove files no longer needed after the latest changes to the docs 2002-01-19 14:34:40 +00:00
mcafee%netscape.com
a5049b8516 Adding facedown to query list 2002-01-19 12:42:22 +00:00
jake%acutex.net
fbe037bf39 Latest version of compiled docs (picking up recent SGML changes). 2002-01-18 23:27:01 +00:00
dkl%redhat.com
f11f9cd823 Fix for bug 120817 - Log Out and %commandmenu% in bannerhtml, r=justdave,dkl 2002-01-18 20:04:32 +00:00
dkl%redhat.com
be9e066b76 Fix for bug 119060 - Use of Template.pm filters for url and html encoding. r=jake,dkl 2002-01-18 16:50:08 +00:00
jake%acutex.net
5b56a33252 Bug 120081 - Bugzilla now requires version 2.06 of the Template Toolkit.
r= bbaetz, justdave
2002-01-17 01:57:24 +00:00
justdave%syndicomm.com
5ff55b992b Fix for bug 99608: dependency mails are no longer sent if the dependent bug can't be seen by the would-be recipient of the email.
Patch by Jake Steenhagen and David Kilzer
r= gerv, justdave
2002-01-16 03:25:52 +00:00
mcafee%netscape.com
89f22f938c Make each subplot a link to a larger version of itself, so you can click for more detail 2002-01-14 08:22:59 +00:00
mcafee%netscape.com
2ae61e8f27 adding multiquery links at the bottom 2002-01-13 22:18:03 +00:00
zach%zachlipton.com
479c20a58b Additional fix for bug 112914: "Test should not cat $file" Previous
patch fixed the problem, but this patch stops once it finds strict so
it will not take as long to run.

Patch by ddkilzer@theracingworld.com. R=zach@zachlipton.com though review
is not required for tests.
2002-01-11 03:53:18 +00:00
myk%mozilla.org
db8b3403ab Fix for bug 113383: Add a link to the dependent bug in emails about a dependent bug changing state.
Patch by Myk Melez <myk@mozilla.org>.
r=caillon,jake
2002-01-10 21:47:04 +00:00
timeless%mac.com
ba52b0aacf Bugzilla Bug 118574 JavaScript strict warnings in showbuilds.cg
r=caillon
2002-01-08 03:11:43 +00:00
mcafee%netscape.com
e859c4ccfb re-ordering multiquery machines 2002-01-07 22:33:03 +00:00
mcafee%netscape.com
65c99ada89 Comments, multiquery links 2002-01-07 07:35:19 +00:00
mcafee%netscape.com
b5aaf2a339 one-click to see other tests links 2002-01-06 20:13:05 +00:00
mcafee%netscape.com
537fce1285 Average was losing points setting 2002-01-06 20:07:25 +00:00
jake%acutex.net
6f658a8b68 Bug 113975 - Changing only cc on mass change page incorrectly gives an error that you didn't select anything to change.
r= myk x2
2002-01-06 14:36:00 +00:00
kestes%walrus.com
3a32f5e4c7 don't forget january is month 0 this means my out of bounds check for month
number was wrong.
2002-01-04 19:24:48 +00:00
jake%acutex.net
21bfc9968e Bug 112914 - This test was relying on the existance of the unix "cat" command instead of using perl's standard open() function. This caused a test failed when running the tinderbox script on win32. 2002-01-04 16:04:09 +00:00
kestes%walrus.com
1f012a21cc Spelling fixes from Adam Di Carlo adam@onshore-devel.com 2002-01-02 18:09:59 +00:00
mcafee%netscape.com
0620365dde multiquery 2002-01-01 05:58:12 +00:00
mcafee%netscape.com
97c07411db First stab at multiquery, give it arguments like testname=startup&tboxes=comet,sleestack 2002-01-01 03:13:50 +00:00
kestes%walrus.com
3ae8703dac break out the Install file into separate files. 2001-12-31 20:03:15 +00:00
kestes%walrus.com
e9e256356f new documentation files. 2001-12-31 20:02:05 +00:00
kestes%walrus.com
0749982b94 add much explanation and overview documentation to the Install page.
I will split this out into separate pages in a bit so that the structure
is clearer.
2001-12-31 18:39:20 +00:00
ian%hixie.ch
12b85d652a Removed some excessive brackets that made it impossible to log in. 2001-12-31 06:48:48 +00:00
ian%hixie.ch
c80c11fad9 getting rid of the last traces of the newFieldXXX stuff 2001-12-31 06:28:59 +00:00
ian%hixie.ch
962c42b7cb Minor changes to whitespace so as to make the output prettier. 2001-12-31 06:10:38 +00:00
ian%hixie.ch
1a1174b51b Changed two inappropriate uses of comparisons between a possibly undefined value and an empty string into uses of the <with> element. This fixes the problem whereby output did not include the 200 OK status flag. 2001-12-31 06:09:56 +00:00
ian%hixie.ch
7674dacda9 abstracted out some common code. Made the flushing of pending text happen after each end tag as well as each start tag. (Not doing this was causing whitespace between sibling elements to be treated as trailing whitespace of the first element, resulting in excessive whitespace -- typically newlines -- in the output stream.) 2001-12-31 06:07:04 +00:00
ian%hixie.ch
1bb8d54c2c Fixing SQL error (DROP COLUMN not REMOVE COLUMN) 2001-12-31 06:04:30 +00:00
mcafee%netscape.com
4d40e8139f Adding moving point average support. 2001-12-31 05:03:23 +00:00
mcafee%netscape.com
68e2296cef Adding moving average option, &avg=1. computes average using last 10 points 2001-12-31 04:55:18 +00:00
mcafee%netscape.com
e6b70a164f Compute moving average for last 10 points and write to foo_avg file for foo machine name 2001-12-31 04:52:15 +00:00
ian%hixie.ch
fa701c948c delete() doesn't work with array references in old versions of perl5. 2001-12-31 02:40:49 +00:00
justdave%syndicomm.com
607a648600 SECURITY FIX for bug 109679: It was possible to send arbitrary SQL to buglist.cgi by altering the HTML form before submitting.
Patch by Dave Miller <justdave@syndicomm.com>
r= dkl, gerv
2001-12-30 05:46:24 +00:00
ian%hixie.ch
b451ec0af9 * Enabled Taint mode.
* Added the HTTP Logout module, integer user fields, and the user prefs module to the test app.
* Changed unknownCommand to noCommand. Unknown commands now cause errors.
* Changed the arbitrary default command to some other arbitrary default command and made the login command consistent with it.
* Filled in the stylesheet a little.
* Added an error page.
* Reworked the hello page.
* Moved some stuff into the common footer.
* Added a request login page.
* Did some other minor fixups.
* Added some incomplete userPrefs pages.
2001-12-30 02:33:44 +00:00
ian%hixie.ch
530363a93e Added some details on profiling to the README. 2001-12-30 02:29:49 +00:00
ian%hixie.ch
eccb9aca1d Checking in a list of things that still need doing. 2001-12-30 01:03:45 +00:00
ian%hixie.ch
7bb48dfffc Changing e-mail address now sends a confirmation mail to the old address too. Implemented by making changing fields a generic mechanism. Also fixed some minor nits. 2001-12-30 00:33:36 +00:00
mcafee%netscape.com
551b363277 Docs for cgi's 2001-12-29 05:43:22 +00:00
ian%hixie.ch
41564734e3 * Removed incorrect comments.
* Added some XXX comments.
* Changed the way text nodes are handled so that adjacent text nodes are merged.
* Changed the way original keys are kept so that they work across flattening, rounding, and that there is no 'coses: original keys' hash getting in the way.
* Fixed a bug whereby empty arrays and hashes caused extraneous iterations in <set> elements.
* Removed some redundant scalar()s.
2001-12-26 19:30:16 +00:00
ian%hixie.ch
dc80936c17 Made debug() be level 6 instead of level 7. Added various comments. 2001-12-26 19:12:57 +00:00
ian%hixie.ch
6cf0f6394c Removed an unused variable. Made the selecting array always return an array even in scalar context. This makes using it in |if| statements a lot easier. 2001-12-26 19:03:07 +00:00
ian%hixie.ch
6415154def Removing debug() calls. 2001-12-26 19:01:07 +00:00
ian%hixie.ch
ff47917188 Removing debug() calls, and removed the mention of a user 'logged out' state now that logging our is protocol specific. 2001-12-26 18:52:23 +00:00
ian%hixie.ch
0c63b62da7 Adding some error handling for the case where connecting to the AIM server fails. Also removing an extraneous dump() statement. 2001-12-26 18:35:16 +00:00
ian%hixie.ch
caac55f5f3 An implementation of a logout service for HTTP. 2001-12-26 18:34:01 +00:00
ian%hixie.ch
c869b6822d Since User.pm is now calling this object's 'hash' method instead of using 'data' directly, we had better implement 'hash'. Also make setting the property always check that the value being set is valid. 2001-12-26 18:19:15 +00:00
ian%hixie.ch
f1129a6449 Since logout is now protocol specific, removing support for logging out from the user object. Also making the 'hash' method more generic by making it call the field 'hash' method instead of assuming it will never pass more than the data of a field. 2001-12-26 18:15:14 +00:00
ian%hixie.ch
25ba099600 Changed the implementation of cmdSetup to store the results of the selecting service lists in an array instead of a scalar. 2001-12-26 17:45:05 +00:00
ian%hixie.ch
39a7e0dafe Change from a hard-coded logout mechanism to a generic per-protocol logout mechanism. 2001-12-26 17:38:41 +00:00
myk%mozilla.org
5d3d8e4241 Fix for bug 97784: Wrap comments properly on "edit attachment" page.
Fix by Myk Melez <myk@mozilla.org>.
r=kiko,justdave
2001-12-26 17:25:32 +00:00
ian%hixie.ch
763aa79b24 A new type of user field for strings that are in the form of integers. 2001-12-26 17:18:00 +00:00
ian%hixie.ch
8be4dec718 Removed some |scalar()|s where they were redundant, added some XXX comments, and fixed a couple of logic errors (>2 should have been >=2 and stuff like that -- this code really should use named constants) 2001-12-26 16:46:06 +00:00
ian%hixie.ch
a8a4ffb711 |not| implies a scalar context, so there's no need for an explicit |scalar()| 2001-12-26 16:10:17 +00:00
ian%hixie.ch
6a8b581138 Removed a redundant |scalar()| -- |if| implies a scalar context anyway. 2001-12-26 16:05:54 +00:00
ian%hixie.ch
77fac412e2 Clarified a comment. 2001-12-26 16:03:55 +00:00
ian%hixie.ch
5bb8ed02a5 A few minor fixes: checked for a reference being defined rather than being true (twice), replaced some double quotes with single quotes, and removed a trailing dot on a call to error(). 2001-12-26 15:45:01 +00:00
ian%hixie.ch
a75437cefb Removing a level 10 dump statement that was being hit a lot. 2001-12-26 15:42:21 +00:00
jake%acutex.net
28afeb3cb3 Re-fixing bug 37339 - Checking an undefined variable for a specific value didn't work in Netscape 4 (and was probably a strict warning everywhere else).
Fix by Christian Reis <kiko@async.com.br>
r= afranke, jake
2001-12-24 22:24:35 +00:00
timeless%mac.com
61a97fd94a Bugzilla Bug 106386 rid source of these misspellings: persistant persistance priviledge protocal editting editted targetted targetting
r='s from many people. sr=jst
2001-12-23 23:23:41 +00:00
mcafee%netscape.com
ef1f0d0f95 removing test-specific cgi's, we have generalized this. 2001-12-23 21:47:44 +00:00
mcafee%netscape.com
38fe14bbd7 removing test-specific cgi, we have generalized this. 2001-12-23 21:44:37 +00:00
sfraser%netscape.com
300f9bd37a Nuking images that have disappeard. 2001-12-22 02:39:05 +00:00
mcafee%netscape.com
923618312e update 2001-12-22 02:27:53 +00:00
mcafee%netscape.com
519403ffa5 removing a few bogus ones 2001-12-22 02:19:17 +00:00
mcafee%netscape.com
a53ac9a976 updating from SeaMonkey tree 2001-12-22 02:14:32 +00:00
sfraser%netscape.com
07608c5bfc Nuking images that have disappeard. r=sleestasck 2001-12-22 01:34:46 +00:00
kestes%walrus.com
3151e0df6d explain my usage of RPMS. 2001-12-21 20:10:05 +00:00
kestes%walrus.com
f921dbe2e9 review and clean up the instructions. Explain a bit about where to find extra
documentation.  Explain about Makefile,Configure variables. Explain
clientbin directory, explain postfix configuration.
2001-12-21 19:45:31 +00:00
kestes%walrus.com
aaacb0a75e add text browser support as a goal. 2001-12-21 19:42:02 +00:00
kestes%walrus.com
5b2fbb858e erase work I have already completed. 2001-12-21 19:41:10 +00:00
kestes%walrus.com
258f60311e change cgibin prefix to better default 2001-12-21 19:40:34 +00:00
kestes%walrus.com
4226f87493 add info about tree state and change the 'will soon' since the code works. 2001-12-21 19:39:50 +00:00
kestes%walrus.com
6ec7e43e84 explain all the client code. This readme had not been updated since
tinderbox1 days and was badly out of date.
2001-12-21 19:37:54 +00:00
timeless%mac.com
0aa6b67ecf Bug 98080 ask for an attachment number when no params are given
r=dkl r=justdave
2001-12-20 23:42:28 +00:00
timeless%mac.com
6034436643 Bug 106470 Bonsai rview.cgi unclosed html comment tag
patch by pzb@datastacks.com r=justdave
2001-12-20 20:46:01 +00:00
timeless%mac.com
f09cad0452 Bugzilla Bug 90598 spelling and minor syntactic correctness
r=zach
2001-12-20 18:31:56 +00:00
kestes%walrus.com
1dcd7423ca put a <pre> arround the main build log section. This is needed for opera to render
the section correctly, otherwise opera shows no \n.  IE and netscape render
the pages fine without it, but it is a mistake not to have it.
2001-12-20 17:19:03 +00:00
mcafee%netscape.com
b51ee2d5ba Adding two m.performance links 2001-12-18 07:52:18 +00:00
mcafee%netscape.com
ae6b56d7c3 minor wording change 2001-12-17 09:35:28 +00:00
zach%zachlipton.com
e4ba5888ef Fix for bug 113646, midair when changing assignee gives error. Fix changes sub trim() in globals.pl not to use $_ so as not to conflict with $_ values allready
set.

Patch by myk@mozilla.org, r1=bbaetz, r2=dave.
2001-12-17 01:29:52 +00:00
mcafee%netscape.com
a872073700 adding number count column 2001-12-16 20:38:57 +00:00
mcafee%netscape.com
a8ab38a1d2 commenting main routine 2001-12-16 00:23:09 +00:00
mcafee%netscape.com
e16af41548 Added graph size UI. Made lead UI smaller font=-1. 2001-12-16 00:06:51 +00:00
justdave%syndicomm.com
840d1c4527 Fix for bug 102487: If you had "comment on product change required" turned on in your installation, Bugzilla would warn you of
a forgotten comment AFTER allowing you to choose new components, versions, and milestones, forcing you to hit your back button
TWICE to correct your mistake.  This checkin corrects that.
Patch by David Kilzer <ddkilzer@theracingworld.com>
r= caillon, gerv
2001-12-16 00:05:54 +00:00
mcafee%netscape.com
04a8134ad3 Add support for size=X, X=.5, 1, etc. scales the graph size 2001-12-15 22:46:07 +00:00
mcafee%netscape.com
98c22d2152 better html 2001-12-15 10:59:29 +00:00
mcafee%netscape.com
aa9df2da92 adding rawdata link 2001-12-15 10:54:56 +00:00
mcafee%netscape.com
efded144c1 better title 2001-12-15 10:52:12 +00:00
mcafee%netscape.com
34b90fa385 cgi to print out the raw data we are plotting 2001-12-15 10:50:38 +00:00
mcafee%netscape.com
8224222734 Add perl emacs header 2001-12-15 10:33:05 +00:00
rginda%netscape.com
db79537e16 whitespace nits 2001-12-15 04:13:24 +00:00
rginda%netscape.com
96935af74f remove #_PH_ comments 2001-12-15 03:55:54 +00:00
rginda%netscape.com
b4aa7802d7 add Petr Cimprich to contributor list 2001-12-15 03:53:38 +00:00
rginda%netscape.com
50b81b33ca patch from Petr Cimprich petr@gingerall.cz to allow the output to be nested in a frameset.
refer to parent.frames, instead of top.frames in navToGroup functions.
2001-12-15 03:09:00 +00:00
mcafee%netscape.com
16408d486d forgot to pass in points settings for a few urls 2001-12-15 00:55:20 +00:00
mcafee%netscape.com
ecc086ff9b blue points, comments 2001-12-15 00:41:01 +00:00
kestes%walrus.com
d7b508ac69 I can not keep up with portable /bin/echo syntax. Make /bin/echo
a variable and let the users figure out what they need.
2001-12-14 20:20:03 +00:00
kestes%walrus.com
72e72d1536 too many people ask me silly questions about the two different build states
both being colored yellow.  Make one of them white to quiet the masses.
2001-12-14 20:19:10 +00:00
kestes%walrus.com
26a7e2a2bb document new portable popup window code. 2001-12-14 20:18:13 +00:00
kestes%walrus.com
5174a2bb14 fixed typos in the Link() commands. 2001-12-14 20:17:34 +00:00
kestes%walrus.com
1bfd9cbc42 explain the mail time format. 2001-12-14 20:15:43 +00:00
kestes%walrus.com
ce0fdbc0bf minor typos fixed. 2001-12-14 20:14:25 +00:00
kestes%walrus.com
6041493f23 typo in print statement. 2001-12-14 20:13:01 +00:00
kestes%walrus.com
a60ec46d66 get_all_treestates name has changed due to the conversion for text browsers. 2001-12-13 16:09:36 +00:00
mcafee%netscape.com
dfb5cacdf3 days=n form submit was ignoring units, ltype, points. 2001-12-13 07:48:34 +00:00
mcafee%netscape.com
a35fc54a19 splitting out separate points UI 2001-12-13 07:42:53 +00:00
mcafee%netscape.com
1c67c0d9e0 Split points out as seperate arg 2001-12-13 07:32:40 +00:00
mcafee%netscape.com
45cdcbdc99 Adding line style UI 2001-12-13 07:17:48 +00:00
mcafee%netscape.com
671c7746c6 Adding ltype argument, lines, steps, or points. 2001-12-13 06:57:07 +00:00
mcafee%netscape.com
be538729d5 pass in units too 2001-12-13 06:38:41 +00:00
mcafee%netscape.com
4819a927a3 pass in autoscale, days for browsing urls 2001-12-13 06:32:17 +00:00
mcafee%netscape.com
62eb0e4218 smaller font for browsing links 2001-12-13 05:37:23 +00:00
mcafee%netscape.com
4918f5a44e Adding machine/test browsing links 2001-12-13 05:35:12 +00:00
mcafee%netscape.com
c409d84056 lowercase some html 2001-12-13 04:58:55 +00:00
mcafee%netscape.com
b2eaf237ca Adding form UI for days=n argument 2001-12-13 04:53:03 +00:00
mcafee%netscape.com
7fe5b2878e Adding yahoo-quote-style Y-axis control UI. 2001-12-13 02:10:16 +00:00
mcafee%netscape.com
a51a9fbbb6 autoscale time axis. move timestamp down a little to allow for two-line time axis labels. 2001-12-13 01:56:52 +00:00
jake%acutex.net
4dc9db546e Bug 37339 and Bug 80183 - Adding a sidebar.cgi and index.cgi. The sidebar.cgi can currently be used in Mozilla/Netscape 6 and uses XUL that was originally written by Scott Collins <scc@mozilla.org>. The index.cgi displays both the proper header and footer in the appropriate places. It also changes the links accoding to if you are logged in or not.
r= ddk, kiko
2001-12-12 22:41:19 +00:00
justdave%syndicomm.com
d89032c7bf Fix for bug 73502: midair collision wasn't catching other bugs changing dependencies
Patch by Dave Miller
r= bbaetz, jake
2001-12-11 02:38:18 +00:00
justdave%syndicomm.com
fab20109ca Re-fix for bug 102141: The prior checkin on this bug caused an error if you could only see one product and you tried to
change a bug.
Fix by David Kilzer <ddk@theracingworld.com>
r= justdave, bbaetz
2001-12-09 20:21:31 +00:00
justdave%syndicomm.com
4ea66d33f2 SECURITY FIX bug 54901: If you were using LDAP authentication it would let you log in as anyone if you left the password
blank.
Patch by David Crowe <crow@waveset.com>
r= jmrobins, justdave
2001-12-09 15:56:23 +00:00
mcafee%netscape.com
9f05d83eea Adding alt text to img src tag. 2001-12-08 03:09:41 +00:00
kestes%walrus.com
470edd1d9e treestate function changed names during last update to treestate class. 2001-12-07 19:30:34 +00:00
mcafee%netscape.com
2eb27dceea query browsing should point at query.cgi, not graph.cgi 2001-12-07 11:43:41 +00:00
mcafee%netscape.com
b1dc9f1e4a pass in units, we might want to hide this by default 2001-12-07 11:35:35 +00:00
mcafee%netscape.com
261e2bd1f4 Adding title to query result 2001-12-07 11:31:10 +00:00
mcafee%netscape.com
2ec5b81976 Solaris wants file modes for mkdir() 2001-12-07 10:20:06 +00:00
mcafee%netscape.com
98e47592de query wrapper for graph.cgi 2001-12-07 10:02:32 +00:00
mcafee%netscape.com
1920fcaacd First attempt at generalizing graph.cgi and collect.cgi 2001-12-07 09:43:54 +00:00
kestes%walrus.com
497e22a89b a new portable library for popups. This library uses layers but is portable between netscape and IE (and hopefully other browsers as well). 2001-12-06 15:59:07 +00:00
ian%hixie.ch
988853e179 Removing a bunch of dump(10, ...) calls. It turns out that dump() is actually quite expensive, and calling it 1000+ times just to do nothing isn't that useful. In addition, most of these dump()s were used to debug the core PLIF code which now works pretty well, so they aren't that useful any more. 2001-12-04 18:06:06 +00:00
ian%hixie.ch
0ac4b20d8e PLIF::Service::XML::Char() was the most expensive function in a typical profile. This takes it completely off the radar by not bothering to merge adjacent strings. 2001-12-04 17:51:23 +00:00
ian%hixie.ch
199ee1a91f Changed the groupsById and groupsByName hashes of arrays into hashes of hashes to make them friendlier to handle. Also fixed some typos (groupByID instead of groupsByID, and one case of groupsByID where groupsByName was meant) and optimised away a call to dataSource.user's getGroupName method (since we already know the name). 2001-12-04 14:34:54 +00:00
ian%hixie.ch
a4d4cebebf Fixing copy/paste error -- the user prefs object isn't the application object... 2001-12-04 13:40:04 +00:00
ian%hixie.ch
b382ef763c Make '0' and '' be equivalent to 'default' for the 'order' attribute of the <set> element. This makes defaulting actually work (missing attributes seem to get set to ''?). 2001-12-04 13:08:39 +00:00
ian%hixie.ch
9868c69a29 Place a 5 second timeout on the SMTP object -- this makes running setup bearable without an SMTP server (the default timeout is 2 minutes). 2001-12-04 12:53:40 +00:00
ian%hixie.ch
1454dc7651 getFieldsHierarchically() will now return an even prettier result. Since it is mainly (currently only?) used for creating the data hash sent to the string expanders, this makes it a lot easier to author the templates. No silly numbers to remember. :-) 2001-12-04 12:51:48 +00:00
mcafee%netscape.com
33e830aebd Adjusting btek yrange hack value 2001-12-03 20:48:38 +00:00
kestes%walrus.com
ecb5b17c4a empty cells need to have text brower string. 2001-12-03 20:02:39 +00:00
kestes%walrus.com
bc12f06bf0 minor changes in now addnote communicates with tinder.cgi. now the note
is rendered on an as needed basis inside tinder.cgi.
2001-12-03 19:57:35 +00:00