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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
32405051
Commit
32405051
authored
Apr 13, 2008
by
wurblzap%gmail.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 428637 â Documentation doesn't build (and even less on Perl 5.10).
Patch by Marc Schumann <wurblzap@gmail.com>; r=mkanat,LpSolit; a=mkanat
parent
bf996790
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
7 deletions
+10
-7
installation.xml
docs/en/xml/installation.xml
+3
-3
makedocs.pl
docs/makedocs.pl
+7
-4
No files found.
docs/en/xml/installation.xml
View file @
32405051
<!-- <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"> -->
<!-- $Id: installation.xml,v 1.15
5 2008/04/04 06:48:25 lpsolit
%gmail.com Exp $ -->
<!-- $Id: installation.xml,v 1.15
6 2008/04/12 22:24:23 wurblzap
%gmail.com Exp $ -->
<chapter
id=
"installing-bugzilla"
>
<title>
Installing Bugzilla
</title>
...
...
@@ -285,7 +285,7 @@
<listitem>
<para>
CGI
&min-cgi-ver;
or CGI
&min-mp-cgi-ver;
if using mod_perl
CGI
&min-cgi-ver;
</para>
</listitem>
...
...
@@ -469,7 +469,7 @@
<listitem>
<para>
CGI
(
&min-cgi-ver;
) for mod_perl
(
&min-
mp-
cgi-ver;
) for mod_perl
</para>
</listitem>
...
...
docs/makedocs.pl
View file @
32405051
...
...
@@ -73,9 +73,11 @@ foreach my $module (@$modules, @$opt_modules)
print
ENTITIES
'<!ENTITY min-'
.
$name
.
'-ver "'
.
$version
.
'">'
.
"\n"
;
}
# CGI is a special case, because it has an optional version *and* a required
# version.
my
(
$cgi_opt
)
=
grep
(
$_
->
{
package
}
eq
'CGI'
,
@$opt_modules
);
# CGI is a special case, because for Perl versions below 5.10, it has an
# optional version *and* a required version.
# We check @opt_modules first, then @modules, and pick the first we get.
# We'll get the optional one then, if it is given, otherwise the required one.
my
(
$cgi_opt
)
=
grep
(
$_
->
{
module
}
eq
'CGI'
,
@$opt_modules
,
@$modules
);
print
ENTITIES
'<!ENTITY min-mp-cgi-ver "'
.
$cgi_opt
->
{
version
}
.
'">'
.
"\n"
;
print
ENTITIES
"\n <!-- Database Versions --> \n"
;
...
...
@@ -83,7 +85,8 @@ print ENTITIES "\n <!-- Database Versions --> \n";
my
$db_modules
=
DB_MODULE
;
foreach
my
$db
(
keys
%
$db_modules
)
{
my
$dbd
=
$db_modules
->
{
$db
}
->
{
dbd
};
my
$name
=
$dbd
->
{
package
};
my
$name
=
$dbd
->
{
module
};
$name
=~
s/::/-/g
;
$name
=
lc
(
$name
);
my
$version
=
$dbd
->
{
version
}
||
'any'
;
my
$db_version
=
$db_modules
->
{
$db
}
->
{
'db_version'
};
...
...
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