svn path=/trunk/moma/; revision=113854
This commit is contained in:
Jonathan Pobst 2008-09-23 16:01:29 +00:00
Родитель d99845c2de
Коммит dbe998817c
1 изменённых файлов: 18 добавлений и 3 удалений

Просмотреть файл

@ -12,6 +12,11 @@ public class MoMASubmit : System.Web.Services.WebService {
[WebMethod]
public bool SubmitResults (string results)
{
// QA would like to submit reports as part of testing MoMA/SWF/Mono, but
// the reports should not affect our totals, so drop them like a bad habit.
if (results.IndexOf ("qa@novell.com") > 0)
return true;
StreamWriter sw = null;
try {
@ -43,12 +48,22 @@ public class MoMASubmit : System.Web.Services.WebService {
// Opaque user visible string denoting the version on Mono these defs are for, ex: "Mono 1.2.2"
// MUST match the first line in the version.txt file of the def .zip
string latest_version = "Mono 1.2.2";
string latest_version = "Mono 1.2.6 (Revised)";
// Date the defs were built, used to sort the defs chronologically for the user, ex: "12/01/06"
// MUST match the second line in the version.txt file of the def .zip
string version_date = "12/01/06";
//string version_date = "12/01/06";
//string version_date = "02/07/07";
//string version_date = "05/03/07";
//string version_date = "08/02/07";
//string version_date = "11/22/07";
string version_date = "12/18/07";
// http path to download defs from, ex: "http://www.go-mono.com/archive/moma/defs/1.2.2-defs.zip"
string file_path = "http://www.go-mono.com/archive/moma/defs/1.2.2-defs.zip";
string file_path = "http://www.go-mono.com/archive/moma/defs/1.2.6.1-defs.zip";
return string.Format ("{0}|{1}|{2}", latest_version, version_date, file_path);
}