Skip to content

Commit

Permalink
Correct Autolab spelling (#2055)
Browse files Browse the repository at this point in the history
* Correct Autolab spelling

* Corrected additional misspellings of Autolab

* Corrected additional miscapitalizations
  • Loading branch information
ndrewchen authored Jan 18, 2024
1 parent 4df9bad commit 306ebe5
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ DEVISE_SECRET_KEY=<DEVISE_SECRET_KEY_REPLACE_ME>
GITHUB_CLIENT_ID=
GITHUB_CLIENT_SECRET=

# Used to connect Tango with autolab
# Used to connect Tango with Autolab
# Ensure variables are consistent with your Tango install's `config.py` settings

# Hostname for Tango RESTful API
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ tmp/cache/
tmp/
!tmp/restart.txt

# autolab configs
# Autolab configs
config/autogradeConfig.rb
assessmentConfig/
courseConfig/
Expand All @@ -18,7 +18,7 @@ config/lti_config.yml
config/lti_tool_jwk.json
config/lti_platform_jwk.json

# autolab user documents
# Autolab user documents
app/views/home/_topannounce.html.erb
attachments/
doc/
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
git rebase origin/master
```

7. Push branch to autolab repo
7. Push branch to Autolab repo

```
git push origin <YOUR_BRANCH_NAME>
Expand Down
2 changes: 1 addition & 1 deletion app/assets/javascripts/annotations.js
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ function make_editable($editable) {
}


/* Highlights lines longer than 80 characters autolab red color */
/* Highlights lines longer than 80 characters Autolab red color */
var highlightLines = function (highlight) {
var highlightColor = "rgba(255, 255, 0, 0.3)"
$("#code-box > .code-table > .code-line > .code").each(function () {
Expand Down
4 changes: 2 additions & 2 deletions app/helpers/assessment_autograde_core.rb
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def sendJob(course, assessment, submissions, cud)
response_json = tango_add_job(course, assessment, upload_file_list,
callback_url, job_name, output_file)

# If autolab user opts not to use a callback URL, we poll the job for 80 seconds
# If Autolab user opts not to use a callback URL, we poll the job for 80 seconds
if callback_url.blank?
tango_poll(course, assessment, submissions, output_file)
end
Expand All @@ -325,7 +325,7 @@ def sendJob(course, assessment, submissions, cud)
# Can be overridden in the lab config file.
#
def autogradeInputFiles(ass_dir, assessment, submission)
# Absolute path names on the local autolab server of the input
# Absolute path names on the local Autolab server of the input
# autograding input files: 1) The student's handin file, 2)
# The makefile that runs the process, 3) The tarfile with all
# of files needed by the autograder. Can be overridden in the
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/application.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
<% end %>
<noscript>
<div id="flash_error" class="error">
AutoLab requires Javascript to be enabled for all features to correctly function. Please enable Javascript.
Autolab requires Javascript to be enabled for all features to correctly function. Please enable Javascript.
</div>
</noscript>
</div>
Expand Down
4 changes: 2 additions & 2 deletions docs/api-managing-authorized-apps.html
Original file line number Diff line number Diff line change
Expand Up @@ -1016,8 +1016,8 @@
<p>What this means for users is that you can now use third-party programs to access Autolab to view assignments, download handouts, and even submit your solutions. Rest assured that all developers and their clients will be manually vetted by our team to ensure quality and safety. However, it is still important that you understand how clients interact with your account.</p>
<h3 id="terminology"><a name="user-content-terminology" href="#terminology" class="headeranchor-link" aria-hidden="true"><span class="headeranchor"></span></a>Terminology</h3>
<ul>
<li>user: a user of autolab (student/instructor)</li>
<li>client: a program that uses the autolab api</li>
<li>user: a user of Autolab (student/instructor)</li>
<li>client: a program that uses the Autolab api</li>
<li>developer: a person that develops clients</li>
</ul>
<h2 id="granting-access"><a name="user-content-granting-access" href="#granting-access" class="headeranchor-link" aria-hidden="true"><span class="headeranchor"></span></a>Granting access</h2>
Expand Down
4 changes: 2 additions & 2 deletions docs/api-managing-authorized-apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ What this means for users is that you can now use third-party programs to access

### Terminology

- user: a user of autolab (student/instructor)
- client: a program that uses the autolab api
- user: a user of Autolab (student/instructor)
- client: a program that uses the Autolab api
- developer: a person that develops clients

## Granting access
Expand Down
6 changes: 3 additions & 3 deletions spec/controllers/courses_controller_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@

describe "#update_lti_settings" do
include_context "controllers shared context"
context "when user is autolab instructor" do
context "when user is Autolab instructor" do
before(:each) do
instructor = get_instructor_by_cid(course.id)
sign_in(instructor)
Expand All @@ -101,7 +101,7 @@
end

describe "#unlink_course" do
context "when user is autolab instructor" do
context "when user is Autolab instructor" do
include_context "controllers shared context"
before(:each) do
instructor = get_instructor_by_cid(course.id)
Expand Down Expand Up @@ -139,7 +139,7 @@
end

describe "#download_roster" do
context "when user is autolab instructor" do
context "when user is Autolab instructor" do
include_context "controllers shared context"
it "downloads roster" do
instructor = get_instructor_by_cid(course.id)
Expand Down

0 comments on commit 306ebe5

Please sign in to comment.