course retention and sharing€¦ · print course page download instructor files moodle course...

33
Course Retention and Sharing Stephanie Friedman and Kevin Wiliarty Hampshire College February 27, 2018 Evaluations: bit.ly/nercomp_Moodle18 #NERCOMPPDO4

Upload: others

Post on 28-Jul-2020

18 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

Course Retention and Sharing

Stephanie Friedman and Kevin WiliartyHampshire CollegeFebruary 27, 2018

Evaluations: bit.ly/nercomp_Moodle18#NERCOMPPDO4

Page 2: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

Introduction

● Who we are● Outline

○ Stakeholders○ Solutions○ Implementation

Page 3: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

Stakeholder: Faculty want backups

Interaction with Faculty member about practical details, policy & rationale at the same time

● Reference● Imports● Portability

Page 4: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

Stakeholder: Central Records wants syllabi

● Providing syllabi for accreditation team○ For some faculty, Moodle is the syllabus.○ For the accreditation team, PDFs would be ideal.

● Tenure and promotion● Transparency

Page 5: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

Stakeholder: Faculty want to share their courses

● Guest speaker● Openness ● Tenure and promotion● Professional portfolio

Page 6: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

Stakeholder: IT wants to expire old courses, share

responsibly

● One multi-year academic Moodle○ Maintenance challenges○ Course degradation

● Allow sharing while respecting FERPA and Intellectual Property● Self-service solutions

Page 7: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

Redefining the problem/solution space

Sunsetting courses

Course backups

Guest/open access component

Accreditation, tenure & promotion

Print course page

Download instructor files

Moodle course archive

Python script *

Page 8: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

Printing the course page

● CSS for print media● Not reinventing the wheel● Custom theme● Site administration > Appearance > Themes● Works nicely with our custom Course information block

Page 9: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing
Page 10: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing
Page 11: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing
Page 12: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing
Page 13: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

Site Administration > Appearance > Themes > Clean > Custom CSS

Page 14: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

Downloading instructor files

● Started as a patch (Longfei Yu, UMass Amherst) ● CLAMP maintains plugin (Charles Fulton, Lafayette)● https://moodle.org/plugins/local_instructor_files● Produces flat (zip) file of resources

Page 15: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

● Who is an ‘instructor?’○ by default, only teacher and editingteacher roles, but configurable

● Cautions: ○ Lag time○ courses with many large files (like media) may not work (trouble at around

500MB totals)

Downloading instructor files - Considerations

Page 16: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

Administration Block Link

Page 17: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

File structure of Download Instructor Files Export

Page 18: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

To configure roles:

Site Administration >

Plugins >

Local Plugins >

Download Instructor Files

Page 19: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

Moodle Backup Files

● .mbz files● Currently enabled for our faculty● Multi-step/multi-click process● User tours to assist faculty● Requires active Moodle to restore into

Page 20: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

User Tour Steps

Page 21: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

Python HTML exports

Github: https://github.com/Swarthmore/extract-mbz

Online: https://imd1klc2uc.execute-api.us-east-1.amazonaws.com/dev/static/index.html

The online version is currently limited to 100MB, but it may eventually be increased.

Page 22: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

File structure of a Python export

Page 23: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

HTML export

Page 24: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

Online version

Page 25: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

Implementing course retention

● Navigation● Documentation● Getting the word out● Coordinating with administrators

Page 26: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

Navigation

● Filtered course list○ Disambiguate course names○ Filter courses slated for expiration○ Faculty response: “Awesome! Thanks Just saw that. Really helpful.”

Page 27: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

Filtered Course List

Page 28: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

How it’s done

Page 29: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

Documentation

● Policy with links to documentation of each process, and short summaries● User tours

Page 30: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

Getting the word out

● Intranet announcements (with video)● Drop-in sessions (and the challenges thereof)● School meetings (?)

Page 31: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

Co-ordinating with administrators

● Meetings● Published policy

Page 32: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

https://www.hampshire.edu/it/moodle-course-retention-policy

Page 33: Course Retention and Sharing€¦ · Print course page Download instructor files Moodle course archive Python script * Printing the course page CSS for print media Not reinventing

Thank you!

Evaluations: bit.ly/nercomp_Moodle18#NERCOMPPDO4