Mercurial > hg4j
diff src/org/tmatesoft/hg/internal/Internals.java @ 331:a37ce7145c3f
Access to repository configuration
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Sat, 05 Nov 2011 04:21:18 +0100 |
parents | 981f9f50bb6c |
children | 5abba41751e6 |
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/internal/Internals.java Tue Oct 25 03:30:02 2011 +0200 +++ b/src/org/tmatesoft/hg/internal/Internals.java Sat Nov 05 04:21:18 2011 +0100 @@ -25,6 +25,7 @@ import java.util.List; import org.tmatesoft.hg.repo.HgInternals; +import org.tmatesoft.hg.repo.HgRepoConfig.ExtensionsSection; import org.tmatesoft.hg.repo.HgRepository; import org.tmatesoft.hg.util.PathRewrite; @@ -73,17 +74,18 @@ } } - public List<Filter.Factory> getFilters(HgRepository hgRepo, ConfigFile cfg) { + public List<Filter.Factory> getFilters(HgRepository hgRepo) { if (filterFactories == null) { filterFactories = new ArrayList<Filter.Factory>(); - if (cfg.hasEnabledExtension("eol")) { + ExtensionsSection cfg = hgRepo.getConfiguration().getExtensions(); + if (cfg.isEnabled("eol")) { NewlineFilter.Factory ff = new NewlineFilter.Factory(); - ff.initialize(hgRepo, cfg); + ff.initialize(hgRepo); filterFactories.add(ff); } - if (cfg.hasEnabledExtension("keyword")) { + if (cfg.isEnabled("keyword")) { KeywordFilter.Factory ff = new KeywordFilter.Factory(); - ff.initialize(hgRepo, cfg); + ff.initialize(hgRepo); filterFactories.add(ff); } } @@ -113,4 +115,13 @@ return System.getProperty("os.name").indexOf("Windows") != -1; } + public ConfigFile readConfiguration(HgRepository hgRepo, File repoRoot) throws IOException { + ConfigFile configFile = new ConfigFile(); + // FIXME use Unix/Win location according to runningOnWindows + configFile.addLocation(new File(System.getProperty("user.home"), ".hgrc")); + // last one, overrides anything else + // <repo>/.hg/hgrc + configFile.addLocation(new File(repoRoot, "hgrc")); + return configFile; + } }