From: Jakub Narebski <jnareb@gmail.com>
To: Drew Northup <drew.northup@maine.edu>
Cc: git@vger.kernel.org,
Giuseppe Bilotta <giuseppe.bilotta@gmail.com>,
"John 'Warthog9' Hawley" <warthog9@kernel.org>,
Jonathan Nieder <jrnieder@gmail.com>, Petr Baudis <pasky@suse.cz>,
Sylvain Rabot <sylvain@abstraction.fr>
Subject: Re: [PATCH/WIP] Starting work on a man page for /etc/gitweb.conf
Date: Thu, 12 May 2011 20:08:51 +0200 [thread overview]
Message-ID: <201105122008.53322.jnareb@gmail.com> (raw)
In-Reply-To: <1305141664.30104.11.camel@drew-northup.unet.maine.edu>
On Wed, 11 May 2011, Drew Northup wrote:
> This is a work in progress. Much of what is in it has been pulled
> directly from the README and INSTALL files of gitweb. No effort has yet
> been made to de-duplicate any of this.
>
> TODO:
I would add here:
* Move most of gitweb's README and INSTALL into gitweb.txt and
gitweb.conf.txt, so that their documentation can be easily viewed.
> * Clean up README and INSTALL files
This is connected to added point.
> * Add Makefile rules to build man / HTML pages.
Note that if we decode to go Documentation/gitweb{,.conf}.txt route, i.e.
putting docs in Documentation, this point would change to the following:
* Include gitweb's docs in 'gitweb' package (git.spec.in).
diff --git i/git.spec.in w/git.spec.in
index 91c8462..06b27eb 100644
--- i/git.spec.in
+++ w/git.spec.in
@@ -200,6 +200,9 @@ rm -rf $RPM_BUILD_ROOT
%files -n gitweb
%defattr(-,root,root)
%{_datadir}/gitweb
+%{!?_without_docs: %{_mandir}/man1/*gitweb*.1*}
+%{!?_without_docs: %{_mandir}/man5/*gitweb*.5*}
+%{!?_without_docs: %doc Documentation/*gitweb*.html }
%files -n perl-Git -f perl-files
%defattr(-,root,root)
[...]
> If you don't really need (or want) to be on the CC list let me know. You were
> in the output of 'git blame'....
I have culled CC list a bit, please notify if you want to be
excluded/included.
[Skipping issues mentioned in other subthread]
> +DISCUSSION
> +----------
> +
> +The location of `gitweb.conf` is defined at compile time using the
> +configuration value `GITWEB_CONFIG_SYSTEM` and defaults to /etc/gitweb.conf.
> +The name of the per-instance configuration file is defined in gitweb by
> +`GITWEB_CONFIG`.
...and defaults to gitweb_conf.perl.
> +
> +*NOTE:* Values defined in the per-instance configuration file override both
> +values found in the gitweb CGI as well as values found in the system-wide
> +gitweb.conf file.
Actually if there is per-instance configuration file, it is used, and only
otherwise system-wide configuration file is sourced. But probably that
should be changed:
diff --git i/gitweb/gitweb.perl w/gitweb/gitweb.perl
index acdc5b8..9527cd2 100755
--- i/gitweb/gitweb.perl
+++ w/gitweb/gitweb.perl
@@ -637,12 +637,13 @@ sub evaluate_gitweb_config {
our $GITWEB_CONFIG = $ENV{'GITWEB_CONFIG'} || "++GITWEB_CONFIG++";
our $GITWEB_CONFIG_SYSTEM = $ENV{'GITWEB_CONFIG_SYSTEM'} || "++GITWEB_CONFIG_SYSTEM++";
# die if there are errors parsing config file
+ if (-e $GITWEB_CONFIG_SYSTEM) {
+ do $GITWEB_CONFIG_SYSTEM;
+ die $@ if $@;
+ }
if (-e $GITWEB_CONFIG) {
do $GITWEB_CONFIG;
die $@ if $@;
- } elsif (-e $GITWEB_CONFIG_SYSTEM) {
- do $GITWEB_CONFIG_SYSTEM;
- die $@ if $@;
}
}
Note: if we change it, we should mention priority of config sources, like
e.g. in ssh_conf(5).
Values in config file override default values found in gitweb sources.
> +
> +The syntax of the configuration files is that of PERL, as these files are
> +indeed handled as fragments of PERL code (the language that gitweb itself is
> +written in). Variables may be set using "'our $variable = value'"; text from
> +"#" character until the end of a line is ignored.
I think it would be nice to have an example here, something like:
-----
our $site_name = 'My Gitweb'; # or 'localhost'
-----
> See the perlsyn(1) man page
> +for more information.
Is this how other manpages should be referenced in AsciiDoc?
BTW. What is –, and could we write it using something more readable?
> +One good reason to take advantage of the system-wide and local gitweb
> +configuration files is that not all settings may be set up directly in the CGI
> +itself. Optional features – defined using the '%features' variable
> +– must be set in one of the two configuration files.
> +
> +CONFIGURATION SETTINGS
> +----------------------
> +Standard Options
> +~~~~~~~~~~~~~~~~~
> +The following are not typically set or overridden at build time:
Hmmm... There are four kinds of configuration variables:
1. Variables with default values set during build time
1.a. Those that usually do not need to be overridden, even if you are
using packaged gitweb, and do not compile it yourself, like
e.g. $GIT or $gitweb_js.
1.b. Those that usually need to be overridden when we cannot control
build-time configuration, e.g. using gitweb package, like e.g.
$projectroot.
If we build gitweb from sources, we can use config.mak or
gitweb/config.mak to save build time configuration.
2. Variables which cannot be configured during build time
2.a. Those that gitweb sets automatically, and usually do not need to
be changed, like e.g. $base_url.
2.b. Those that need to be set in config file to make use of feature.
This includes whole %feature-based configuration.
Here there is a table:
Variable | type | build value
======================================================================
$GIT | 1.a | "$(bindir)/git" e.g. "/usr/bin/git"
$version | 1.a | "$(GIT_VERSION)" e.g. "1.7.5"
$projectroot | 1.b !!| "/pub/git"
$projects_list | 1.[ab]| "", which means $projectroot
$my_url, $my_uri | 2.a |
$base_url | 2.a |
$home_link | 2.a |
@stylesheets | 1.a | "static/gitweb.css"
$logo_url | 2.a ? | "http://git-scm.com/"
$logo_label | 2.a ? | "git homepage"
$projects_list_description_width
| 2.b | 25
@git_base_url_list | 1.b | "", which means no git base url
$default_blob_plain_mimetype
| 2.a | "text/plain"
$default_text_plain_charset
| 2.b ? | undef
$mimetypes_file | 2.b | undef
$fallback_encoding | 2.b | "latin1"
@diff_opts | 2.b | ('-M')
$prevent_xss | 2.b | 0, which means false
$maxload | 2.b | 300
$highlight_bin | 1.[ab]| "highlight"
$per_request_config |2.b | 1
.........................................................................
$project_maxdepth | 1.a | 2007
$home_link_str | 1.a ? | "projects"
$site_name |[12].a?| ($ENV{'SERVER_NAME'} || "Untitled") . " Git"
$site_header, $site_footer
| 1.b | ""
$home_text | 1.b | "indextext.html"
$logo | 1.a ? | "static/git-logo.png"
$favicon | 1.a ? | "static/git-favicon.png"
$javascript | 1.a! | "static/gitweb.js"
$default_projects_order
| 2.a | "project"
$export_ok | 1.b | "", which means feature is turned off
$export_auth_hook | 2.b | undef, which means feature is turned off
$strict_export | 1.b | "", which means feature is turned off
> +Configuration Options Often Set at Compile Time
> +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> +These configuration variables are often specified at compile time and are
> +defined by default in the gitweb CGI itself:
> +
> +GIT_BINDIR::
> + Points where to find the git executable. You should set it up to
> + the place where the git binary was installed (usually /usr/bin) if you
> + don't install git from sources together with gitweb. [Default: $(bindir)]
[...]
I think this should be left in gitweb/INSTALL, as those are important
_only_ during building gitweb.
> +Configuration File Example
> +~~~~~~~~~~~~~~~~~~~~~~~~~~
> +
> +To enable blame, pickaxe search, and snapshot support, while allowing
> +individual projects to turn them off, put the following in your
> +GITWEB_CONFIG file:
> +
> + $feature{'blame'}{'default'} = [1];
> + $feature{'blame'}{'override'} = 1;
I think this example requires explaining upfront what does it mean to
allow feature override, i.e. about per-repository configuration.
--
Jakub Narebski
Poland
next prev parent reply other threads:[~2011-05-12 18:09 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-05-11 19:21 [PATCH/WIP] Starting work on a man page for /etc/gitweb.conf Drew Northup
2011-05-12 10:53 ` Jonathan Nieder
2011-05-12 15:01 ` Jakub Narebski
2011-05-12 17:03 ` Drew Northup
2011-05-12 17:24 ` J.H.
2011-05-12 18:16 ` Drew Northup
2011-05-12 18:17 ` Jakub Narebski
2011-05-12 18:08 ` Jakub Narebski [this message]
2011-05-12 18:33 ` Drew Northup
2011-05-12 19:01 ` Jakub Narebski
2011-05-15 10:34 ` [RFC/PATCH] gitweb: Starting work on a man page for gitweb (WIP) Jakub Narebski
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=201105122008.53322.jnareb@gmail.com \
--to=jnareb@gmail.com \
--cc=drew.northup@maine.edu \
--cc=git@vger.kernel.org \
--cc=giuseppe.bilotta@gmail.com \
--cc=jrnieder@gmail.com \
--cc=pasky@suse.cz \
--cc=sylvain@abstraction.fr \
--cc=warthog9@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).