Difference between revisions of "User:Wade/Unified Bundles"

From Sugar Labs
Jump to navigation Jump to search
(New page: Merge .xol bundles to .xo)
 
Line 1: Line 1:
Merge .xol bundles to .xo
+
==Goal==
 +
To describe a new Sugar bundle which supports equally Activity software and prepared Content.
 +
 
 +
==Problems Addressed==
 +
The current .xol content bundle format hides its data in the home page of Browse.  Prepared content is an important part of the learning experience and deserves a first class position in the interface.
 +
 
 +
Further, the .xol format is not well supported in Sugar.  It requires a parallel infrastructure for downloading, installing, updating and removing, and this infrastructure simply does not exist.  Tools for creating content bundles are also weak, although this proposal does not specifically address this.
 +
 
 +
Finally, there is a class of "Read-like" activities in Sugar which do not fit well with the notion of what an activity really is.  Read, Jukebox, View Slides, Read Etexts and others do not allow creating any content, so when started they pose a Journal selector in a very Windows-like manner.  The reality is that these "activities" are really just content viewers which have no meaning in the absence of content.  They should not even be displayed on the Home view with other activities.
 +
 
 +
==Overview==
 +
The Unified Bundles project aims to merge the .xol (Content Bundle) and .xo (Activity Bundle) formats into a single .xo (Sugar Bundle) format.
 +
 
 +
The Unified Bundle format is exactly the same as the Activity Bundle format with one clarification.  Activity Bundles are expected to contain an executable program, which is referenced by the exec line of activity.info.  In Unified bundles, there no longer needs to be an executable program, and the exec line may refer to an external executable program provided by Sugar.
 +
 
 +
Content bundles packaged as Unified bundles are .zip files (named .xo) which contain assets such as .html, .js, .jpeg, .swf files, a MANIFEST, and an activity directory containing activity.info.  The activity.info file refers to the content viewer which opens the assets in its exec line.
 +
 
 +
==Sugar Content Viewer Packages==
 +
The external programs referred to by content bundle activity.info files are provided by Sugar Content Viewers.  They are packaged separately from Sugar and a core set can be dependencies of Sugar.
 +
 
 +
===Web Content Viewer===
 +
The Sugar Web Content Viewer is packaged as sugar-web-content-viewer. 
 +
 
 +
This package contains the source code of the Browse activity, plus the sugar-web-activity launcher script.  This launcher script provides extra command line arguments to control UI features such as which toolbars are available.
 +
 
 +
Web-based Unified content bundles are made up of .html, .js, .jpeg, etc. files.  The activity.info file contains the line:
 +
 
 +
exec sugar-web-activity [options] <index_file>
 +
 
 +
The Browse activity then becomes a tiny Unified bundle holding a static Sugar Labs welcome page.
 +
 
 +
===SWF Content Viewer===
 +
The Sugar SWF (Flash) Content Viewer is packaged as sugar-swf-content-viewer.  It depends on the Gnash package and Python bindings.
 +
 
 +
This package contains a simple PyGTK wrapper sugar-swf-activity, which embeds Gnash as the activity canvas and manages saving the flash persistent data to the Journal.  It may also provide some simple hooks for collaboration and localization.
 +
 
 +
SWF-based Unified content bundles are made up of one or more .swf files and related assets.  The activity.info file contains the line:
 +
 
 +
exec sugar-swf-activity [options] <swf_file>
 +
 
 +
===PDF Content Viewer===
 +
The Sugar PDF Content Viewer is packaged as sugar-pdf-content-viewer.  It depends on the Evince package and Python bindings.
 +
 
 +
This package contains the source code to the Read activity, plus the sugar-pdf-activity launcher script.
 +
 
 +
PDF-based Unified content bundles are made up of one or more .pdf files.  The activity.info file contains the line:
 +
 
 +
exec sugar-pdf-activity [options] <pdf_file>
 +
 
 +
===Slides Content Viewer===
 +
The Sugar PDF Content Viewer is packaged as sugar-slides-content-viewer.
 +
 
 +
This package contains the source code to the View Slides activity, plus the sugar-slides-activity launcher script.
 +
 
 +
PDF-based Unified content bundles are made up of one or more image files.  The activity.info file contains the line:
 +
 
 +
exec sugar-slides-activity [options]
 +
 
 +
===Media Content Viewer===
 +
The Sugar Media Content Viewer is packaged as sugar-media-content-viewer.
 +
 
 +
This package contains the source code to the Jukebox activity, plus the sugar-media-activity launcher script.
 +
 
 +
Movie and/or audio-based Unified content bundles are made up of one or more media files.  The activity.info file contains the line:
 +
 
 +
exec sugar-media-activity [options]
 +
 
 +
===Etext Content Viewer===
 +
The Sugar Etext Content Viewer is packaged as sugar-etext-content-viewer.  Package dependences are not known at this time.
 +
 
 +
This package contains the source code to the Read Etexts activity, plus the sugar-etext-activity launcher script.
 +
 
 +
Etext-based Unified content bundles are made up of one or more etext files.  The activity.info file contains the line:
 +
 
 +
exec sugar-etext-activity [options] <etext_file>
 +
 
 +
===EToys Content Viewer===
 +
The Sugar EToys Content Viewer is packaged as sugar-etoys-content-viewer.  Package dependences are not known at this time. 
 +
 
 +
The purpose of having a separate content viewer for Etoys is that the content viewer wrapper script launches Etoys in a mode which bypasses the home screen, and seamlessly launches into the Etoys content.  [http://activities.sugarlabs.org/en-US/sugar/addon/4054 FreeCell] is an example of this idea.
 +
 
 +
This package contains some of the source code to the EToys activity, plus the sugar-etoys-activity launcher script.
 +
 
 +
EToys-based Unified content bundles are made up of a Squeak VM.  The activity.info file contains the line:
 +
 
 +
exec sugar-etoys-activity [options] <squeak_vm_file>
 +
 
 +
==Content Viewer implementation==
 +
Content Viewers require very small changes to Sugar.  This is because they are really a special case of Activities. 
 +
 
 +
Content viewers are distributed as distro packages.  Their activity files are installed into /usr/share/sugar/activities.  Their wrapper scripts are installed into /usr/bin.  Their activity.info files include a new line "hidden=true" which prevents them from being visible in any of the Home views, which prevents them from being launched directly by the user.
 +
 
 +
==Content Viewers and MIME Types==
 +
Tthe content viewer activities will be registered as MIME type handlers for their respective types.
 +
 
 +
So, when a .html file is opened from the Journal, the sugar-web-content-viewer activity will be launched and a Journal entry will be recorded as "Web Content".
 +
 
 +
==Content Viewer based Activities==
 +
One advantage of Sugar providing the content viewers versus packaging them as individual activities is that they can be extended by developers to create new activities.
 +
 
 +
For example, the WikiBrowse activity is based on the Browse classes.  If Browse, is not installed, WikiBrowse cannot launch.  With the source code to Browse part of Sugar, web-based activities can be built on top of the Content Viewer classes and extended with additional Python code such as a custom server or PyXPCom code. 
 +
 
 +
Or, a Flash developer can develop a game in Flash but use Python to manage the toolbars.  They would package their Python code and SWF file in a Unified bundle, and reference the sugar-swf-activity classes from their Python code.
 +
 
 +
==Sugar changes==
 +
The primary change to Sugar is that it should gracefully handle failure to find the program specified by the 'exec' line in activity.info, displaying a friendly error message on the launcher screen to the effect of "You do not have the required software to view this content.".
 +
 
 +
There is also the new hidden=true line in activity.info to prevent Content Viewers from appearing in the Home view.

Revision as of 18:41, 6 April 2009

Goal

To describe a new Sugar bundle which supports equally Activity software and prepared Content.

Problems Addressed

The current .xol content bundle format hides its data in the home page of Browse. Prepared content is an important part of the learning experience and deserves a first class position in the interface.

Further, the .xol format is not well supported in Sugar. It requires a parallel infrastructure for downloading, installing, updating and removing, and this infrastructure simply does not exist. Tools for creating content bundles are also weak, although this proposal does not specifically address this.

Finally, there is a class of "Read-like" activities in Sugar which do not fit well with the notion of what an activity really is. Read, Jukebox, View Slides, Read Etexts and others do not allow creating any content, so when started they pose a Journal selector in a very Windows-like manner. The reality is that these "activities" are really just content viewers which have no meaning in the absence of content. They should not even be displayed on the Home view with other activities.

Overview

The Unified Bundles project aims to merge the .xol (Content Bundle) and .xo (Activity Bundle) formats into a single .xo (Sugar Bundle) format.

The Unified Bundle format is exactly the same as the Activity Bundle format with one clarification. Activity Bundles are expected to contain an executable program, which is referenced by the exec line of activity.info. In Unified bundles, there no longer needs to be an executable program, and the exec line may refer to an external executable program provided by Sugar.

Content bundles packaged as Unified bundles are .zip files (named .xo) which contain assets such as .html, .js, .jpeg, .swf files, a MANIFEST, and an activity directory containing activity.info. The activity.info file refers to the content viewer which opens the assets in its exec line.

Sugar Content Viewer Packages

The external programs referred to by content bundle activity.info files are provided by Sugar Content Viewers. They are packaged separately from Sugar and a core set can be dependencies of Sugar.

Web Content Viewer

The Sugar Web Content Viewer is packaged as sugar-web-content-viewer.

This package contains the source code of the Browse activity, plus the sugar-web-activity launcher script. This launcher script provides extra command line arguments to control UI features such as which toolbars are available.

Web-based Unified content bundles are made up of .html, .js, .jpeg, etc. files. The activity.info file contains the line:

exec sugar-web-activity [options] <index_file>

The Browse activity then becomes a tiny Unified bundle holding a static Sugar Labs welcome page.

SWF Content Viewer

The Sugar SWF (Flash) Content Viewer is packaged as sugar-swf-content-viewer. It depends on the Gnash package and Python bindings.

This package contains a simple PyGTK wrapper sugar-swf-activity, which embeds Gnash as the activity canvas and manages saving the flash persistent data to the Journal. It may also provide some simple hooks for collaboration and localization.

SWF-based Unified content bundles are made up of one or more .swf files and related assets. The activity.info file contains the line:

exec sugar-swf-activity [options] <swf_file>

PDF Content Viewer

The Sugar PDF Content Viewer is packaged as sugar-pdf-content-viewer. It depends on the Evince package and Python bindings.

This package contains the source code to the Read activity, plus the sugar-pdf-activity launcher script.

PDF-based Unified content bundles are made up of one or more .pdf files. The activity.info file contains the line:

exec sugar-pdf-activity [options] <pdf_file>

Slides Content Viewer

The Sugar PDF Content Viewer is packaged as sugar-slides-content-viewer.

This package contains the source code to the View Slides activity, plus the sugar-slides-activity launcher script.

PDF-based Unified content bundles are made up of one or more image files. The activity.info file contains the line:

exec sugar-slides-activity [options]

Media Content Viewer

The Sugar Media Content Viewer is packaged as sugar-media-content-viewer.

This package contains the source code to the Jukebox activity, plus the sugar-media-activity launcher script.

Movie and/or audio-based Unified content bundles are made up of one or more media files. The activity.info file contains the line:

exec sugar-media-activity [options]

Etext Content Viewer

The Sugar Etext Content Viewer is packaged as sugar-etext-content-viewer. Package dependences are not known at this time.

This package contains the source code to the Read Etexts activity, plus the sugar-etext-activity launcher script.

Etext-based Unified content bundles are made up of one or more etext files. The activity.info file contains the line:

exec sugar-etext-activity [options] <etext_file>

EToys Content Viewer

The Sugar EToys Content Viewer is packaged as sugar-etoys-content-viewer. Package dependences are not known at this time.

The purpose of having a separate content viewer for Etoys is that the content viewer wrapper script launches Etoys in a mode which bypasses the home screen, and seamlessly launches into the Etoys content. FreeCell is an example of this idea.

This package contains some of the source code to the EToys activity, plus the sugar-etoys-activity launcher script.

EToys-based Unified content bundles are made up of a Squeak VM. The activity.info file contains the line:

exec sugar-etoys-activity [options] <squeak_vm_file>

Content Viewer implementation

Content Viewers require very small changes to Sugar. This is because they are really a special case of Activities.

Content viewers are distributed as distro packages. Their activity files are installed into /usr/share/sugar/activities. Their wrapper scripts are installed into /usr/bin. Their activity.info files include a new line "hidden=true" which prevents them from being visible in any of the Home views, which prevents them from being launched directly by the user.

Content Viewers and MIME Types

Tthe content viewer activities will be registered as MIME type handlers for their respective types.

So, when a .html file is opened from the Journal, the sugar-web-content-viewer activity will be launched and a Journal entry will be recorded as "Web Content".

Content Viewer based Activities

One advantage of Sugar providing the content viewers versus packaging them as individual activities is that they can be extended by developers to create new activities.

For example, the WikiBrowse activity is based on the Browse classes. If Browse, is not installed, WikiBrowse cannot launch. With the source code to Browse part of Sugar, web-based activities can be built on top of the Content Viewer classes and extended with additional Python code such as a custom server or PyXPCom code.

Or, a Flash developer can develop a game in Flash but use Python to manage the toolbars. They would package their Python code and SWF file in a Unified bundle, and reference the sugar-swf-activity classes from their Python code.

Sugar changes

The primary change to Sugar is that it should gracefully handle failure to find the program specified by the 'exec' line in activity.info, displaying a friendly error message on the launcher screen to the effect of "You do not have the required software to view this content.".

There is also the new hidden=true line in activity.info to prevent Content Viewers from appearing in the Home view.