Mercurial > jhg
comparison src/org/tmatesoft/hg/repo/HgRepository.java @ 471:7bcfbc255f48
Merge changes from smartgit3 branch into 1.1 stream
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Wed, 11 Jul 2012 20:40:47 +0200 |
parents | 3ca4ae7bdd38 d0e5dc3cae6e |
children | a458f9fb00ce |
comparison
equal
deleted
inserted
replaced
470:31bd09da0dcf | 471:7bcfbc255f48 |
---|---|
95 | 95 |
96 private final File repoDir; // .hg folder | 96 private final File repoDir; // .hg folder |
97 private final File workingDir; // .hg/../ | 97 private final File workingDir; // .hg/../ |
98 private final String repoLocation; | 98 private final String repoLocation; |
99 private final DataAccessProvider dataAccess; | 99 private final DataAccessProvider dataAccess; |
100 private final PathRewrite normalizePath; | 100 private final PathRewrite normalizePath; // normalized slashes but otherwise regular file names |
101 private final PathRewrite dataPathHelper; | 101 private final PathRewrite dataPathHelper; // access to file storage area (usually under .hg/store/data/), with filenames mangled |
102 private final PathRewrite repoPathHelper; | 102 private final PathRewrite repoPathHelper; // access to system files |
103 private final SessionContext sessionContext; | 103 private final SessionContext sessionContext; |
104 | 104 |
105 private HgChangelog changelog; | 105 private HgChangelog changelog; |
106 private HgManifest manifest; | 106 private HgManifest manifest; |
107 private HgTags tags; | 107 private HgTags tags; |