hgweb: partially revert
4ec58b157265
The change from self.repo.ui.diffopts() to ui.diffopts() causes a
traceback when the diff of a changeset should be displayed in the
web interface. Revert to self.repo.ui.diffopts() for now.
--- a/mercurial/hgweb/hgweb_mod.py Sun Aug 13 17:03:33 2006 -0700
+++ b/mercurial/hgweb/hgweb_mod.py Mon Aug 14 16:06:37 2006 +0300
@@ -134,7 +134,7 @@
modified, added, removed = map(lambda x: filterfiles(files, x),
(modified, added, removed))
- diffopts = ui.diffopts()
+ diffopts = self.repo.ui.diffopts()
for f in modified:
to = r.file(f).read(mmap1[f])
tn = r.file(f).read(mmap2[f])