mcafee%netscape.com
2d4846374f
avg -> value
2001-11-30 05:53:01 +00:00
mcafee%netscape.com
ba13aea768
switching avg to value
2001-11-30 05:49:19 +00:00
mcafee%netscape.com
906e56e46d
Fixing Y axis label
2001-11-30 05:44:07 +00:00
mcafee%netscape.com
d29e4da38d
First add. Clone of startup cgis. plans to make this a general graph cgi are in the wings, this is a temporary get-this-going hack
2001-11-30 04:51:04 +00:00
ian%hixie.ch
d0f1adf983
Minor fixes to make the previous checkin actually compile...
2001-11-29 20:23:48 +00:00
ian%hixie.ch
ae996eb3e1
* Corrected some inaccurate comments I came across.
...
* Added support for group membership levels (now you can be a normal member, as before, but also a group op or a group admin) -- this affected the user data source, the mysql data source, and the user service.
* Added a getFieldsHierarchically() method to the user data source.
* Added a getFieldsByCategory() method to the user data source.
* Fixed a typo in some of the SQL in the rights management part of the MySQL user data source.
* Added support in the arguments input module for treating the arguments as dot-delimited trees and returning a specific branch.
* Added support in the passwords service for encrypting a specific password.
* Added a getFieldByID() method to the user service.
* Made the groups in the user service be indexed by both ID and Name.
* Implemented the user preferences component.
2001-11-29 18:03:38 +00:00
jake%acutex.net
c7e781a010
Bug 108312 - The mid-air collision page was only showing the most recent changes if two people comitted changes to a bug while you were viewing it.
...
r=louie, myk
2001-11-27 15:04:52 +00:00
mcafee%netscape.com
bc46b41785
Solaris needs LD_LIBRARY_PATH help for /usr/local/lib
2001-11-27 05:01:47 +00:00
mcafee%netscape.com
ce346ab569
Find gnuplot
2001-11-27 04:43:32 +00:00
mcafee%netscape.com
fc6c963c9d
First add. code=jrgm, modified by mcafee
2001-11-27 02:26:48 +00:00
mcafee%netscape.com
ce89f9a71b
minor html fix
2001-11-27 02:19:00 +00:00
myk%mozilla.org
1e969d3f91
Fix for bug 109802: Make it clear how to enter mysql passwords with special characters into localconfig.
...
Patch by Dave Miller <justdave@syndicomm.com>.
r=ddkilzer,louie.
2001-11-27 00:49:26 +00:00
myk%mozilla.org
7cf8c8c8a5
Fix for bug 101875: Put the product column before the component column rather than after.
...
Patch by Paul Baker <pbaker@where2getit.com>.
Low risk, r=myk, no second review needed.
2001-11-26 23:29:29 +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
timeless%mac.com
51a4520c4a
Bugzilla Bug 107823 change nsIFile
...
to use 'Modified' instead of 'Modification'
r=akkana sr=brendan
2001-11-26 08:05:05 +00:00
ian%hixie.ch
ae454984a5
mkdir requires the second argument in perl 5.005. b=111730, r=daniele
2001-11-25 14:17:19 +00:00
ian%hixie.ch
cbd99231b2
Mozbot shipped with a broken default bugsDWIMQueryDefault -- made the code more consistent. b=93203, r=timeless
2001-11-25 13:59:53 +00:00
ian%hixie.ch
ad706350b0
oops, stray dot meant the private karma scores were getting corrupted! r=kerz
2001-11-25 01:25:27 +00:00
ian%hixie.ch
9e4bc32d9a
Initial checkin of a karma module. r=kerz b=111757
2001-11-25 01:01:35 +00:00
ian%hixie.ch
c07181231b
Changing 'will soon be available as an open source resource' to 'is available as an open source resource'
2001-11-23 16:50:57 +00:00
ian%hixie.ch
002b60fd9c
work in progress: a component that provides a way for users and admins to edit user preferences, settings, contact details, password, etc.
2001-11-23 00:16:44 +00:00
ian%hixie.ch
d84431bbb0
changing the argument names from the cosesEditorXYZ form to the cosesEditor.x.y.z form. This will make them more consistent with how things work elsewhere in PLIF.
2001-11-22 20:15:45 +00:00
ian%hixie.ch
ee423a9430
* Created service- and serviceInstance- specific constructors so that a single module can have distinct constructors depending on how it is invoked. These constructors are called serviceInit() and serviceInstanceInit(), and both chain to the existing init() constructor (so no change are required by this).
...
* Changed FileStrings so that it doesn't have to be updated every time the file string format changes. The format is now one line per piece of metadata, then a blank line, then the string data. If additional metadata is added later then this will automatically support it.
* Renamed the dataSource.strings service to dataSource.strings.customised, and renamed its get() method to getCustomisedString().
* Changed the semantics of dataSource.strings.customised so that it no longer looks for a default string if it can't find a customised one (and thus removed getDefaultString).
* Abstracted the Generic output module even more. It now consists of output.generic (a service instance with its own constructor) and dataSource.strings (a pure service), the latter of which is a wrapper around dataSource.strings.customised and dataSource.strings.defaults.
* Updated Coses to work with the new dataSource.strings insterface.
* Removed the test app DataSource::ConsoleStrings and DataSource::HTTPStrings files, since they were redundant with the default output files.
* Removed all the default strings in the CosesEditor and Login components since they are pretty pointless.
* Factored out the call to dump() in the GenericOutputs module.
* Changed setString in the MySQL string data source so that it will now add a blank string (it used to delete the string if it was blank, but that meant that it was not possible to customise strings away).
* Added a piece of metadata to strings: their version number.
* Updated the customised string data source stubs to mention the version data now stored with all strings
* Added a getAllStringVersions method to the customised strings data source which returns all the string names and their version numbers.
* Made the customised strings data source check the version number of every string in its database during setupInstall to make sure that they are all up to date, version-wise. If any are out of date, the user is notified.
* Added support for the new version column to the MySQL version of the customised string data source.
* Updated the increasingly misnamed CosesEditor to support the versioned strings stuff.
* Factored out some code in the CosesEditor.
* Added version information to all default strings. All default strings are now at version 1.
* Fixed a typo in a FileStrings dump statement.
* Fixed the calls to setProgress in the MySQL user and strings data sources and in the user field factory to use the correct syntax (a parsable dotted string instead of unlocalisable plain English).
* Updated the Generic output module's documentation to match what now happens.
2001-11-22 15:46:42 +00:00
justdave%syndicomm.com
61d6d30534
Fix for bug 61634: explain what "Milestone URL" is on the editproducts page.
...
patch by Matthew Tuck <matty@chariot.net.au>
r= caillon, justdave
2001-11-22 15:46:27 +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
cc5c2ee269
Fix for bug 99864: consistant use of "product" vs "program"
...
Patch by Josh Soref <timeless@mac.com>
r= dkl, justdave
2001-11-21 19:56:28 +00:00
timeless%mac.com
57a399e8a8
Bugzilla Bug 93754�describe should be #directable
...
r=justdave,dkl
2001-11-21 16:44:38 +00:00
justdave%syndicomm.com
703571611f
Fix for bug 102141: SECURITY FIX - the Product popup menu on the show_bug form listed all products, even if the user didn't
...
have access to all of them. It now only shows products the user has access to (and the product the bug is in, if the user is
viewing it because of some other override)
Patch by George Hotelling <george.hotelling@iconideas.com> and Dave Miller <justdave@syndicomm.com>
r= bbaetz, caillon
2001-11-21 08:30:47 +00:00
matty%chariot.net.au
ab62630688
Bug 110276:SQL error in globals.pl.
...
Patch by me, r=bbaetz,caillon.
2001-11-21 08:09:32 +00:00
barnboy%trilobyte.net
00b81c656f
Added blurb about unified diffs.
2001-11-20 20:16:24 +00:00
barnboy%trilobyte.net
6230b92d8f
Taint mode note.
2001-11-20 20:11:41 +00:00
barnboy%trilobyte.net
3aa7a50cfc
Added Javascript, Cookies, and Templatization requirements to Hacking
...
Bugzilla.
2001-11-20 20:09:06 +00:00
barnboy%trilobyte.net
e999d8db14
Added tip about checking sanitycheck.cgi if you make schema changes,
...
per bug 98049.
2001-11-20 19:56:31 +00:00
barnboy%trilobyte.net
4184f599d2
Removed references to bugzilla.mozilla.org so we can avoid
...
spurious bug postings. However, this file will need some significant
treatment for 2.16 release since the query.cgi interface has changed.
2001-11-20 18:22:30 +00:00
justdave%syndicomm.com
42c9eb0def
Backing out previous checkin, this file is distributed with Bugzilla, we don't need mozilla-specific information in it.
2001-11-20 18:11:05 +00:00
barnboy%trilobyte.net
7c59b3446c
Added one liner mentioning that mozilla.org provides only one vote
...
per bug.
2001-11-20 17:46:14 +00:00
barnboy%trilobyte.net
bdacf2d95f
Modified Win32 notes regarding system() calls per bug 99595.
2001-11-20 17:26:45 +00:00
barnboy%trilobyte.net
13f86e9939
Fixed CPAN locations per bug 97582.
2001-11-20 17:18:03 +00:00
barnboy%trilobyte.net
5e4bff4b25
Added bit about needing proper <Directory> permissions in order
...
for .htaccess to function. See bug 97668.
2001-11-20 17:09:38 +00:00
barnboy%trilobyte.net
c5f0502819
Changed openjade compilation instructions to match new commands
...
required by XML conversion of the Guide.
2001-11-20 16:41:23 +00:00
barnboy%trilobyte.net
7d4973fb0c
Initial conversion to XML format from SGML.
...
Note this is a work-in-progress. It compiles cleanly, but I am not yet
submitting compiled HTML and text.
There is one notable problem: nsgmls barfs on the <imagedata> tag in
database.sgml during validation. openjade handles it fine. Weird.
2001-11-20 16:36:28 +00:00
mcafee%netscape.com
bab6081aff
Removing server-side pageloader data reporting, use client-side scrape mechanism
2001-11-20 06:30:18 +00:00
mcafee%netscape.com
1e3f91e6a2
Remove server-side data reporting for pageloader test, use client-based scrape mechanism now.
2001-11-20 06:27:33 +00:00
mcafee%netscape.com
10ba12205e
bloat.pl not needed, use scrape.pl
2001-11-20 05:42:46 +00:00
mcafee%netscape.com
03914cf282
Removing old bloat data reporting stuff, use scrape reporting now.
2001-11-20 05:27:29 +00:00
mcafee%netscape.com
3ede41a072
no more startup.dat
2001-11-20 03:50:25 +00:00
mcafee%netscape.com
99a449b9be
startup.pl should use scrape.pl mechanism now.
2001-11-20 03:47:05 +00:00
mcafee%netscape.com
3ab251b448
startup data goes to scrapt.dat now.
2001-11-20 03:43:27 +00:00
myk%mozilla.org
f7e7d5aeff
Fix for bug 109240: fixes the regression that changed the way comments regarding attachment creation are formatted.
...
Patch by Jake <jake@acutex.net>.
r=myk@mozilla.org , no second review needed.
2001-11-20 02:59:55 +00:00
zach%zachlipton.com
e9d0d81126
Fix for bug 107120, templates/default/global/header has invalid HTML.
...
Patch removes a <meta> tag as per bug 38856.
Patch by David D. Kilzer <mailto:ddkilzer@theracingworld.com>.
r1=Christopher Aillon <mailto:caillon@returnzero.com>. No 2nd review
required as per caillon.
2001-11-20 01:59:57 +00:00
gerv%gerv.net
37c09d1017
Bug 98707. Query.cgi rewrite. Patch by me, layout by mpt and others, r=justdave, mattyt. Wahey!
2001-11-18 22:23:31 +00:00
gerv%gerv.net
86418ea974
Bug 98707. Query.cgi rewrite, reformatting and templatisation. Patch by me, layout by mpt and others, r=justdave,matty. Wahey!
2001-11-18 22:20:20 +00:00
matty%chariot.net.au
677692909a
Moving a comment to the right place, in order to be able to make a comment about my previous check in that accidentally got checked in without a comment, and hence didn't show up on Tinderbox I think.
...
It was a change to CGI.pl, a fix for bug 105812: Rename "Components" link in sub GetCommandMenu() to "Products".
The patch was by James A Laska <jlaska@us.ibm.com>.
2001-11-18 03:54:54 +00:00
matty%chariot.net.au
fb8ca6d4cd
*** empty log message ***
2001-11-18 03:22:50 +00:00
justdave%syndicomm.com
14122fd43e
Fix for bug 100788: enter_bug.cgi wasn't correctly interpretting whether or not a partial URL needed an http:// added to the
...
front of it, which had the side-effect of duplicating the http:// on the front when a URL was passed from Bugzilla Helper.
Patch by Josh Soref <timeless@mac.com>
r= justdave, caillon
2001-11-17 23:05:48 +00:00
justdave%syndicomm.com
bc2ba9abf9
Fix for bug 109354: After entering a new bug, the link offering to add an attachment to the bug you just created pointed at
...
the old attachment form instead of the new one.
Patch by Josh Soref <timeless@mac.com>
r= myk x2
2001-11-17 22:40:02 +00:00
justdave%syndicomm.com
7e069b138f
Fix for bug 107120: templates/default/global/header was generating HTML that wouldn't validate as HTML 4.01 Transitional
...
Patch by Dave Miller <justdave@syndicomm.com>
r= jake, bbaetz
2001-11-17 22:25:15 +00:00
justdave%syndicomm.com
a66257c75e
Fix for bug 92500: line-feeds were not being properly converted when submitting parameter changes with some Mac browsers.
...
Patch by Gervase Markham <gerv@mozilla.org>
r= ddk, justdave
2001-11-17 22:18:07 +00:00
justdave%syndicomm.com
5a3a1fe26f
Backing out previous checkin, it broke the tree. :(
2001-11-17 21:28:24 +00:00
justdave%syndicomm.com
5828cbd866
Fix for bug 102487: If admin has set preferences to require a comment on a product/component change, prompt the user that they
...
forgot to comment first, before prompting for component, milestone, and version for new product.
Patch by Garvase Markham <gerv@mozilla.org>
r= kiko, ddk
2001-11-17 21:12:53 +00:00
justdave%syndicomm.com
c510bfa682
Fix for bug 12284: allow user to specify which columns to display in a bug list
...
Patch by Andreas Franke <afranke@ags.uni-sb.de>
r= gerv, kiko
2001-11-17 21:04:37 +00:00
ian%hixie.ch
c1593016d6
Correct some XML errors in the default output strings.
2001-11-17 20:57:42 +00:00
zach%zachlipton.com
68a56e9d2b
Fix the double testing of .pm files.
...
No review needed for tests at this time.
2001-11-17 17:29:06 +00:00
matty%chariot.net.au
8cd4f2a450
Bug 104677 : Votes field (text style) on showvotes.cgi defaults to size 5, not natural size and doesn't include a maxlength attribute.
...
Patch by Christoper Aillon <caillon@returnzero.com>.
2001-11-17 10:29:55 +00:00
bbaetz%cs.mcgill.ca
befb702df6
Bug 101560, pt 2. Perl 5.00503 gives a (bogus?) warning which 5.6 doesn't.
...
Quote manually rather than using qw to get arround this
2001-11-17 07:57:25 +00:00
bbaetz%cs.mcgill.ca
a4ce4d1898
Bug 101560 - clear some more env vars so that system calls will run in
...
taint mode. The perforce integration stuff needs this.
r=gerv,mattyt
2001-11-17 07:19:46 +00:00
mcafee%netscape.com
a04fba1c5d
removing server-side startup data reporting, use client-side TinderboxPrint: now.
2001-11-17 06:52:50 +00:00
kestes%walrus.com
81161fffbe
leave the update function early if we have not updated anything.
2001-11-16 20:45:24 +00:00
kestes%walrus.com
b4c7ff96c3
remove comment which was left over from the original code copy. It refered
...
to some other code.
2001-11-16 20:44:54 +00:00
kestes%walrus.com
6bc80bec3b
add support for the Req Ticketing system.
2001-11-16 20:43:30 +00:00
gerv%gerv.net
25f260c715
Bug 6419 - command-line query tools by Andreas Franke <afranke@ags.uni-sb.de>.
2001-11-15 17:04:58 +00:00
kestes%walrus.com
dfd9b8fa51
turn apostrophe into accute accent to work arround netscape bug.
2001-11-14 21:59:55 +00:00
kestes%walrus.com
ecdc8de5e6
document most important change.
2001-11-14 21:25:49 +00:00
kestes%walrus.com
d3e78a0f85
admin scripts I use.
2001-11-14 21:24:36 +00:00
kestes%walrus.com
618b9d7704
my echo statements had leading '$', how did they get there?
...
I added to the test command so that you can see exactly how it was called.
change the example to show how --tree now works.
2001-11-14 21:23:40 +00:00
kestes%walrus.com
1006ed316d
make the checkouts of -D be in sync with the tinderbox boxes by ensuring
...
-D is really the start time.
2001-11-14 21:22:13 +00:00
kestes%walrus.com
7a5db2003c
allow for alternating builds using a single build process.
2001-11-14 21:21:02 +00:00
bbaetz%cs.mcgill.ca
91fafca168
Bug 107718 pt 2 - use subtraction instead of the ~ operator, which older
...
mysql versions don't support. Remove the checksetup.pl restriction, too.
r=jake x2
2001-11-14 15:12:23 +00:00
jake%acutex.net
cca68c9a93
We don't really need to look for fragments that are pulled in by [% INCLUDE %] or [% PROCESS %]. While removing this code bit doesn't allow us to seperatly check that those fragments exist and compile, they'll be checked atomatically when the the template that wants them is run through the process() routine by the 004template.t test. This issue was raised because bug 98707 introduced a [% BLOCK %] element and the syntax for using that is the same as for including a template fragment.
2001-11-14 03:44:07 +00:00
gerv%gerv.net
da7e725db3
Fix license headers and make attachment changed page look like bug changed page. Bug 99518 and 98110. r-myk, no second review.
2001-11-13 17:24:24 +00:00
jake%acutex.net
07e2f4e3ac
Fix for bug 86300 - If a bug didn't exist and GetBugLink() tried to create a tooltip for it, you'd get uninitialized variables warnings in your error log. This path also introduces a cache so if the same bug # is mentioned more than once during the same running of the script, it only has to query the database once.
...
r= mattyt, gerv
2001-11-12 13:43:59 +00:00
bbaetz%cs.mcgill.ca
963817d4d2
Oops. Bug 109690 again, r=justdave, gerv
2001-11-12 05:47:24 +00:00
bbaetz%cs.mcgill.ca
67fff67155
Bug 109690: Check $bug before using it.
...
r=justdave,gerv
2001-11-12 05:39:14 +00:00
ian%hixie.ch
305453a450
Some very primitive default HTML output files for login.accessDenied and login.detailsSent.
2001-11-11 15:37:48 +00:00
ian%hixie.ch
c1fbe83087
We should be able to access strings with uppercase letters -- oops. Changing regexp to include 'A-Z' as well as 'a-z'. Also adding a dump statement in the failure case to help when analysing the log looking for a bug.
2001-11-11 15:33:59 +00:00
ian%hixie.ch
a98c451be4
Missed a return statement in the setupInstall method. This was causing setup to fail every time, because the function returned a defined value. Also took the opportunity to add a call to setupProgress.
2001-11-11 11:54:06 +00:00
ian%hixie.ch
c2b7af4e48
Missed a return statement in the setupInstall method. This was causing setup to fail every time, because the function returned a defined value.
2001-11-11 11:48:14 +00:00
ian%hixie.ch
333b70e6e1
Should have been checking for a defined value, not a true value -- there is nothing to stop a failure from being '0', for instance. (The important thing is to be consistent with the SelectingServiceList code, really, and it uses defined().)
2001-11-11 11:47:02 +00:00
ian%hixie.ch
538669aedd
Implement a module to give the main application the ability to add rights and do other configuration related stuff.
2001-11-11 09:36:02 +00:00
mcafee%netscape.com
c36586eccb
Switching to arg form of system call to avoid security hole (76109)
2001-11-11 09:08:56 +00:00
mcafee%netscape.com
be9eedb5d2
typo! fixes bug
2001-11-11 08:30:21 +00:00
ian%hixie.ch
ebf177c5db
Mute the Net::AIM warnings and add some null-checking code to the close() method.
2001-11-11 08:08:26 +00:00
ian%hixie.ch
c9fdcfec0f
First stab at primitive AIM output support as an alternative to e-mail.
2001-11-11 04:18:09 +00:00
ian%hixie.ch
fb9e84ff2d
Fix typo (PLIFF->PLIF)
2001-11-11 00:58:48 +00:00
ian%hixie.ch
a538c2a0cd
Fix the DESTROY method to actually call the close() method like it was supposed to.
2001-11-11 00:14:07 +00:00
ian%hixie.ch
085c309f7d
Change the order of the settings so as to match the order in which they are requested. This causes the error message to mention the setting that the user aborted on, instead of some random later setting.
2001-11-10 22:06:54 +00:00
ian%hixie.ch
65d308d967
Change createArgument so that we drop the default on the floor -- the default should only be used when explicitly requested (e.g. by the user in interactive mode), not in all cases. CommandLine.pm was in fact already assume that this was the case.
2001-11-10 22:04:34 +00:00
ian%hixie.ch
4c322128a7
Switching to batch mode involves changing the 'batch' argument, not the one being requested... ahem.
2001-11-10 21:59:13 +00:00
ian%hixie.ch
7c4f16563f
Bracket shuffling to fix a warning in Perl 5.0.x.
2001-11-10 21:57:07 +00:00
ian%hixie.ch
2d3f1dc3de
Handle the case where the user hits Ctrl+D during input, and the case where the user piped a file into us and the file was too short.
2001-11-10 21:53:49 +00:00