diff --git a/README.md b/README.md index d58e49e5e61f989e0a60381b0b3692fcf4c8cf3c..f20e563de255f0e2cb04ce832d6a331f15481405 100644 --- a/README.md +++ b/README.md @@ -193,7 +193,7 @@ You need the following: generated by [hektor](https://gitlab.gwdg.de/j.michal/hektor) 2. A .csv file where the columns are: id, name, score, (file suffix). No suffix defaults to .c - Supported suffixes: .c , .java , .hs , .s (for mips) + Supported suffixes: .c , .java , .hs , .s or .asm (for mips) Important: The name values must be the same as the ones that are contained in the export file file from 1. Example: @@ -204,16 +204,16 @@ You need the following: a03, Gamma Ray, 20 ``` 3. A path to a directory with sample solutions named - <id>-lsg.c (same id as in 2.) + <id>.c (same id as in 2.) 4. A path to a directory containing HTML files with an accurate description of the task. File name pattern has to be: <id>.html (same id as in 2.) ```commandline $ tree -L 2 . ├── code-lsg - │  ├── a01-lsg.c - │  ├── a02-lsg.c - │  └── a03-lsg.c + │  ├── a01.c + │  ├── a02.java + │  └── a03.hs └── html   ├── a01.html   ├── a02.html diff --git a/util/importer.py b/util/importer.py index 705549d87ed4e735aa6afcbe93fb2d78ec326a28..a49641ce7d74acc6ece20c698c967bf880dd4243 100644 --- a/util/importer.py +++ b/util/importer.py @@ -196,9 +196,9 @@ def do_load_submission_types(): $ tree -L 2 . ├── code-lsg - │  ├── a01-lsg.c - │  ├── a02-lsg.c - │  └── a03-lsg.c + │  ├── a01.c + │  ├── a02.java + │  └── a03.hs └── html   ├── a01.html   ├── a02.html