aboutsummaryrefslogtreecommitdiff
path: root/gitosis/gitweb.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitosis/gitweb.py')
-rw-r--r--gitosis/gitweb.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/gitosis/gitweb.py b/gitosis/gitweb.py
index 419cc39..73c255d 100644
--- a/gitosis/gitweb.py
+++ b/gitosis/gitweb.py
@@ -37,9 +37,9 @@ def _escape_filename(s):
s = s.replace('"', '\\"')
return s
-def generate_fp(config, fp):
+def generate_project_list_fp(config, fp):
"""
- Generate a config file and projects list for ``gitweb``.
+ Generate projects list for ``gitweb``.
:param config: configuration to read projects from
:type config: RawConfigParser
@@ -94,9 +94,9 @@ def generate_fp(config, fp):
line = ' '.join([urllib.quote_plus(s) for s in response])
print >>fp, line
-def generate(config, path):
+def generate_project_list(config, path):
"""
- Generate a config file and projects list for ``gitweb``.
+ Generate projects list for ``gitweb``.
:param config: configuration to read projects from
:type config: RawConfigParser