aboutsummaryrefslogtreecommitdiff
blob: 7f50a45fcb186db917eedf7a428c2d10632d3c2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
===========
 TODO list
===========

- let me have ~git owned by root:root

- gitosis-lint: check that the user account (e.g. ``git``) looks valid

- git-daemon-export-ok

- guard against *.pub files named -foo.pub or foo;bar.pub

- gitweb doesn't understand mappings, just visible/no,
  physical and logical path are always the same

  - maybe remove the whole mapping feature for good?

  - maybe create symlink trees to make mappings visible in filesystem?

- use groups somehow to reduce typing for ``gitweb = yes``

- detect when repo actually ends in ``.git`` for ``projects.list``
  (otherwise gitweb won't see it)

- unit test projects.list generation in run-hook

- ConfigParser does not guarantee ordering, rewrite all unit tests to
  assume sorted, fix code to sort

- test with ssh://

- write description to a file, make REPO.git/description symlink to it
  if it doesn't exist (thus not overwriting local changes)

- gitweb knows about cloneurl, handle like description

- gitweb knows about README.html, figure out how to generate from e.g.
  README.rst in gitosis.git

- make gitosis-gitweb output a gitweb.conf file too

- need to chgrp repositories www-data to make them accessible by gitweb

- allow using git-cvsserver?
  - git-shell can now let users do cvs-compatible commits
  - ponder GIT_AUTHOR_NAME etc

- move from log.foo("bar" % quux) to log.foo("bar",  quux)

- can't trust "~"::

	[0 tv@musti ~]$ sudo python -c 'import os; print os.path.expanduser("~")'
	/home/tv
	[0 tv@musti ~]$ sudo -H python -c 'import os; print os.path.expanduser("~")'
	/root

- command line options

  - gitosis init --repositories=
  - gitosis init --config= (or whatever the option is elsewhere)
  - gitosis init --home= (for testing)
  - gitosis init --admin=username[@host]

- gitosis-run-hook has to be in PATH and PYTHONPATH before you can
  push to gitosis-admin.git

- make generated gitosis.conf read-only to discourage editing

- maybe postprocess gitosis.conf to have a "# DO NOT EDIT" header?

- git enhancement: "git init" should output to stderr, not to stdout

- README says "when prompted", but those are INFO level log messages,
  not shown by default