aboutsummaryrefslogtreecommitdiff
path: root/gitosis/gitweb.py
diff options
context:
space:
mode:
authorTommi Virtanen <tv@eagain.net>2007-06-04 22:12:29 +0300
committerTommi Virtanen <tv@eagain.net>2007-06-05 13:39:24 +0300
commit418c5c3cfc5812f2ea1dfc5219c43ab549878062 (patch)
tree20c88efbf28f150eca318da3ae421ecc859c8fe2 /gitosis/gitweb.py
parentRemove completed todo entries. (diff)
downloadgitosis-dakkar-418c5c3cfc5812f2ea1dfc5219c43ab549878062.tar.gz
gitosis-dakkar-418c5c3cfc5812f2ea1dfc5219c43ab549878062.tar.bz2
gitosis-dakkar-418c5c3cfc5812f2ea1dfc5219c43ab549878062.zip
Add ``gitosis-gitweb``, for writing gitweb project lists.
Takes the list of repositories to publish from the gitosis config file.
Diffstat (limited to 'gitosis/gitweb.py')
-rw-r--r--gitosis/gitweb.py115
1 files changed, 115 insertions, 0 deletions
diff --git a/gitosis/gitweb.py b/gitosis/gitweb.py
new file mode 100644
index 0000000..2ae682e
--- /dev/null
+++ b/gitosis/gitweb.py
@@ -0,0 +1,115 @@
+"""
+Generate ``gitweb`` project list based on ``gitosis.conf``.
+
+To plug this into ``gitweb``, you have two choices.
+
+- The global way, edit ``/etc/gitweb.conf`` to say::
+
+ $projects_list = "/path/to/your/projects.list";
+
+ Note that there can be only one such use of gitweb.
+
+- The local way, create a new config file::
+
+ do "/etc/gitweb.conf" if -e "/etc/gitweb.conf";
+ $projects_list = "/path/to/your/projects.list";
+ # see ``repositories`` in the ``gitosis`` section
+ # of ``~/.gitosis.conf``; usually ``~/repos``
+ # but you need to expand the tilde here
+ $projectroot = "/path/to/your/repos";
+
+ Then in your web server, set environment variable ``GITWEB_CONFIG``
+ to point to this file.
+
+ This way allows you have multiple separate uses of ``gitweb``, and
+ isolates the changes a bit more nicely. Recommended.
+"""
+
+import os, urllib
+
+from ConfigParser import RawConfigParser, NoSectionError, NoOptionError
+
+def _escape_filename(s):
+ s = s.replace('\\', '\\\\')
+ s = s.replace('$', '\\$')
+ s = s.replace('"', '\\"')
+ return s
+
+def generate(config, fp):
+ """
+ Generate a config file and projects list for ``gitweb``.
+
+ :param config: configuration to read projects from
+ :type config: RawConfigParser
+
+ :param fp: writable for ``projects.list``
+ :type fp: (file-like, anything with ``.write(data)``)
+ """
+ try:
+ global_enable = config.getboolean('gitosis', 'gitweb')
+ except (NoSectionError, NoOptionError):
+ global_enable = False
+
+ for section in config.sections():
+ l = section.split(None, 1)
+ type_ = l.pop(0)
+ if type_ != 'repo':
+ continue
+ if not l:
+ continue
+
+ try:
+ enable = config.getboolean(section, 'gitweb')
+ except (NoSectionError, NoOptionError):
+ enable = global_enable
+
+ if not enable:
+ continue
+
+ name, = l
+ response = [name]
+ try:
+ owner = config.get(section, 'owner')
+ except (NoSectionError, NoOptionError):
+ pass
+ else:
+ response.append(owner)
+
+ line = ' '.join([urllib.quote_plus(s) for s in response])
+ print >>fp, line
+
+def _getParser():
+ import optparse
+ parser = optparse.OptionParser(
+ usage="%prog [--config=FILE] PROJECTSLIST")
+ parser.set_defaults(
+ config=os.path.expanduser('~/.gitosis.conf'),
+ )
+ parser.add_option('--config',
+ metavar='FILE',
+ help='read config from FILE (default %s)'
+ % parser.defaults['config'],
+ )
+ return parser
+
+def main():
+ parser = _getParser()
+ (options, args) = parser.parse_args()
+
+ if len(args) != 1:
+ parser.error('Expected one command line argument.')
+
+ path, = args
+
+ cfg = RawConfigParser()
+ cfg.read(options.config)
+
+ tmp = '%s.%d.tmp' % (path, os.getpid())
+
+ f = file(tmp, 'w')
+ try:
+ generate(config=cfg, fp=f)
+ finally:
+ f.close()
+
+ os.rename(tmp, path)