The ASLO is an acronym for activities.sugarlabs.org. It is an activity store for
Sugar Activities. It is called aslo4
,
pip3 install aslo4
- Clone the repository
git clone https://github.com/sugarlabs-appstore/aslo-v4
For a shallow clone
git clone https://github.com/sugarlabs-appstore/aslo-v4 --depth=1
- Change directory to cloned directory
cd aslo-v4
- Run the program
python3 -m aslo4
ASLO4 generator (aslo4
) is highly customizable. A sample usage and explanation have been provided below
- A collection of Sugar Activities in a dedicated folder. (The folder may contain other stuff).
aslo4
technically looks foractivity.info
, but not recursively. If the directory where you have clones is calledrepo
(for example), thenaslo4
will only checkrepo/**/activity/activity.info
exists. If, it does not match the pattern, then the folder is ignored. We have avoided recursion through directories, due to the possibility of a longer build time, etc. CPython 3.6+
, To buildpython3
activities, you needpython3
executable inPATH
. To supportpython2
activities, you needpython2
onPATH
.git
executable, should be available inPATH
- (optional):
sugar-toolkit-gtk3
,sugar-toolkit
(to build activities, i.e., to create bundle.xo
)
NOTE: Executable
python
is ambiguous. It has different implementations on different linux. So we prefer to stick to stricter executable names. i.e,python2
orpython3
-
Clone a few activities, for this test case, I am considering the
Pippy
Activity andspeak
activitymkdir activities git clone https://github.com/sugarlabs/Pippy.git activities/Pippy git clone https://github.com/sugarlabs/speak.git activities/speak
-
To list all activities The
./activities
contains the foldersPippy
andspeak
. The names could be different too. But each of the folder must contain a./<activity_name>/activity/activity.info
to be detected as an activity.python -m aslo4 -i ./activities --list-activities
-
To build
.xo
python -m aslo4 -i ./activities -b
This command will generate
Pippy-9.xo
in./activities/Pippy/dist/Pippy-9.xo
andspeak-X.xo
in./activities/speak/dist/speak-X.xo
-
To create ASLO4:
python -m aslo4 --input-directory ./activities --pull-static-css-js-html ./aslo4-static --generate-static-html --build-xo
This command will automatically extract the bundles from the
dist
folders of the respective activities, and parseNEWS
from./activities/Pippy/NEWS
and get attributes from./activities/Pippy/activity/activity.info
This part provides instructions to build the aslo4
without cloning the activity / by only providing the finally built
bundle .xo
.
- Place all the bundles
*.xo
in a folder, saybundles
mkdir bundles cp /path/to/some/bundles/*.xo . # copies all the bundles from /path/to/some/bundles to the current directory `bundles`
- List all the activities to make sure the
*.xo
are detectedpython3 -m aslo4 -i ./bundles --list-activities
- Now create the appstrore
python3 -m aslo4 -i ./bundles --generate-sitemap --pull-static-css-js-html ./aslo4-static
Both the methods mentioned with build the aslo4 in aslo4-compiled
directory. (The name saas
will be changed in future) which can be overriden by using -o
flag
These commands will create a minimal aslo4 activity library.
For advanced usage, see Usage
$ python3 -m aslo4 --help
usage: ASLO4 generator [-h] [-i INPUT_DIRECTORY] [-o OUTPUT_DIRECTORY] [-b]
[--build-entrypoint BUILD_ENTRYPOINT] [--build-override]
[--build-chdir] [-l] [-g] [-x GENERATE_SITEMAP] [-v]
[-p PULL_STATIC_CSS_JS_HTML] [-u] [-P] [-s] [-f] [-y] [-c] [-z]
[--version]
Generates static HTML files for ASLOv4
optional arguments:
-h, --help show this help message and exit
-i INPUT_DIRECTORY, --input-directory INPUT_DIRECTORY
Provide the directory to scan for Sugar activity bundles *.xo
-o OUTPUT_DIRECTORY, --output-directory OUTPUT_DIRECTORY
Provide the directory to output the parsed website for ASLOv4
-b, --build-xo Generate XO bundles for a large number of directories
--build-entrypoint BUILD_ENTRYPOINT
Specify a path to any Linux compatible script which is intended to be
executed on every build
--build-override Override `python setup.py dist_xo` with --build-entrypoint argument shell
script
--build-chdir Changes directory to Activity dir
-l, --list-activities
Lists all the activities available in the directory
-g, --generate-static-html
Start the process of HTML generation. (pass -b, if you are unsure if
bundles are already created)
-x GENERATE_SITEMAP, --generate-sitemap GENERATE_SITEMAP
Generate a sitemap.xml file to the output directory
-v, --verbose More verbose logging
-p PULL_STATIC_CSS_JS_HTML, --pull-static-css-js-html PULL_STATIC_CSS_JS_HTML
Provide the path to js, css and index.html (ideally from
$PWD/aslo4-static)
-u, --unique-icons Provides a unique icon name based on bundle id
-P, --disable-progress-bar
Provides a unique icon name based on bundle id
-s, --include-screenshots
Includes screenshots of activity if its found as
<activity>/screenshots/*.png
-f, --include-flatpaks
Includes a flatpak description card if the activity has a valid flatpak
registered under flathub.org
-y, --noconfirm Replace output directory (default: always ask)
-c, --no-colors Suppress colors in terminal (default: env ANSI_COLORS_DISABLED)
-z, --include-python2
Include python2 support (sugar-activity)
--version Show the version
-i INPUT_DIRECTORY
: is a directory containing cloned activities or unzipped bundles. If bundles are pre-generated, add the activity.info, place the bundles indist
directory as convention-o OUTPUT_DIRECTORY
: directory to output the website-b --build-xo
: Iterate through all the directories as provided in theINPUT_DIRECTORY
abd generate .xo-g --generate-static-html
: compiles the information inactivity.info
to create HTML files
All sub-directories of bundles directory will be scanned for activity bundles i.e. .xo files.
- Create search function js file, JSON data file & html page stitching them together
- NOTE: how will I ensure that results are presented in some order when more than one search result is of equal standing in term of keywords match/ranking etc. Popularity/download counts or newest/last updated?
- Python script to automatically add all apps to aslo4, generate html pages and append entry to JSON search index file.
- Create demo website
- Add copyright & license information
- For production version, compress index.json file. Also use compressed version of jquery.
- in parent directory of website write a script to start static file server serving website sub-directory. This will be used when not using web server such as Nginx or Apache for acting as backend eg. a user can start server from usb stick.
- in live website, a link to download entire website (as pre generated zip file?)
Since aslo4
can be started just by opening index.html or any other html file in browser rather than first starting a server (even simple localhost one), keeping paths relative have advantage over absolute as they won't break and work even when any html file is opened directly in browser. One caveat will be that moving file from one directory to another will break its references. Script generating static pages need to keep this in mind i.e. must calculate references dynamically rather than hard coding them.
Since aslo4
is supposed to work even without starting a static file serving server i.e. by opening absolutely any HTML file in aslo4
website directory, only way I found that nowadays browsers allow file to be loaded is when it's included by the HTML file opened itself. Files cannot be dynamically loaded later. this rules out all ajax calls in design of app store. I have used AJAX calls 😄
Thankfully, we can ask browser to defer loading of some files and wait for those files (search index) to be loaded. Instead of setting a asynchronous sleeping counter to check if search index is loaded, it's better if search index itself tell that it has loaded and we than perform any search in queue. Credit: sphinx-doc code.
jQuery library is used as its lightweight and reduce a lot of code footprint (making project easy to maintain). Its more than enough as per our project requirement.
Tip: if you don't have many activity bundles to test with than download or clone Tony's repo. It contains many (outdated) bundles in /activities directory.
/generator/main.py (written as generator below) uses /website template to build website in /website directory.
generator takes two arguments
- directory of bundles - Directory and all sub-directories are recursively scanned for .xo files
- directory of website template - website will be generated in this directory
AGPL-3.0-or-later. See LICENSE for more information.
Copyright (C) 2020
Manish [email protected],
Srevin Saju [email protected]
- Includes jQuery library (JS Foundation and other contributors)