Skip to content
Snippets Groups Projects
Commit 66087f89 authored by toole1's avatar toole1
Browse files

monad release 2.1.2.3

git-svn-id: https://subversion.cs.illinois.edu/svn/cs225@5785 6fbd10e7-183d-0410-a318-cb416676e4f2
parent 232f81c2
No related branches found
No related tags found
No related merge requests found
monad identification file monad identification file
This file is used for monad directory identification This file is used for monad directory identification
Built by toole1 on linux1.ews.illinois.edu Built by toole1 on linux1.ews.illinois.edu
Build Date: Tue Jan 17 23:36:39 CST 2012 Build Date: Wed Jan 18 12:25:00 CST 2012
...@@ -17,6 +17,6 @@ main.cpp ...@@ -17,6 +17,6 @@ main.cpp
unit_tests.cpp unit_tests.cpp
[Libraries] [Libraries]
; Any external library folders to be present in the same directory as the ; Any external library folders to be present in the same directory as the
; testing directory. These should be mirrored in [SVN Root]/_public/ ; testing directory. These should be mirrored in [SVN Root]/_shared/
; The 'testutil' library in this directory is also available ; The 'testutil' library in this directory is also available
EasyBMP EasyBMP
No preview for this file type
[SVN Root] [SVN Root]
:https://subversion.ews.illinois.edu/svn/sp12-cs225/ :https://subversion.ews.illinois.edu/svn/sp12-cs225/
[SVN Public Dir]
:_shared
[Staff SVN] [Staff SVN]
:https://subversion.cs.illinois.edu/svn/cs225/ :https://subversion.cs.illinois.edu/svn/cs225/
[Staff SVN Dir]
:_current
[Monad Files] [Monad Files]
Makefile.proxy Makefile.proxy
memcheck.h memcheck.h
......
No preview for this file type
...@@ -443,21 +443,21 @@ string monad::getFolder(const string & folder, bool link) ...@@ -443,21 +443,21 @@ string monad::getFolder(const string & folder, bool link)
// Check Subversion // Check Subversion
const char * svn_config_name = NULL; string svn_config_name;
const char * svn_subdir = NULL; string svn_config_subdir;
if (!opts::staff) if (!opts::staff)
{ {
svn_config_name = "SVN Root"; svn_config_name = "SVN Root";
svn_subdir = "/_public/"; svn_config_subdir = "SVN Public Dir";
} }
else else
{ {
svn_config_name = "Staff SVN"; svn_config_name = "Staff SVN";
svn_subdir = "/_current/"; svn_config_subdir = "Staff SVN Dir";
} }
if (!config[svn_config_name].empty()) if (!config[svn_config_name].empty())
{ {
string svndir = config[svn_config_name][0] + svn_subdir + folder; string svndir = config[svn_config_name][0] + "/" + config[svn_config_subdir][0] + "/" + folder;
// TODO (toole1): Won't work if user needs to type password // TODO (toole1): Won't work if user needs to type password
int svnstatus = exec(/*-1,*/ "svn","co",svndir.c_str()); int svnstatus = exec(/*-1,*/ "svn","co",svndir.c_str());
......
...@@ -15,8 +15,8 @@ namespace versioninfo ...@@ -15,8 +15,8 @@ namespace versioninfo
{ {
const char * official_name = "Monad Autograder"; const char * official_name = "Monad Autograder";
const char * version_name = "confession"; const char * version_name = "confession";
const Version version_num = Version(2, 1, 2, 2); const Version version_num = Version(2, 1, 2, 3);
const char * date = "10 Nov 2011"; const char * date = "18 Jan 2012";
} }
const char * unit_test_result::pass_string = "~~PASSED~~"; const char * unit_test_result::pass_string = "~~PASSED~~";
...@@ -28,8 +28,8 @@ void printInfo() ...@@ -28,8 +28,8 @@ void printInfo()
<< versioninfo::official_name << endl << versioninfo::official_name << endl
<< "Version " << versioninfo::version_num << ": " << versioninfo::version_name << endl << "Version " << versioninfo::version_num << ": " << versioninfo::version_name << endl
<< "Released " << versioninfo::date << endl << "Released " << versioninfo::date << endl
<< "Developed by Jack Toole Spring/Fall 2011" << endl << "Developed by Jack Toole 2011-2012" << endl
<< "Copyright 2011 Jack Toole" << endl << "Copyright 2011-2012 Jack Toole" << endl
<< "Run monad --license to see licensing information" << endl << "Run monad --license to see licensing information" << endl
<< endl; << endl;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment