Skip to content

Commit 02dae05

Browse files
Merge branch 'main' into tweak-vm-install-docs
2 parents e228f97 + 1bd0f34 commit 02dae05

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@ gem 'wdm', '>= 0.1.1' if Gem.win_platform?
1010
gem "webrick", "~> 1.8"
1111

1212
gem 'html-proofer', "~> 3.19.4"
13+
14+
gem 'json'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: Term Creation
3+
category: System Administrator > Configuration & Administration
4+
redirect_from:
5+
- /sysadmin/course_creation
6+
---
7+
8+
9+
### Creating a term
10+
To create a term, you should use the script
11+
```
12+
/usr/local/submitty/sbin/create_term.sh
13+
```
14+
Follow these usage guidelines:
15+
```
16+
Usage: create_term.sh [-a|--amend] <term> '<name of term>' <start date> <end date>
17+
```
18+
19+
The term should be an abbreviated semester name like:
20+
```
21+
s24
22+
```
23+
While name of term would be a more descriptive name like "Spring 2024".
24+
25+
The start and end date must be formatted in mm/dd/yyyy format.
26+
27+
Use -a or --amend to amend an existing term.
28+
An example valid usage of this command would be:
29+
30+
```
31+
create_term.sh s24 'Spring 2024' 01/09/2024 05/01/2024
32+
```

navtreedata.js

+1
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ var NAVTREE =
164164
[ "System Customization", "/sysadmin/installation/system_customization", null ],
165165
] ],
166166
[ "Configuration & Administration", "/sysadmin/configuration/course_creation", [
167+
[ "Term Creation", "/sysadmin/configuration/term_creation", null ],
167168
[ "Course Creation", "/sysadmin/configuration/course_creation", null ],
168169
[ "Setting up Version Control", "/sysadmin/configuration/version_control", null ],
169170
[ "SAML Authentication", "/sysadmin/configuration/saml_authentication", null ],

0 commit comments

Comments
 (0)