Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
0efe7805
Commit
0efe7805
authored
Mar 11, 2000
by
dmose%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated to reflect that only specific versions of GD.pm and Chart will work.
parent
ca172d99
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
20 deletions
+22
-20
README
README
+19
-17
checksetup.pl
checksetup.pl
+3
-3
No files found.
README
View file @
0efe7805
...
...
@@ -32,8 +32,8 @@ other necessary ingredient is a web server set up to run cgi scripts.
4. Data::Dumper Perl module
5. MySQL related Perl module collection
6. TimeDate Perl module collection
7. GD perl module (1.18 or
greater
)
8. Chart::Base Perl module (0.99
or greater
)
7. GD perl module (1.18 or
1.19
)
8. Chart::Base Perl module (0.99
through 0.99b
)
9. The web server of your choice
Bugzilla has quite a few prerequisites, but none of them are TCL.
...
...
@@ -150,25 +150,28 @@ most interested in is the Date::Format module, but installing all of them
is probably a good idea anyway. The standard Perl module installation
instructions should work perfectly for this simple package.
1.7. GD Perl module (1.18 or
greater
)
1.7. GD Perl module (1.18 or
1.19
)
The GD library was written by Thomas Boutel a long while ago to
The GD library was written by Thomas Boutel
l
a long while ago to
programatically generate images in C. Since then it's become almost a
defacto standard for programatic image construction. The Perl bindings
to it found in the GD library are used on a million web pages to generate
graphs on the fly. That's what bugzilla will be using it for so you'd
better install it if you want any of the graphing to work.
Actually bugzilla uses the Graph module which relies on GD itself, but
isn't that always the way with OOP. At any rate, you can find the GD
library on CPAN (link in Appendix A) and it installs beautifully in the
usual fashion.
Actually bugzilla uses the Graph module which relies on GD itself,
but isn't that always the way with OOP. At any rate, you can find the
GD library on CPAN (link in Appendix A). Note, however, that you MUST
use version 1.18 or 1.19, because newer versions have dropped support
for GIFs in favor of PNGs, and bugzilla has not yet been updated to
deal with this.
1.8. Chart::Base Perl module (0.99
or greater
)
1.8. Chart::Base Perl module (0.99
through 0.99b
)
The Chart module provides bugzilla with on-the-fly charting abilities.
It can be installed in the usual fashion after it has been fetched from
CPAN where it is found as the Chart-x.x... tarball in a directory to be
listed in Appendix A.
The Chart module provides bugzilla with on-the-fly charting
abilities. It can be installed in the usual fashion after it has been
fetched from CPAN where it is found as the Chart-x.x... tarball in a
directory to be listed in Appendix A. Note that as with the GD perl
module, only the specific versions listed above will work.
1.9. HTTP server
...
...
@@ -426,7 +429,6 @@ MySQL related Perl modules:
TimeDate Perl module collection:
ftp://ftp.cpan.org/pub/perl/CPAN/modules/by-module/Date/
GD Perl module: ftp://ftp.cpan.org/pub/perl/CPAN/modules/by-module/GD/
Chart::Base module:
...
...
@@ -467,9 +469,9 @@ instructions by Terry Weissman <terry@mozilla.org>.
The February 25, 1999 re-write of this page was done by Ry4an Brase
<ry4an@ry4an.org>, with some edits by Terry Weissman, Bryce Nesbitt,
& Martin Pool (But don't send bug reports to them! Report them using
bugzilla, at http://bugzilla.mozilla.org/enter_bug.cgi , project Webtools
,
component Bugzilla).
Martin Pool, & Dan Mosedale (But don't send bug reports to them!
Report them using bugzilla, at http://bugzilla.mozilla.org/enter_bug.cgi
,
project Webtools,
component Bugzilla).
Comments from people using this document for the first time are
especially welcomed.
checksetup.pl
View file @
0efe7805
...
...
@@ -162,11 +162,11 @@ $charts++ if eval "require GD";
$charts
++
if
eval
"require Chart::Base"
;
if
(
$charts
!=
2
)
{
print
"If you you want to see graphical bug dependency charts, you may install\n"
,
"the optional libgd and the Perl modules GD
and Chart::Base
, e.g. by\n"
,
"the optional libgd and the Perl modules GD
-1.19 and Chart::Base-0.99b
, e.g. by\n"
,
"running (as root)\n\n"
,
" perl -MCPAN -eshell\n"
,
" install
GD
\n"
,
" install
Chart::Base\n
"
;
" install
LDS/GD-1.19.tar.gz
\n"
,
" install
N/NI/NINJAZ/Chart-0.99b.tar.gz
"
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment