Initial commit.

This commit is contained in:
AJ Kelly
2010-01-26 21:00:30 -06:00
parent 80057f53cd
commit 3e51544930
4074 changed files with 588945 additions and 543956 deletions
+4 -4
View File
@@ -39,10 +39,12 @@ void ScreenOptionsExportPackage::BeginScreen()
GetDirListing( *s + "*", m_vsPossibleDirsToExport, true, true );
}
// Add courses. Only support courses that are in a group folder. Support for courses not in a group folder should be phased out.
// Add courses. Only support courses that are in a group folder.
// Support for courses not in a group folder should be phased out.
{
vector<RString> vs;
GetDirListing( SpecialFiles::COURSES_DIR + "*", vs, true, true );
StripCvsAndSvn( vs );
FOREACH_CONST( RString, vs, s )
{
m_vsPossibleDirsToExport.push_back( *s );
@@ -60,12 +62,10 @@ void ScreenOptionsExportPackage::BeginScreen()
GetDirListing( *s + "/*", m_vsPossibleDirsToExport, true, true );
}
}
StripCvsAndSvn( m_vsPossibleDirsToExport );
}
vector<OptionRowHandler*> OptionRowHandlers;
FOREACH_CONST( RString, m_vsPossibleDirsToExport, s )
{