Content Copycat


Editors note: This post is the latest in a series from Tom Cotton, a Learning Designer at La Trobe University in Melbourne, Australia. Tom has been working on a project to migrate content from the Canvas Learning Management System to Moodle and these posts describe some of the challenges faced and solutions found.

“We want you to shift a course from Canvas to Moodle.
The course has 27 subjects. You and your three learning design colleagues have six months.”


Someone Higher Up  (may or may not be Bob)

Canvas content imports into Moodle as pages. Lots of pages. This makes for excessive navigation for students and academics – not a good experience.

Moodle Books were selected for the better experience in navigating content. The small effort to convert Canvas pages to Moodle Book chapters was acceptable. Similarly, it’s quick to edit individual book chapters/sub-chapters.

Moodle Books are a surprise workhorse of Project Bob.

The challenge

The challenge is to automate getting Canvas content into Moodle Books, along with images and linked files.

Solution

Moodle Books has a Import chapter feature. It can ingest a zip file containing html files (each one becomes a ‘chapters’), images and documents:

Moodle Book feature: Import chapter

The trick is to prepare the html files first:

Beautify Code

The plainer and cleaner the HTML source code, the more success you will have. Both Adobe Dreamweaver and Atom Editor are useful tools for making large changes across multiple files quickly. Stripping out Canvas styles and span tag element. Simplifying tables, removing widths, heights, colours all go for making better behaved content.

Similarly, you can add attributes specific to your LMS eg for <IFrames>, setting the attribute FRAMEBORDER=”0″ can be helpful.

Chapter Headings

Chapter headings are automatically created based on the title tag element. Saves you from a renaming task.

Files and images

The trick here is to identify files and images with a relative path (not a full path or web address) and then strip that path, leaving just the filename and extension.

Strip path information from filenames

Useful RegEx for advanced users:

CLEANING CANVAS CONTENT EXPORT 

Find whole path+filename w. RegEx=On: 
(%24IMS-CC-FILEBASE%24)([\w\-\/%\:\.]*[\b\w%\:\.]+)?

Bonus: Converting PDFs

A recent discovery: Adobe Acrobat Pro can create html files and images inside a folder, in the exact format required for Moodle Books importing:

Prepare the PDF

Open the PDF to be converted in Acrobat Pro, work through each page identifying the html page split points:

  • This may be the top of an image above a heading
  • At the split point, right click and select Add bookmark
  • Give it a sensible name – it will appear in the Moodle Book chapter title
  • Once all split points/bookmarks are set, save the PDF file replete with new bookmarks.

Export the PDF

  • Still in Acrobat, go to the Tools tab
  • Select Export PDF
  • Select HTML Web page
  • Select Multiple HTML page
  • Split by Doc Bookmarks
  • Save the file (tip: create a new folder for it).

Prepare for import into Moodle Book

  • Open the folder containing the export.
  • Zip the images and html files.
  • Go to the LMS and add you Moodle Book.
  • Import the zip file as 1 file = 1 chapter.
  • Start the normal Moodle Book cleansing process.

NB: diagrams may be text rather than image – use a screenshot instead.

You’re done!




Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.