summaryrefslogtreecommitdiffstats
path: root/man1/gitweb.1
diff options
context:
space:
mode:
Diffstat (limited to 'man1/gitweb.1')
-rw-r--r--man1/gitweb.122
1 files changed, 11 insertions, 11 deletions
diff --git a/man1/gitweb.1 b/man1/gitweb.1
index 4bfcc9479..53c3945ad 100644
--- a/man1/gitweb.1
+++ b/man1/gitweb.1
@@ -2,12 +2,12 @@
.\" Title: gitweb
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 03/21/2023
+.\" Date: 03/28/2023
.\" Manual: Git Manual
-.\" Source: Git 2.40.0.130.g27d43aaaf5
+.\" Source: Git 2.40.0.141.g8d90352acc
.\" Language: English
.\"
-.TH "GITWEB" "1" "03/21/2023" "Git 2\&.40\&.0\&.130\&.g27d43a" "Git Manual"
+.TH "GITWEB" "1" "03/28/2023" "Git 2\&.40\&.0\&.141\&.g8d9035" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -130,13 +130,13 @@ See \m[blue]\fBhttp://repo\&.or\&.cz/w/git\&.git/tree/HEAD:/gitweb/\fR\m[] for g
Various aspects of gitweb\(cqs behavior can be controlled through the configuration file \fBgitweb_config\&.perl\fR or \fB/etc/gitweb\&.conf\fR\&. See the \fBgitweb.conf\fR(5) for details\&.
.SS "Repositories"
.sp
-Gitweb can show information from one or more Git repositories\&. These repositories have to be all on local filesystem, and have to share common repository root, i\&.e\&. be all under a single parent repository (but see also "Advanced web server setup" section, "Webserver configuration with multiple projects\(aq root" subsection)\&.
+Gitweb can show information from one or more Git repositories\&. These repositories have to be all on local filesystem, and have to share common repository root, i\&.e\&. be all under a single parent repository (but see also "Advanced web server setup" section, "Webserver configuration with multiple projects\*(Aq root" subsection)\&.
.sp
.if n \{\
.RS 4
.\}
.nf
-our $projectroot = \(aq/path/to/parent/directory\(aq;
+our $projectroot = \*(Aq/path/to/parent/directory\*(Aq;
.fi
.if n \{\
.RE
@@ -529,7 +529,7 @@ Each action is implemented as a subroutine, and must be present in %actions hash
.RS 4
.\}
.nf
-$feature{\(aqblame\(aq}{\(aqdefault\(aq} = [1];
+$feature{\*(Aqblame\*(Aq}{\*(Aqdefault\*(Aq} = [1];
.fi
.if n \{\
.RE
@@ -787,7 +787,7 @@ $per_request_config = 1;
.sp
.sp
Nowadays though gitweb should create HTML base tag when needed (to set base URI for relative links), so it should work automatically\&.
-.SS "Webserver configuration with multiple projects\(aq root"
+.SS "Webserver configuration with multiple projects\*(Aq root"
.sp
If you want to use gitweb with several project roots you can edit your Apache virtual host and gitweb configuration files in the following way\&.
.sp
@@ -808,7 +808,7 @@ The virtual host configuration (in Apache configuration file) should look like t
# make the front page an internal rewrite to the gitweb script
RewriteRule ^/$ /cgi\-bin/gitweb\&.cgi [QSA,L,PT]
- # look for a public_git directory in unix users\(aq home
+ # look for a public_git directory in unix users\*(Aq home
# http://git\&.example\&.org/~<user>/
RewriteRule ^/\e~([^\e/]+)(/|/gitweb\&.cgi)?$ /cgi\-bin/gitweb\&.cgi \e
[QSA,E=GITWEB_PROJECTROOT:/home/$1/public_git/,L,PT]
@@ -843,7 +843,7 @@ Here actual project root is passed to gitweb via \fBGITWEB_PROJECT_ROOT\fR envir
.RS 4
.\}
.nf
-$projectroot = $ENV{\(aqGITWEB_PROJECTROOT\(aq} || "/pub/git";
+$projectroot = $ENV{\*(AqGITWEB_PROJECTROOT\*(Aq} || "/pub/git";
.fi
.if n \{\
.RE
@@ -866,7 +866,7 @@ http://git\&.example\&.org/~<user>/
.sp
If you do not want this feature on your server just remove the second rewrite rule\&.
.sp
-If you already use \(oqmod_userdir` in your virtual host or you don\(cqt want to use the \(aq~\(cq as first character, just comment or remove the second rewrite rule, and uncomment one of the following according to what you want\&.
+If you already use \(oqmod_userdir` in your virtual host or you don\(cqt want to use the \*(Aq~\(cq as first character, just comment or remove the second rewrite rule, and uncomment one of the following according to what you want\&.
.sp
Second, repositories found in \fB/pub/scm/\fR and \fB/var/git/\fR will be accessible through \fBhttp://git\&.example\&.org/scm/\fR and \fBhttp://git\&.example\&.org/var/\fR\&. You can add as many project roots as you want by adding rewrite rules like the third and the fourth\&.
.SS "PATH_INFO usage"
@@ -877,7 +877,7 @@ If you enable PATH_INFO usage in gitweb by putting
.RS 4
.\}
.nf
-$feature{\(aqpathinfo\(aq}{\(aqdefault\(aq} = [1];
+$feature{\*(Aqpathinfo\*(Aq}{\*(Aqdefault\*(Aq} = [1];
.fi
.if n \{\
.RE