--- a/OSSEval/OpenSourceProject/views.py
+++ b/OSSEval/OpenSourceProject/views.py
@@ -22,6 +22,7 @@
from analysis.models import Analysis, Instance
from forms import SearchForm
from flossmole import FSF, FC, GC, GH
+from doap import Apache, Eclipse
from OpenSourceProject.models import OSProjectForge, OSProject, Forge
from ohloh import OhlohProxy
from utils import Forges
@@ -65,6 +66,10 @@
projects += GH.search(name)
if target == Forges.OHLOH or target == Forges.ALL:
projects += OhlohProxy.search(name)
+ if target == Forges.APACHE or target == Forges.ALL:
+ projects += Apache.search(name)
+ if target == Forges.ECLIPSE or target == Forges.ALL:
+ projects += Eclipse.search(name)
return render(request, 'OSProject/search_results.html', {'projects': projects, 'analysis_id': analysis_id})