Show More
@@ -0,0 +1,17 | |||||
|
1 | #!/usr/bin/env python | |||
|
2 | # | |||
|
3 | # An example CGI script to export multiple hgweb repos, edit as necessary | |||
|
4 | ||||
|
5 | import cgi, cgitb, os, sys, ConfigParser | |||
|
6 | cgitb.enable() | |||
|
7 | ||||
|
8 | # sys.path.insert(0, "/path/to/python/lib") # if not a system-wide install | |||
|
9 | from mercurial import hgweb | |||
|
10 | ||||
|
11 | # The config file looks like this: | |||
|
12 | # [paths] | |||
|
13 | # virtual/path = /real/path | |||
|
14 | # virtual/path = /real/path | |||
|
15 | ||||
|
16 | h = hgweb.hgwebdir("hgweb.config") | |||
|
17 | h.run() |
@@ -0,0 +1,18 | |||||
|
1 | #header# | |||
|
2 | <title>Mercurial repositories index</title> | |||
|
3 | </head> | |||
|
4 | <body> | |||
|
5 | ||||
|
6 | <h2>Mercurial Repositories</h2> | |||
|
7 | ||||
|
8 | <table> | |||
|
9 | <tr> | |||
|
10 | <td>Name</td> | |||
|
11 | <td>Description</td> | |||
|
12 | <td>Author</td> | |||
|
13 | <td>Last change</td> | |||
|
14 | <tr> | |||
|
15 | #entries# | |||
|
16 | </table> | |||
|
17 | ||||
|
18 | #footer# |
@@ -114,18 +114,7 class templater: | |||||
114 | def rfc822date(x): |
|
114 | def rfc822date(x): | |
115 | return time.strftime("%a, %d %b %Y %H:%M:%S +0000", time.gmtime(x)) |
|
115 | return time.strftime("%a, %d %b %Y %H:%M:%S +0000", time.gmtime(x)) | |
116 |
|
116 | |||
117 | class hgweb: |
|
117 | common_filters = { | |
118 | maxchanges = 10 |
|
|||
119 | maxfiles = 10 |
|
|||
120 |
|
||||
121 | def __init__(self, path, name, templates = ""): |
|
|||
122 | self.templates = templates |
|
|||
123 | self.reponame = name |
|
|||
124 | self.path = path |
|
|||
125 | self.mtime = -1 |
|
|||
126 | self.viewonly = 0 |
|
|||
127 |
|
||||
128 | self.filters = { |
|
|||
129 |
|
|
118 | "escape": cgi.escape, | |
130 |
|
|
119 | "age": age, | |
131 |
|
|
120 | "date": (lambda x: time.asctime(time.gmtime(x))), | |
@@ -137,6 +126,17 class hgweb: | |||||
137 |
|
|
126 | "rfc822date": rfc822date, | |
138 | } |
|
127 | } | |
139 |
|
128 | |||
|
129 | class hgweb: | |||
|
130 | maxchanges = 10 | |||
|
131 | maxfiles = 10 | |||
|
132 | ||||
|
133 | def __init__(self, path, name=None, templates=""): | |||
|
134 | self.templates = templates | |||
|
135 | self.reponame = name | |||
|
136 | self.path = path | |||
|
137 | self.mtime = -1 | |||
|
138 | self.viewonly = 0 | |||
|
139 | ||||
140 | def refresh(self): |
|
140 | def refresh(self): | |
141 | s = os.stat(os.path.join(self.path, ".hg", "00changelog.i")) |
|
141 | s = os.stat(os.path.join(self.path, ".hg", "00changelog.i")) | |
142 | if s.st_mtime != self.mtime: |
|
142 | if s.st_mtime != self.mtime: | |
@@ -619,7 +619,7 class hgweb: | |||||
619 |
|
619 | |||
620 | name = self.reponame or self.repo.ui.config("web", "name", os.getcwd()) |
|
620 | name = self.reponame or self.repo.ui.config("web", "name", os.getcwd()) | |
621 |
|
621 | |||
622 |
self.t = templater(m, |
|
622 | self.t = templater(m, common_filters, | |
623 | {"url":url, |
|
623 | {"url":url, | |
624 | "repo":name, |
|
624 | "repo":name, | |
625 | "header":header, |
|
625 | "header":header, | |
@@ -818,3 +818,57 def server(path, name, templates, addres | |||||
818 | httpd = create_server(path, name, templates, address, port, use_ipv6, |
|
818 | httpd = create_server(path, name, templates, address, port, use_ipv6, | |
819 | accesslog, errorlog) |
|
819 | accesslog, errorlog) | |
820 | httpd.serve_forever() |
|
820 | httpd.serve_forever() | |
|
821 | ||||
|
822 | # This is a stopgap | |||
|
823 | class hgwebdir: | |||
|
824 | def __init__(self, config): | |||
|
825 | self.cp = ConfigParser.SafeConfigParser() | |||
|
826 | self.cp.read(config) | |||
|
827 | ||||
|
828 | def run(self): | |||
|
829 | try: | |||
|
830 | virtual = os.environ["PATH_INFO"] | |||
|
831 | except: | |||
|
832 | virtual = "" | |||
|
833 | ||||
|
834 | if virtual: | |||
|
835 | real = self.cp.get("paths", virtual[1:]) | |||
|
836 | h = hgweb.hgweb(real) | |||
|
837 | h.run() | |||
|
838 | return | |||
|
839 | ||||
|
840 | def header(**map): | |||
|
841 | yield tmpl("header", **map) | |||
|
842 | ||||
|
843 | def footer(**map): | |||
|
844 | yield tmpl("footer", **map) | |||
|
845 | ||||
|
846 | templates = templatepath() | |||
|
847 | m = os.path.join(templates, "map") | |||
|
848 | tmpl = templater(m, common_filters, | |||
|
849 | {"header": header, "footer": footer}) | |||
|
850 | ||||
|
851 | def entries(**map): | |||
|
852 | parity = 0 | |||
|
853 | for v,r in self.cp.items("paths"): | |||
|
854 | cp2 = ConfigParser.SafeConfigParser() | |||
|
855 | cp2.read(os.path.join(r, ".hg", "hgrc")) | |||
|
856 | ||||
|
857 | def get(sec, val, default): | |||
|
858 | try: | |||
|
859 | return cp2.get(sec, val) | |||
|
860 | except: | |||
|
861 | return default | |||
|
862 | ||||
|
863 | yield tmpl("indexentry", | |||
|
864 | author = get("web", "author", "unknown"), | |||
|
865 | name = get("web", "name", v), | |||
|
866 | url = os.environ["REQUEST_URI"] + "/" + v, | |||
|
867 | parity = parity, | |||
|
868 | shortdesc = get("web", "description", "unknown"), | |||
|
869 | lastupdate = os.stat(os.path.join(r, ".hg", | |||
|
870 | "00changelog.d")).st_mtime) | |||
|
871 | ||||
|
872 | parity = 1 - parity | |||
|
873 | ||||
|
874 | write(tmpl("index", entries = entries)) |
@@ -35,3 +35,5 changelogtag = "<tr><th class="tag">tag: | |||||
35 | changesettag = "<tr><th class="tag">tag:</th><td class="tag">#tag#</td></tr>" |
|
35 | changesettag = "<tr><th class="tag">tag:</th><td class="tag">#tag#</td></tr>" | |
36 | filediffparent = "<tr><th class="parent">parent #rev#:</th><td class="parent"><a href="?cmd=changeset;node=#node#">#node|short#</a></td></tr>" |
|
36 | filediffparent = "<tr><th class="parent">parent #rev#:</th><td class="parent"><a href="?cmd=changeset;node=#node#">#node|short#</a></td></tr>" | |
37 | filelogparent = "<tr><td align="right">parent #rev#: </td><td><a href="?cmd=file;file=#file#;filenode=#node#">#node|short#</a></td></tr>" |
|
37 | filelogparent = "<tr><td align="right">parent #rev#: </td><td><a href="?cmd=file;file=#file#;filenode=#node#">#node|short#</a></td></tr>" | |
|
38 | indexentry = "<tr class="parity#parity#"><td><a href="#url#">#name#</a></td><td>#shortdesc#</td><td>#author# <i>#email|obfuscate#</i></td><td>#lastupdate|age# ago</td></tr>" | |||
|
39 | index = index.tmpl |
General Comments 0
You need to be logged in to leave comments.
Login now