Skip to content

Commit add57c7

Browse files
author
Anthony Lu
committed
Rewrite documentation to not say "QSD"
1 parent 2a85dbb commit add57c7

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/admin/program_modules.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ This module should be enabled if your program involves students picking and choo
158158
* Student module control field 'Signup verb': Controls which type of registration students are given when they select a class. The default is "Enrolled," which adds the student to the class roster (i.e. first-come first served). However, you may choose "Applied" to allow teachers to select which students to enroll, or create other registration types for your needs.
159159
* Student module control field 'Use priority': When this box is checked, students will be allowed to choose multiple classes per time slot and their registration types will be annotated in the order they signed up. This is typically used with the 'Priority' registration type to allow students to indicate 1st, 2nd and 3rd choices.
160160
* Student module control field 'Priority limit': If 'Use priority' is checked, this number controls the maximum number of simultaneous classes that students may register for.
161-
* Student module control field 'Register from catalog': If this box is checked, students will see 'Register for section [index]' buttons below the description of each available class in the catalog. If their browser supports Javascript they will be able to register for the classes by clicking those buttons. You will need to add an appropriate fragment to the QSD area on the catalog if you would like students to see their schedule while doing this.
161+
* Student module control field 'Register from catalog': If this box is checked, students will see 'Register for section [index]' buttons below the description of each available class in the catalog. If their browser supports Javascript they will be able to register for the classes by clicking those buttons. You will need to add an appropriate fragment to the editable text area on the catalog if you would like students to see their schedule while doing this.
162162
* Student module control field 'Visible enrollments': If unchecked, the publicly available catalog will not show how many students are enrolled in each class section:
163163
* Student module control field 'Visible meeting times': If unchecked, the publicly available catalog will not show the meeting times of each class section.
164164
* Student module control field 'Show emailcodes': If unchecked, the catalog will not show codes such as 'E464:' and 'M21:' before class titles.
@@ -207,8 +207,8 @@ To override any of these settings, create a Tag (at /admin/tagdict/tag/) for
207207
the program, with the key donation_settings, and with the value being a JSON
208208
object with the overriden keys/values.
209209

210-
The module also has a donation pitch built into the inline QSD on that page. It
211-
can be edited inline by an admin to something more customized.
210+
The module also has a donation pitch built into the editable text area on that
211+
page. It can be edited inline by an admin to something more customized.
212212

213213
The module, when enabled, is available at the url
214214
/learn/<program>/<instance>/donation. It will also show up as an item in the
@@ -542,8 +542,8 @@ To override any of these settings, create a Tag (at /admin/tagdict/tag/) for
542542
the program, with the key stripe_settings, and with the value being a JSON
543543
object with the overriden keys/values.
544544

545-
The module also has a donation pitch built into the inline QSD on that page. It
546-
can be edited inline by an admin to something more customized.
545+
The module also has a donation pitch built into the editable text area on that
546+
page. It can be edited inline by an admin to something more customized.
547547

548548
Credit Card Viewer
549549
------------------

docs/admin/student_apps.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Now go to /admin/application/formstackappsettings/ and find your program.
5252
Student Workflow
5353
================
5454

55-
Visit /learn///studentapp. If you're logged in as an admin, you should see a page (provided that you set things up correctly). Probably, the only thing there is an empty QSD block and a button that says "Continue".
55+
Visit /learn///studentapp. If you're logged in as an admin, you should see a page (provided that you set things up correctly). Probably, the only thing there is an empty editable text area and a button that says "Continue".
5656

5757
Verify that pressing "Continue" takes you to your application form, and fills in the username field with your username.
5858

docs/dev/directory_structure.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This is not intended to be an exhaustive list, just a summary with some comments
1818
* ``models``: The main models for ``Program``, ``ClassSubject``, ``ClassSection``; many of the other models used by programs live in other apps, such as ``resources``.
1919
* ``modules``: This directory contains all the program modules. The python code for the individual modules is in ``handlers/<name>module.py``; most of the remainder of the directory won’t be relevant to you. See `<program_modules.rst>`_ for details on the program module system.
2020

21-
* ``qsd``: This app contains all of the code for QSD (which is the website’s system for admin-editable "quasi-static" text).
21+
* ``qsd``: This app contains all of the code for the website’s system for admin-editable text (named QSD for historical reasons).
2222
* ``users``: This app contains important models like ``ESPUser``, ``Permission``, ``Record``, ``ContactInfo``, and so on.
2323
* ``*_settings.py``: Various files in which our django settings are kept. ``django_settings.py`` contains settings used by all sites; ``local_settings.py`` is generated by the setup script and contains site-specific settings.
2424
* ``urls.py``: Master URL routing table.

0 commit comments

Comments
 (0)