# geomcore combines its own history with some
# of rt3 - handle separately
create repository geomcore
end repository

match /rt\^3/branches/([^/]+)/
   min revision 1
   max revision 43109
   repository geomcore
   branch \1
   substitute branch s/\^/_/
end match
match /rt\^3/tags/([^/]+)/
   min revision 1
   max revision 43109
   repository geomcore
   branch tag--\1
   substitute branch s/\^/_/
end match
match /rt\^3/trunk/
   min revision 1
   max revision 43109
   repository geomcore
   branch master
end match
match /rt\^3/
   min revision 1
   max revision 43109
   repository geomcore
   branch master
end match

match /geomcore/branches/([^/]+)/
   repository geomcore
   branch \1
end match
match /geomcore/tags/([^/]+)/
   repository geomcore
   branch tag--\1
end match
match /geomcore/trunk/
   repository geomcore
   branch master
end match
match /geomcore/
   repository geomcore
   branch master
end match

# Ignore everything else
match /
end match

