diff --git a/sparks/student-pages/U1/L1/02-snap-accounts.html b/sparks/student-pages/U1/L1/02-snap-accounts.html index c8b15902a..ed800b2bb 100644 --- a/sparks/student-pages/U1/L1/02-snap-accounts.html +++ b/sparks/student-pages/U1/L1/02-snap-accounts.html @@ -13,10 +13,10 @@

Saving Snap! Projects

  1. - Save your work + Save your work There are different ways to save Snap! projects. Some of them involve logging in or creating a Snap! account. Your teacher will let you know which option to use.
    -

    Option A: Save your project to your computer

    +
    Option A: Save your project to your computer
    -

    Option B: Your teacher has set up an account for you

    +
    Option B: Your teacher has set up an account for you
    Your teacher will let you know your Snap! username and password. If you ever need to reset your password, the request will go to your teacher.
    @@ -51,7 +51,7 @@

    Option B: Your teacher has set up an account for you

    -

    Option C: Create a Snap! account with a personal email

    +
    Option C: Create a Snap! account with a personal email
    This is a Snap! account where any password reset requests will go to your personal email account. Your teacher may ask you to use their email address.
    @@ -78,7 +78,7 @@

    Option C: Create a Snap! account with a personal email
  2. Be sure to save your projects after an important change and, if you are using a shared computer, whenever you're done for the day. Once you have saved your Say Hello to Snap! project to your computer or to your account, you can continue to the next page.
-
+
In this activity, you learned how save a Snap! project to your computer or to your new Snap! account.
diff --git a/utilities/specs/bjc_helper.rb b/utilities/specs/bjc_helper.rb index 20cf1e76e..e99ecac6a 100644 --- a/utilities/specs/bjc_helper.rb +++ b/utilities/specs/bjc_helper.rb @@ -16,18 +16,32 @@ module BJCSpecs sparks-teacher ] - # This is a map of all courses/groups - ALL_PAGES = {} - ALL_PAGES['general'] = [ - '/bjc-r/', - '/bjc-r/docs/style_guide.html', - '/bjc-r/docs/best_practices.html', - '/bjc-r/docs/translations.html', - '/bjc-r/topic/topic.html', - '/bjc-r/topic/topic.es.html', - '/bjc-r/sparks/design-principles.html', - '/bjc-r/mini/index.html' - ] + # This is a map of all pages by course + ALL_PAGES = { + 'general' => [ + '/bjc-r/' + ] + } + + ALL_PAGES['general'] += [ + # For the BJC Team, but technically public + 'docs/style_guide', + 'docs/best_practices', + 'docs/translations', + # Empty Topic pages, but are publicly visible. + 'topic/topic', + 'topic/topic.es', + # Extra course page, but not a full course. + 'mini/index', + # Informational Pages, but not linked as part of a course. + 'sparks/design-principles', + 'cur/snap-cheat-sheet', + 'cur/snap-cheat-sheet.es', + 'cur/compare', + 'cur/specifications', + 'cur/updates', + 'eir/school-equity' + ].map { |p| "/bjc-r/#{p}.html" } def load_site_urls(courses) # Map is a course_name => [url1, url2, ...]