Add basic framework for web based repository access

/p/$project/source/repo/ is assigned to a method that
takes care of providing repository access.
For now, this results in an exception on all SCMs.
This commit is contained in:
Patrick Georgi
2011-08-19 22:01:55 +02:00
parent a2c832a130
commit aa2868eb17
3 changed files with 16 additions and 0 deletions

View File

@@ -497,5 +497,10 @@ class IDF_Scm
{
return 0;
}
public function repository($request, $match)
{
throw new Exception('This repository does not support web based repository access');
}
}