summaryrefslogtreecommitdiff
path: root/www/gitweb/files
diff options
context:
space:
mode:
authorjmmv <jmmv@pkgsrc.org>2007-03-22 17:15:36 +0000
committerjmmv <jmmv@pkgsrc.org>2007-03-22 17:15:36 +0000
commit3b0c09feac10a83bf380fe1c0bc8e4043a2f0076 (patch)
tree9876aef4f97908f3e1dc896205172102f803025d /www/gitweb/files
parent91101fcf033ac77c033ee5db6b63c7bf95f871fe (diff)
downloadpkgsrc-3b0c09feac10a83bf380fe1c0bc8e4043a2f0076.tar.gz
Initial import of gitweb, version 1.5.0.3:
gitweb provides an easy to use and full-fledged web interface to your Git repositories. It allows users to browse the contents of all served projects, including the ability to inspect individual files and their history for any of the available branches.
Diffstat (limited to 'www/gitweb/files')
-rw-r--r--www/gitweb/files/gitweb.conf59
1 files changed, 59 insertions, 0 deletions
diff --git a/www/gitweb/files/gitweb.conf b/www/gitweb/files/gitweb.conf
new file mode 100644
index 00000000000..136102c61c6
--- /dev/null
+++ b/www/gitweb/files/gitweb.conf
@@ -0,0 +1,59 @@
+#
+# gitweb.conf
+#
+# Configuration file for the web interface to GIT.
+#
+# This file is a Perl script that is executed by the gitweb interface
+# after the defaults are set. To override a setting, just uncomment
+# it here and set it to the appropriate value.
+#
+
+# Core git executable to use.
+# This can just be "git" if your webserver has a sensible PATH.
+#our $GIT = "/path/to/git";
+
+# Absolute fs-path which will be prepended to the project path.
+# This is where your GIT repositories live in.
+#our $projectroot = "/pub/scm";
+
+# Target of the home link on top of all pages.
+#our $home_link = $my_uri || "/";
+
+# String of the home link on top of all pages.
+#our $home_link_str = "projects";
+
+# Name of your site or organization to appear in page titles.
+# Replace this with something more descriptive for clearer bookmarks.
+#our $site_name = ""
+
+# Filename of HTML text to include at top of each page.
+#our $site_header = "";
+# HTML text to include at home page.
+#our $home_text = "/gitweb/indextext.html";
+# Filename of HTML text to include at bottom of each page.
+#our $site_footer = "";
+
+# URI of the stylesheet to use.
+#our $stylesheet = "/gitweb/gitweb.css";
+# URI of GIT logo (72x27 size).
+#our $logo = "/gitweb/git-logo.png";
+# URI of GIT favicon, assumed to be image/png type.
+#our $favicon = "/gitweb/git-favicon.png";
+
+# URI and label (title) of GIT logo link.
+#our $logo_url = "http://git.or.cz/";
+#our $logo_label = "git homepage";
+
+# Source of projects list.
+#our $projects_list = "";
+
+# Show repository only if this file exists.
+# Only effective if this variable evaluates to true.
+#our $export_ok = "";
+
+# Only allow viewing of repositories also shown on the overview page.
+#our $strict_export = "";
+
+# List of git base URLs used for URL to where fetch project from,
+# i.e. full URL is "$git_base_url/$project"
+#our @git_base_url_list = grep { $_ ne '' } ("/some/url");