aboutsummaryrefslogtreecommitdiffstats
path: root/src/ruleparser.cpp
diff options
context:
space:
mode:
authorThiago Macieira <thiago@cassini.local.lan>2007-12-24 14:06:33 -0200
committerThiago Macieira <thiago@cassini.local.lan>2007-12-24 14:06:33 -0200
commitf97a8dff0675251aadc60d1c06ce5315eae2c36b (patch)
treeeca97cc72ac2b5d8e43c7f46c569f36b9d66afbb /src/ruleparser.cpp
parent9fa82b403b5fef362b36d9f3ad199fd016c2ee96 (diff)
downloadsvn2git-f97a8dff0675251aadc60d1c06ce5315eae2c36b.tar
svn2git-f97a8dff0675251aadc60d1c06ce5315eae2c36b.tar.gz
svn2git-f97a8dff0675251aadc60d1c06ce5315eae2c36b.tar.bz2
svn2git-f97a8dff0675251aadc60d1c06ce5315eae2c36b.tar.xz
svn2git-f97a8dff0675251aadc60d1c06ce5315eae2c36b.zip
Support for pathless rules
Diffstat (limited to 'src/ruleparser.cpp')
-rw-r--r--src/ruleparser.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/ruleparser.cpp b/src/ruleparser.cpp
index 6d3e417..da05749 100644
--- a/src/ruleparser.cpp
+++ b/src/ruleparser.cpp
@@ -53,7 +53,6 @@ void Rules::load()
QRegExp matchLine("match\\s+(.*)", Qt::CaseInsensitive);
QRegExp matchRepoLine("repository\\s+(\\S+)", Qt::CaseInsensitive);
QRegExp matchBranchLine("branch\\s+(\\S+)", Qt::CaseInsensitive);
- QRegExp matchPathLine("path\\s+(.*)", Qt::CaseInsensitive);
QRegExp matchRevLine("(min|max) revision (\\d+)", Qt::CaseInsensitive);
QTextStream s(&file);
@@ -93,9 +92,6 @@ void Rules::load()
} else if (matchBranchLine.exactMatch(line)) {
match.branch = matchBranchLine.cap(1);
continue;
- } else if (matchPathLine.exactMatch(line)) {
- match.path = matchPathLine.cap(1);
- continue;
} else if (matchRevLine.exactMatch(line)) {
if (matchRevLine.cap(1) == "min")
match.minRevision = matchRevLine.cap(2).toInt();