SlideShare a Scribd company logo
Drupal for Virtual Learning
    And Higher Education
Next generation virtual learning

Most Virtual Learning solutions include at least the
following:

- a repository of learning objects: various resources used
to build a course or a training

- an infrastructure for communication: email, chat,
videoconferencing
Next generation virtual learning


Usually we get fast and scalable solution for these reqs:
- from proprietary platforms - $$$$$
- building up our own meshup solutions using open source
technologies
The challenge

●
    A typical modern university VLE:
    ●
        Must accomodate tens of thousands of users
    ●
        Must store hundreds of thousands, maybe millions
        of objects (not necessarily documents) together
        with semantic metadata
    ●
        Must deliver content over the net – distance
        learning, online courses
    ●
        Must integrate with academic regulations, has
        special workflows
    ●
        Must have excellent community features
Drupal

●
    Drupal is a solution already implemented in
    many universities

●
    Stands out as a higly flexible framework

●
    Is a platform for social web applications

●
    Semantic web ready
Next generation virtual learning

Recent solutions: Open Source, well financed, large
support communities

Some examples:

Fedora Commons: http://www.fedora-commons.org/
An application providing the infrastructure to create huge
repositories – Cornell University, DuraSpace Foundation

BigBlueButton: http://bigbluebutton.org/
A university oriented videoconferencing server based on
several open source technologies (Flex, Asterisk, Red5
etc.)
Here comes the juice

●
    Fedora Commons and Drupal
    ●
        Islandora: a set of Drupal modules developed at
        Robertson Library at the University of Prince
        Edward Island: http://islandora.ca
    ●
        Fedora REST Api: a module developed by Don
        Gourley at Digital Humanities Observatory
●
    BigBlueButton and Drupal:
    http://drupal.org/project/bbb - sanduhrs from
    erdfisch.de. Still in development, but doing
    the job
What can we do with them?
Develop a Drupal based virtual leaning application for
higher education or corporate training.

FEDORA COMMONS:
Create huge repositories with thematic and semantically
organized collections of resources:
   - we're talking about millions of objects: documents,
images, complex objects (several pdfs + images + xls files
+ whatever you need to store)
   - store metadata, develop controlled vocabularies for
your collections
   - index and search with Apache Solr
   - get objects from the repostory into Drupal and do
whatever you want with them
What can we do with them?
Develop a Drupal based virtual leaning application for
higher education or corporate training.

BigBlueButton

- Get 100 people together and do a videoconference
delivering a training with full duplex communication and
high quality VOIP
- Broadcast whatever course materials you have and
share desktops
- Have user roles in the events: moderators, participants
etc.
- in the near future: record conferences
●
    A platform for creating large archives
    (repositories)
●
    We can store, access (with access policies) and
    manage any kind of resources
●
    It is extensible, it provides a set of APIs for
    developing tools, ingesting and retrieving
    data
●
    It is open source and has a big and growing
    community
http://encyclopedia.chicagohistory.org
http://dho.ie/drapier/ - Drupal and FC
Some technical details
●
    FC is implemented by using Java services
    (Tomcat)
●
    Everything is a data object
●
    Each data object can have datastreams
●
    A datastream holds digital content or
    metadata about the data object
●
    Each data object may implement various
    relationships to any number of other objects
Some technical details
●
    Each data object is represented by a XML file
●
    FC manages the XML: stores data about
    ●
        How to find components of the object
        (datastreams)
    ●
        The history of object's alterations
    ●
        Access and use policies, checksums
●
    The whole deployment can be restored from a
    backup of these XML files
Digital objects - basic
    components
●
    PID: A persistent, unique
    identifier for the object.
●
    Object Properties: A set of
    system-defined descriptive
    properties that are necessary to
    manage and track the object in
    the repository.
●
    Datastream(s): The element in a
    Fedora digital object that
    represents a content item:
    eg. Dublin Core metadata, high-
    res image, low-res image etc.
FOXML: a simple XML format that directly
    expresses the Fedora Digital Object Model
●
    Each data object is represented by a FOXML
    file
●
    FOXML files are also used to ingest or export
    objects
●
    The schema reflects the basic structure of a
    digital object
<digitalObject PID="uniqueID">

  <!-- there are a set of core object
properties -->
  <objectProperties>
    <property/>
    <property/>
    ...
  </objectProperties>

  <!-- there can be zero or more
datastreams -->
  <datastream>
    <datastreamVersion/>
    <datastreamVersion/>
    ...
  </datastream>

</digitalObject>
Fedora Commons has a steap learning curve, just
like Drupal

Detailed documentation on:
http://www.fedora-commons.org
●
    FC is a toolkit for building repositories
●
    Needs some serious development effort to
    build the data models
●
    It is easier to work with it by using some of the
    front-ends
    ●
        Islandora: a front end based on Drupal
    ●
        Fedora REST Api: an implementation of FC API's
        allowing for custom development of FC front-ends
        and data consuming applications based on Drupal
Islandora

●
    Provides a basic front end to FC (there is still a
    lot of work to be done at FC level to create a
    new repository)
●
    Provides authentication and roles based on
    Drupal user tables
●
    Allows the creation of views from FC
    collections (no UI, just XSLT templates)
●
    Allows the ingestion of new objects into
    collection
●
    Integrates Apache SOLR search
Islandora

●
    Demo using Islandora VirtualBox appliance
●
    Download it from: http://islandora.ca

●
    Local IP: 192.168.56.101
●
    OpenSolaris: root/opensolaris
●
    Islandora: admin/demo
Islandora
●
    Pros
    ●
        Almost out of the box solution
    ●
        It is pretty versatile for searching, browsing and
        ingesting new objects
    ●
        It is a very good starting point for developing FC
        based applications with Drupal
●
    Cons
    ●
        Does not store anything in Drupal tables, it just links
        to records.
    ●
        There is not so much integration with other Drupal
        modules like CCK, Taxonomy, Views
    ●
        Does not fully implement FC APIs, so extenting is an
        issue
Fedora REST API module

●
    More Drupal like approach contributed a few
    weeks ago
●
    Developed by Don Gourley – Digital
    Humanities Observatory, Ireland
●
    Still as CVS project application, I hope it will
    get on: http://drupal.org/node/793616
●
    Provides a full implementation of FC APIs,
    unlike a similar Drupal CVS application:
    http://drupal.org/node/771670
Fedora REST API module
●
    What it does:
    ●
        Provides an interface to access all FC REST
        methods (more details in a moment)
    ●
        Implements a content type “fedora object”for
        representing a digital object from FC
    ●
        Hook implementations for mapping any digital
        object to Drupal nodes
    ●
        Admin interface for mass importing of objects
        from FC collections
    ●
        Basic tools for developing a fully integrated
        interface to DC:
        –   Workflows
        –   User access
        –   Taxonomies, CCK etc
Fedora REST API module

●
    Two main Fedora Commons APIs
    ●
        API-A: Fedora Access
        –   “fulfill a client's request for dissemination”
        –   Methods for repository access, object access (find, get
            history, get profile), datastream (retrieve actual content
            or metadata) etc.
    ●
        API-M: Fedora Manage
        –   Create, modify, delete objects or components of digital
            objects
        –   Manage datastreams, relationships and objects
●
    Fedora REST API exposes a subset of API-A and
    API-M as a RESTful Web Service
Fedora REST API module



●
    A live implementation: http://dho.ie/drapier/
●
    A local demo with FC demo collection – some
    basic functions
●
    Check Don's Git workspace:
    http://github.com/dongourley/fedora_rest
Delivering training
●
    BigBlueButton
BigBlueButton



●
    http://drupal.org/project/bbb
    ●
        Content type to hold session/conference schedule
    ●
        Implements BBB API: meeting intiation, status,
        joining, reports
Solutions for a large scale app

●
    Repository: Fedora Commons
●
    Repository front end: Drupal based front end
    for Fedora Commons – Islandora/Fedora REST
    API
●
    Indexing and search: Apache Solr
●
    Video conferencing: Big Blue Button
●
    Virtual Learning Platform: Drupal

More Related Content

PPT
Doing Drupal: Quick Start Deployments via Distributions
PPTX
Contributing to the AtoM documentation
PPT
What is WebDAV - uploaded by Murali Krishna Nookella
PPTX
Improving Drupal Performances
PPTX
Large Scale Drupal - Behind the Scenes
PPTX
Designing enterprise drupal
PPTX
Better editorial experience in Drupal 7
PDF
Scaling Drupal on Amazon Web Services (DrupalCamp Brighton)
Doing Drupal: Quick Start Deployments via Distributions
Contributing to the AtoM documentation
What is WebDAV - uploaded by Murali Krishna Nookella
Improving Drupal Performances
Large Scale Drupal - Behind the Scenes
Designing enterprise drupal
Better editorial experience in Drupal 7
Scaling Drupal on Amazon Web Services (DrupalCamp Brighton)

Viewers also liked (6)

PPT
Scaling drupal horizontally and in cloud
PPTX
Drupal 8 Development at the Speed of Lightning (& BLT)
PDF
Open Y: One Digital Platform for all YMCAs
PDF
A Future-Focused Digital Platform with Drupal 8
PDF
How to Optimize Your Drupal Site with Structured Content
PDF
Hack Into Drupal Sites (or, How to Secure Your Drupal Site)
Scaling drupal horizontally and in cloud
Drupal 8 Development at the Speed of Lightning (& BLT)
Open Y: One Digital Platform for all YMCAs
A Future-Focused Digital Platform with Drupal 8
How to Optimize Your Drupal Site with Structured Content
Hack Into Drupal Sites (or, How to Secure Your Drupal Site)
Ad

Similar to Drupal for Higher Education and Virtual Learning (20)

PPT
Biblio to Fedora Commons REST API
PPTX
Fedora Commons in the CLARIN Infrastructure
PPT
Integrating Drupal & Fedora
PDF
Decoupling Content Management
PDF
Fedora Futures - CNI 2012
PDF
Drupal and the semantic web - SemTechBiz 2012
PDF
Fedora App Slide 2009 Hastac
DOCX
tutorial2.docx - Fedora Tutorial
PPT
Fedora Overview
PDF
Drupal as a Semantic Web platform - ISWC 2012
PDF
What's behind facebook
PDF
Drupal and RDF
PDF
Decoupling Content Management with Create.js and PHPCR
PPTX
Architecture at PBS
PDF
Search all the things
ODP
Introducing OpenStack for Beginners
PPTX
How facebook works and function- a complete approach
PDF
Dragoncraft Architectural Overview
PPTX
Digital curation through shared endeavour - IDCC 2015
Biblio to Fedora Commons REST API
Fedora Commons in the CLARIN Infrastructure
Integrating Drupal & Fedora
Decoupling Content Management
Fedora Futures - CNI 2012
Drupal and the semantic web - SemTechBiz 2012
Fedora App Slide 2009 Hastac
tutorial2.docx - Fedora Tutorial
Fedora Overview
Drupal as a Semantic Web platform - ISWC 2012
What's behind facebook
Drupal and RDF
Decoupling Content Management with Create.js and PHPCR
Architecture at PBS
Search all the things
Introducing OpenStack for Beginners
How facebook works and function- a complete approach
Dragoncraft Architectural Overview
Digital curation through shared endeavour - IDCC 2015
Ad

Recently uploaded (20)

PPTX
Big Data Technologies - Introduction.pptx
PPT
Teaching material agriculture food technology
PDF
Electronic commerce courselecture one. Pdf
PDF
Review of recent advances in non-invasive hemoglobin estimation
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
Spectroscopy.pptx food analysis technology
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
cuic standard and advanced reporting.pdf
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PPTX
sap open course for s4hana steps from ECC to s4
PDF
Empathic Computing: Creating Shared Understanding
PPTX
Programs and apps: productivity, graphics, security and other tools
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Big Data Technologies - Introduction.pptx
Teaching material agriculture food technology
Electronic commerce courselecture one. Pdf
Review of recent advances in non-invasive hemoglobin estimation
Digital-Transformation-Roadmap-for-Companies.pptx
Encapsulation_ Review paper, used for researhc scholars
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Spectroscopy.pptx food analysis technology
Understanding_Digital_Forensics_Presentation.pptx
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
cuic standard and advanced reporting.pdf
Advanced methodologies resolving dimensionality complications for autism neur...
Chapter 3 Spatial Domain Image Processing.pdf
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
NewMind AI Weekly Chronicles - August'25 Week I
sap open course for s4hana steps from ECC to s4
Empathic Computing: Creating Shared Understanding
Programs and apps: productivity, graphics, security and other tools
The AUB Centre for AI in Media Proposal.docx
How UI/UX Design Impacts User Retention in Mobile Apps.pdf

Drupal for Higher Education and Virtual Learning

  • 1. Drupal for Virtual Learning And Higher Education
  • 2. Next generation virtual learning Most Virtual Learning solutions include at least the following: - a repository of learning objects: various resources used to build a course or a training - an infrastructure for communication: email, chat, videoconferencing
  • 3. Next generation virtual learning Usually we get fast and scalable solution for these reqs: - from proprietary platforms - $$$$$ - building up our own meshup solutions using open source technologies
  • 4. The challenge ● A typical modern university VLE: ● Must accomodate tens of thousands of users ● Must store hundreds of thousands, maybe millions of objects (not necessarily documents) together with semantic metadata ● Must deliver content over the net – distance learning, online courses ● Must integrate with academic regulations, has special workflows ● Must have excellent community features
  • 5. Drupal ● Drupal is a solution already implemented in many universities ● Stands out as a higly flexible framework ● Is a platform for social web applications ● Semantic web ready
  • 6. Next generation virtual learning Recent solutions: Open Source, well financed, large support communities Some examples: Fedora Commons: http://www.fedora-commons.org/ An application providing the infrastructure to create huge repositories – Cornell University, DuraSpace Foundation BigBlueButton: http://bigbluebutton.org/ A university oriented videoconferencing server based on several open source technologies (Flex, Asterisk, Red5 etc.)
  • 7. Here comes the juice ● Fedora Commons and Drupal ● Islandora: a set of Drupal modules developed at Robertson Library at the University of Prince Edward Island: http://islandora.ca ● Fedora REST Api: a module developed by Don Gourley at Digital Humanities Observatory ● BigBlueButton and Drupal: http://drupal.org/project/bbb - sanduhrs from erdfisch.de. Still in development, but doing the job
  • 8. What can we do with them? Develop a Drupal based virtual leaning application for higher education or corporate training. FEDORA COMMONS: Create huge repositories with thematic and semantically organized collections of resources: - we're talking about millions of objects: documents, images, complex objects (several pdfs + images + xls files + whatever you need to store) - store metadata, develop controlled vocabularies for your collections - index and search with Apache Solr - get objects from the repostory into Drupal and do whatever you want with them
  • 9. What can we do with them? Develop a Drupal based virtual leaning application for higher education or corporate training. BigBlueButton - Get 100 people together and do a videoconference delivering a training with full duplex communication and high quality VOIP - Broadcast whatever course materials you have and share desktops - Have user roles in the events: moderators, participants etc. - in the near future: record conferences
  • 10. A platform for creating large archives (repositories) ● We can store, access (with access policies) and manage any kind of resources ● It is extensible, it provides a set of APIs for developing tools, ingesting and retrieving data ● It is open source and has a big and growing community
  • 13. Some technical details ● FC is implemented by using Java services (Tomcat) ● Everything is a data object ● Each data object can have datastreams ● A datastream holds digital content or metadata about the data object ● Each data object may implement various relationships to any number of other objects
  • 14. Some technical details ● Each data object is represented by a XML file ● FC manages the XML: stores data about ● How to find components of the object (datastreams) ● The history of object's alterations ● Access and use policies, checksums ● The whole deployment can be restored from a backup of these XML files
  • 15. Digital objects - basic components ● PID: A persistent, unique identifier for the object. ● Object Properties: A set of system-defined descriptive properties that are necessary to manage and track the object in the repository. ● Datastream(s): The element in a Fedora digital object that represents a content item: eg. Dublin Core metadata, high- res image, low-res image etc.
  • 16. FOXML: a simple XML format that directly expresses the Fedora Digital Object Model ● Each data object is represented by a FOXML file ● FOXML files are also used to ingest or export objects ● The schema reflects the basic structure of a digital object
  • 17. <digitalObject PID="uniqueID"> <!-- there are a set of core object properties --> <objectProperties> <property/> <property/> ... </objectProperties> <!-- there can be zero or more datastreams --> <datastream> <datastreamVersion/> <datastreamVersion/> ... </datastream> </digitalObject>
  • 18. Fedora Commons has a steap learning curve, just like Drupal Detailed documentation on: http://www.fedora-commons.org
  • 19. FC is a toolkit for building repositories ● Needs some serious development effort to build the data models ● It is easier to work with it by using some of the front-ends ● Islandora: a front end based on Drupal ● Fedora REST Api: an implementation of FC API's allowing for custom development of FC front-ends and data consuming applications based on Drupal
  • 20. Islandora ● Provides a basic front end to FC (there is still a lot of work to be done at FC level to create a new repository) ● Provides authentication and roles based on Drupal user tables ● Allows the creation of views from FC collections (no UI, just XSLT templates) ● Allows the ingestion of new objects into collection ● Integrates Apache SOLR search
  • 21. Islandora ● Demo using Islandora VirtualBox appliance ● Download it from: http://islandora.ca ● Local IP: 192.168.56.101 ● OpenSolaris: root/opensolaris ● Islandora: admin/demo
  • 22. Islandora ● Pros ● Almost out of the box solution ● It is pretty versatile for searching, browsing and ingesting new objects ● It is a very good starting point for developing FC based applications with Drupal ● Cons ● Does not store anything in Drupal tables, it just links to records. ● There is not so much integration with other Drupal modules like CCK, Taxonomy, Views ● Does not fully implement FC APIs, so extenting is an issue
  • 23. Fedora REST API module ● More Drupal like approach contributed a few weeks ago ● Developed by Don Gourley – Digital Humanities Observatory, Ireland ● Still as CVS project application, I hope it will get on: http://drupal.org/node/793616 ● Provides a full implementation of FC APIs, unlike a similar Drupal CVS application: http://drupal.org/node/771670
  • 24. Fedora REST API module ● What it does: ● Provides an interface to access all FC REST methods (more details in a moment) ● Implements a content type “fedora object”for representing a digital object from FC ● Hook implementations for mapping any digital object to Drupal nodes ● Admin interface for mass importing of objects from FC collections ● Basic tools for developing a fully integrated interface to DC: – Workflows – User access – Taxonomies, CCK etc
  • 25. Fedora REST API module ● Two main Fedora Commons APIs ● API-A: Fedora Access – “fulfill a client's request for dissemination” – Methods for repository access, object access (find, get history, get profile), datastream (retrieve actual content or metadata) etc. ● API-M: Fedora Manage – Create, modify, delete objects or components of digital objects – Manage datastreams, relationships and objects ● Fedora REST API exposes a subset of API-A and API-M as a RESTful Web Service
  • 26. Fedora REST API module ● A live implementation: http://dho.ie/drapier/ ● A local demo with FC demo collection – some basic functions ● Check Don's Git workspace: http://github.com/dongourley/fedora_rest
  • 27. Delivering training ● BigBlueButton
  • 28. BigBlueButton ● http://drupal.org/project/bbb ● Content type to hold session/conference schedule ● Implements BBB API: meeting intiation, status, joining, reports
  • 29. Solutions for a large scale app ● Repository: Fedora Commons ● Repository front end: Drupal based front end for Fedora Commons – Islandora/Fedora REST API ● Indexing and search: Apache Solr ● Video conferencing: Big Blue Button ● Virtual Learning Platform: Drupal