equal
deleted
inserted
replaced
5 # This software may be used and distributed according to the terms |
5 # This software may be used and distributed according to the terms |
6 # of the GNU General Public License, incorporated herein by reference. |
6 # of the GNU General Public License, incorporated herein by reference. |
7 |
7 |
8 from node import bin, nullid |
8 from node import bin, nullid |
9 from revlog import revlog |
9 from revlog import revlog |
10 import os |
|
11 |
10 |
12 class filelog(revlog): |
11 class filelog(revlog): |
13 def __init__(self, opener, path): |
12 def __init__(self, opener, path): |
14 revlog.__init__(self, opener, |
13 revlog.__init__(self, opener, |
15 "/".join(("data", self.encodedir(path + ".i")))) |
14 "/".join(("data", self.encodedir(path + ".i")))) |