Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct Autolab spelling #2055

Merged
merged 3 commits into from
Jan 18, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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