From: Martin Mares Date: Mon, 24 Sep 2012 12:42:12 +0000 (+0200) Subject: Finish rename of MO-Eval to Moe X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=744450caecd1d4440264d2e03742d16dc9b6b113;p=eval.git Finish rename of MO-Eval to Moe --- diff --git a/Makefile b/Makefile index 49a55b1..bd1c58c 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -# Makefile for MO-Eval -# (c) 2008--2009 Martin Mares +# Makefile for Moe +# (c) 2008--2012 Martin Mares VERSION=1.0.99-20080220 diff --git a/README b/README index 5ba6397..17ae449 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ ================================================================================ - The MO Contest Environment @VERSION@ + Moe Contest Environment @VERSION@ (c) 2001--2008 Martin Mares @@ -11,7 +11,7 @@ This is the programming contest environment used by the Czech Programming Olympi and some other competitions. You will find a brief documentation in the doc/ directory inside the package (start -with doc/index.html) or on-line at http://mj.ucw.cz/mo-eval/. +with doc/index.html) or on-line at http://www.ucw.cz/moe/. The whole package can be distributed and used under the terms of the GNU General Public License version 2. diff --git a/box/Makefile b/box/Makefile index c5d6b2a..3aba68b 100644 --- a/box/Makefile +++ b/box/Makefile @@ -1,4 +1,4 @@ -# Makefile for MO-Eval sandbox +# Makefile for Moe sandbox # (c) 2008--2010 Martin Mares DIRS+=box diff --git a/configure b/configure index dbd86f7..f2a192c 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #!/usr/bin/perl -# Configure script for MO-Eval +# Configure script for Moe # (c) 2008--2009 Martin Mares use warnings; @@ -25,7 +25,7 @@ use UCW::Configure::Pkg; Init($srcdir, "default.cfg"); Include "ucw/default.cfg"; -Log "### Configuring MO-Eval ###\n\n"; +Log "### Configuring Moe ###\n\n"; Include Get("CONFIG"); require UCW::Configure::Paths; require UCW::Configure::C; diff --git a/default.cfg b/default.cfg index 1c6b762..a1fba31 100644 --- a/default.cfg +++ b/default.cfg @@ -1,4 +1,4 @@ -# Default configuration file for MO-Eval +# Default configuration file for Moe # Compile the submit server Set("CONFIG_SUBMIT" => 1); diff --git a/doc/anatomy.html b/doc/anatomy.html index 50c4c38..95af7a4 100644 --- a/doc/anatomy.html +++ b/doc/anatomy.html @@ -6,9 +6,9 @@ -

The Anatomy of MO-Eval

+

The Anatomy of Moe

-

MO-Eval lives in the following directory structure: +

Moe lives in the following directory structure:

  • bin/ – all programs (usually shell scripts) diff --git a/doc/index.html b/doc/index.html index f2b25a9..ad199de 100644 --- a/doc/index.html +++ b/doc/index.html @@ -8,7 +8,7 @@

    The Moe Contest Environment

    -

    The Moe Contest Environment (formerly MO-Eval) is a system for conducting +

    The Moe Contest Environment (formerly Moe) is a system for conducting programming competitions similar in spirit to the International Olympiad in Informatics – contestants solve programming tasks, submit the source code of their solutions, @@ -77,7 +77,7 @@ the repository online. to get a more up-to-date picture.

      -
    • Anatomy of MO-Eval +
    • Anatomy of Moe
    • Installation
    • Tasks and their types
    • Evaluating solutions diff --git a/doc/install.html b/doc/install.html index ca0357b..eaa6bb3 100644 --- a/doc/install.html +++ b/doc/install.html @@ -6,9 +6,9 @@ -

      The Installation of MO-Eval

      +

      The Installation of Moe

      -

      MO-Eval can be installed in two possible ways: +

      Moe can be installed in two possible ways:

      Minimal Installation

      @@ -63,7 +63,7 @@ install all parts of the evaluator there and set the correct access rights.

      Contestants' homes

      -

      MO-Eval can either take care of the home directories of contestants or use +

      Moe can either take care of the home directories of contestants or use an existing infrastructure. In the former case, you need to do the following:

        diff --git a/doc/public.html b/doc/public.html index 6ac5efd..69942c8 100644 --- a/doc/public.html +++ b/doc/public.html @@ -8,7 +8,7 @@

        Utilities of contestants

        -

        MO-Eval also offers several utilities for use by the contestants. They are by default +

        Moe also offers several utilities for use by the contestants. They are by default installed to the public directory, where you also should install a subset of the problems hierarchy containing the config files and public test cases (e.g., the example input/output from the problem description sheet). diff --git a/doc/tasks.html b/doc/tasks.html index afddd7c..50097ef 100644 --- a/doc/tasks.html +++ b/doc/tasks.html @@ -8,7 +8,7 @@

        Tasks and their types

        -

        MO-Eval supports the following standard types of tasks (new task types can be defined, but +

        Moe supports the following standard types of tasks (new task types can be defined, but it takes some effort):

          diff --git a/eval/Makefile b/eval/Makefile index ad39641..176e6a0 100644 --- a/eval/Makefile +++ b/eval/Makefile @@ -1,4 +1,4 @@ -# Makefile for MO-Eval evaluator +# Makefile for Moe evaluator # (c) 2008 Martin Mares DIRS+=eval diff --git a/isolate/Makefile b/isolate/Makefile index 0017463..3ebe9ac 100644 --- a/isolate/Makefile +++ b/isolate/Makefile @@ -1,4 +1,4 @@ -# Makefile for MO-Eval isolator +# Makefile for Moe isolator # (c) 2012 Martin Mares DIRS+=isolate diff --git a/judge/Makefile b/judge/Makefile index 561df24..38f668b 100644 --- a/judge/Makefile +++ b/judge/Makefile @@ -1,4 +1,4 @@ -# Makefile for MO-Eval judges +# Makefile for Moe judges # (c) 2008--2009 Martin Mares DIRS+=judge diff --git a/judge/judge.h b/judge/judge.h index ac9d7e4..fa63dbf 100644 --- a/judge/judge.h +++ b/judge/judge.h @@ -1,5 +1,5 @@ /* - * A simple library for MO-Eval judges + * A simple library for Moe judges * * (c) 2007 Martin Mares */ diff --git a/submit/Makefile b/submit/Makefile index 0fa14ec..8c0e53c 100644 --- a/submit/Makefile +++ b/submit/Makefile @@ -1,4 +1,4 @@ -# Makefile for MO-Eval submitter +# Makefile for Moe submitter # (c) 2008 Martin Mares SUBCF=$(LIBGCRYPT_CFLAGS) $(LIBGNUTLS_CFLAGS) $(GNUTLS_CFLAGS) diff --git a/submit/ca-cert.tpl b/submit/ca-cert.tpl index 0169ca7..733475f 100644 --- a/submit/ca-cert.tpl +++ b/submit/ca-cert.tpl @@ -3,10 +3,10 @@ # DN options # The organization of the subject. -organization = "MO-Eval" +organization = "Moe" # The organizational unit of the subject. -#unit = "MO-Eval" +#unit = "Moe" # The locality of the subject. # locality = diff --git a/submit/client-cert.tpl b/submit/client-cert.tpl index 70761dc..007163c 100644 --- a/submit/client-cert.tpl +++ b/submit/client-cert.tpl @@ -3,10 +3,10 @@ # DN options # The organization of the subject. -organization = "MO-Eval" +organization = "Moe" # The organizational unit of the subject. -#unit = "MO-Eval" +#unit = "Moe" # The locality of the subject. # locality = diff --git a/submit/server-cert.tpl b/submit/server-cert.tpl index 098c94b..eb24290 100644 --- a/submit/server-cert.tpl +++ b/submit/server-cert.tpl @@ -3,10 +3,10 @@ # DN options # The organization of the subject. -organization = "MO-Eval" +organization = "Moe" # The organizational unit of the subject. -#unit = "MO-Eval" +#unit = "Moe" # The locality of the subject. # locality = diff --git a/utils/Makefile b/utils/Makefile index 2307708..29da1e6 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -1,4 +1,4 @@ -# Makefile for MO-Eval utilities +# Makefile for Moe utilities # (c) 2008 Martin Mares DIRS+=utils