Actions

Difference between revisions of "Developer Area/Plugins/Third party"

From Mahara Wiki

< Developer Area‎ | Plugins
 
(452 intermediate revisions by 9 users not shown)
Line 1: Line 1:
A list of the third party plugins within Mahara.
+
A list of the third-party plugins within Mahara.
  
Indicating what version they are on in Mahara and what they currently are on at time of publishing 8 Sept 2015.
+
=== Composer commands ===
 +
For available versions, e.g.  <code>composer show phpro/grumphp-shim 1.14.* --all</code>
  
<table border="0" cellspacing="0">
+
For our composer dependencies:  <code>composer show  --tree</code>  
<tr>
 
<th align="left" height="17">Name</th>
 
<th align="left" height="17">Readme file</th>
 
<th align="left">URL</th>
 
<th align="left">Current version</th>
 
<th align="left">Latest version</th>
 
<th align="left">Latest branch version</th>
 
<th align="left">Notes</th>
 
</tr>
 
  
<tr>
+
For checking the dependencies of a library version, e.g. <code>composer show elasticsearch/elasticsearch 7.17.* --tree</code>
<td align="left">PDFjs</td>
 
<td align="left" height="17">./htdocs/artefact/file/blocktype/pdf/js/pdfjs/README.Mahara</td>
 
<td align="left">http://mozilla.github.io/pdf.js/getting_started/#download</td>
 
<td align="left">1.0.1040</td>
 
<td align="left">1.2.109</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">&nbsp;</td>
 
</tr>
 
  
<tr>
+
Check if there are any outdated libraries (according to the [[SemVer Info|version syntax]] in <code>composer.json</code><code>composer outdated</code>
<td align="left">Flowplayer audio</td>
 
<td align="left" height="17">./htdocs/artefact/file/blocktype/internalmedia/flowplayer.audio/README.Mahara</td>
 
<td align="left">http://flowplayer.org/plugins/streaming/audio.html</td>
 
<td align="left">3.2.11</td>
 
<td align="left">&larr;</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">&nbsp;</td>
 
</tr>
 
  
<tr>
+
=== Checking the <code>.Mahara</code> files ===
<td align="left">Mahara flashplayer</td>
+
To check the versions in the <code>.Mahara</code> files, a helpful way to update this list is to go:
<td align="left" height="17">./htdocs/artefact/file/blocktype/internalmedia/mahara-flashplayer/README.Mahara</td>
+
  <code>find ./htdocs -type f -iname "README.Mahara" -exec grep 'Version' -B1 {} \; -print</code>
<td align="left">https://git.mahara.org/groups/mahara-flashplayer</td>
+
... on the current codebase.
<td align="left">3.2.18</td>
 
<td align="left">&larr;</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">&nbsp;</td>
 
</tr>
 
  
<tr>
+
=== Syncing the list in 'Country' dropdowns ===
<td align="left">jQuery</td>
+
To keep in sync is the country names we use for 'Country' dropdowns. To check what the current state of play is
<td align="left" height="17">./htdocs/js/jquery/README.Mahara</td>
+
<code>perl -MLocale::Country -le 'print join("\n", sort map { country2code($_) . " => " . country2code($_, LOCALE_CODE_ALPHA_3) . ", // " . $_ } all_country_names())'</code>
<td align="left">http://jquery.com/</td>
+
and check the results against <code>htdocs/lib/country.php</code> and <code>htdocs/lang/en.utf8/mahara.php</code> files
<td align="left">2.1.1</td>
 
<td align="left">2.2.0</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">&nbsp;</td>
 
</tr>
 
  
<tr>
+
For any confusion you can also check against https://www.iso.org
<td align="left">jQuery UI</td>
 
<td align="left" height="17">./htdocs/js/jquery/jquery-ui/README.Mahara [jQuery UI]</td>
 
<td align="left">http://jqueryui.com/</td>
 
<td align="left">1.11.4</td>
 
<td align="left">&larr;</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">&nbsp;</td>
 
</tr>
 
  
<tr>
+
== Third-party libraries (PHP and JS) ==
<td align="left">Timepicker - jQuery addon</td>
 
<td align="left" height="17">./htdocs/js/jquery/jquery-ui/README.Mahara [timepicker]</td>
 
<td align="left">http://trentrichardson.com/examples/timepicker/</td>
 
<td align="left">1.5.0</td>
 
<td align="left">1.5.5</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">&nbsp;</td>
 
</tr>
 
  
<tr>
+
=== Legend ===
<td align="left">Touch punch</td>
+
*'''Mahara version''' = the <code>README.Mahara</code> file for the library | [https://nodejs.dev/learn/semantic-versioning-using-npm SemVer Info] - explaining the symbols in the Mahara version column
<td align="left" height="17">./htdocs/js/jquery/jquery-ui/README.Mahara [touchpunch]</td>
+
*'''Latest version''' = the most recent available version
<td align="left">http://touchpunch.furf.com/</td>
+
*'''Update type''' = what upgrades are available for this plugin, i.e. major, minor, patch, or security?
<td align="left">0.2.3</td>
+
*'''Support''' = Is there a community supporting this library? When was the last release year if not in active support
<td align="left">&larr;</td>
+
**Active: There is ongoing work being put into the library
<td align="left">&nbsp;</td>
+
**Inactive: Maintained but not actively making releases
<td align="left">&nbsp;</td>
+
**Archived: Not being maintained
</tr>
+
**Deprecated (officially): All maintainers have left, and site may not exist in extreme cases.
 +
*'''License''' = software license for the library
 +
*'''Notes''' = extra information, e.g. resources, notes, and new
 +
*'''Composer''' = check if the library is managed by Composer
 +
*'''NPM''' = check if the library is managed by NPM
 +
'''PHP versions in support''' https://www.php.net/supported-versions.php<nowiki/>⁣ – 14 LTS - Ends security support in 30 Apr 2023, go to 16 LTS soon
  
<tr>
+
💡 A new idea is being proposed to better handle customisations on updating third party libraries lives here → https://reviews.mahara.org/c/mahara/+/13780
<td align="left">jQuery ratings</td>
 
<td align="left" height="17">./htdocs/js/README.Mahara [jquery ratings]</td>
 
<td align="left">http://code.google.com/p/jquery-star-rating-plugin/</td>
 
<td align="left">3.14</td>
 
<td align="left">4.11</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">Project is read-only/archived see: https://code.google.com/p/support/wiki/ReadOnlyTransition</td>
 
</tr>
 
  
<tr>
+
=== PHP libraries (excluding external) ===
<td align="left">Mochikit</td>
+
https://eusonlito.github.io/php-changes-cheatsheet/deprecated.html
<td align="left" height="17">./htdocs/js/MochiKit/README.Mahara</td>
 
<td align="left">http://mochikit.com/</td>
 
<td align="left">1.4.2</td>
 
<td align="left">1.5.0</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">Soo obsolete!!!</td>
 
</tr>
 
  
<tr>
+
Libraries are managed by Composer. See <code>composer.json</code>  
<td align="left">Select2</td>
 
<td align="left" height="17">./htdocs/js/select2/README.Mahara</td>
 
<td align="left">http://ivaynberg.github.io/select2/</td>
 
<td align="left">4.0.0</td>
 
<td align="left">&larr;</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">&nbsp;</td>
 
</tr>
 
  
<tr>
+
Run <code>composer show</code> to get a quick summary of library versions managed by Composer.
<td align="left">Zero clipboard</td>
 
<td align="left" height="17">./htdocs/js/zeroclipboard/README.Mahara</td>
 
<td align="left">http://zeroclipboard.org/</td>
 
<td align="left">2.1.6</td>
 
<td align="left">2.2.0</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">https://github.com/zenorocha/clipboard.js v1.5.5 is probably the way we want to go. No flash</td>
 
</tr>
 
  
<tr>
+
Run <code>composer outdated</code> to get a list of outdated libraries.
<td align="left">Dropzone</td>
 
<td align="left" height="17">./htdocs/js/dropzone/README.mahara</td>
 
<td align="left">https://github.com/enyo/dropzone</td>
 
<td align="left">3.10.2</td>
 
<td align="left">4.2.0</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">&nbsp;</td>
 
</tr>
 
  
<tr>
+
🟡 Libraries yet to be moved to Composer: SimpleSAMLPHP - currently lives in <code>htdocs/auth/saml/extlib</code> and the version is managed in Makefile by curl.
<td align="left">JS Color</td>
+
{| class="wikitable sortable" style="vertical-align:middle;"
<td align="left" height="17">./htdocs/js/jscolor/README.Mahara</td>
+
|- style="font-weight:bold; text-align:center;"
<td align="left">http://jscolor.com/</td>
+
!'''Name'''
<td align="left">1.4.3</td>
+
!'''Mahara <br />version'''
<td align="left">2.0.4</td>
+
!'''Update type'''
<td align="left">&nbsp;</td>
+
!'''Support'''
<td align="left">&nbsp;</td>
+
!'''License'''
</tr>
+
!'''URL/Notes'''
 +
!'''Composer'''
 +
|-
 +
| style="font-weight:bold;" |'''ADODB'''
 +
|5.22.6
 +
|Up to date
 +
|Active
 +
|BSD 3-Clause<br />LGPL
 +
|[https://adodb.org/dokuwiki/doku.php Official site]<nowiki> | </nowiki>[https://github.com/ADOdb/ADOdb GitHub]<nowiki> |  </nowiki>[https://twitter.com/ADOdb_announce Twitter]<br />Wish-list: [https://bugs.launchpad.net/mahara/+bug/1945264 extract $SESSION]
 +
|✅
 +
|-
 +
| style="font-weight:bold;" |'''CSS Tidy'''
 +
|2.1.0
 +
|Up to date
 +
|Active
 +
|LGPL
 +
|[https://github.com/Cerdic/CSSTidy GitHub]
 +
|✅
 +
|-
 +
| style="font-weight:bold;" |'''Elasticsearch PHP'''
 +
| style="color:#333;" |7.17.2
 +
|Major, 8.10.0
 +
|Active
 +
|Apache v2.0  LGPL v2.1
 +
|[https://github.com/elastic/elasticsearch-php GitHub]<nowiki> | </nowiki>[https://github.com/elastic/elasticsearch-php/blob/master/CHANGELOG.md Changelog]
 +
Move to OpenSearch
  
<tr>
+
|✅
<td align="left">Cookie consent</td>
+
|-
<td align="left" height="17">./htdocs/js/cookieconsent/README.mahara</td>
+
| style="font-weight:bold;" |'''HTML Purifier'''
<td align="left">http://sitebeam.net/cookieconsent/</td>
+
|4.16.0
<td align="left">1.0.10</td>
+
|Up to date
<td align="left">2.0.9</td>
+
|2022
<td align="left">&nbsp;</td>
+
|LGPL v2.1+
<td align="left">&nbsp;</td>
+
|[http://www.htmlpurifier.org/ HTML Purifier]<nowiki> | </nowiki>[https://github.com/ezyang/htmlpurifier/ GitHub]
</tr>
+
|✅
 +
|-
 +
| style="font-weight:bold;" |'''PHPMailer'''
 +
|6.8.1
 +
|Up to date
 +
|Active
 +
|LGPL
 +
|[https://github.com/PHPMailer/PHPMailer GitHub]
 +
|✅
 +
|-
 +
| style="font-weight:bold;" |'''ReCaptcha'''
 +
|1.2.4
 +
|Minor, 1.3.0
 +
|Active
 +
|BSD-3
 +
|[https://github.com/google/recaptcha GitHub]
 +
|✅
 +
|-
 +
| style="font-weight:bold;" |'''simplesamlphp'''
 +
|2.0.4
 +
|Minor, 2.0.6
 +
|Active
 +
|GPL 2.1
 +
|[https://github.com/simplesamlphp/simplesamlphp GitHub]
 +
Optional library - called in Makefile
 +
|❌
 +
|}
  
<tr>
+
=== JavaScript and jQuery libraries ===
<td align="left">TinyMCE</td>
+
🟡 '''Check that our Node version is still in support''' https://endoflife.date/nodejs  node| https://nodejs.org/en/download/releases/ ➡ Update the <code>.nvmrc</code> file with the supported version.
<td align="left" height="17">./htdocs/js/tinymce/README.Mahara</td>
 
<td align="left">http://tinymce.moxiecode.com/</td>
 
<td align="left">4.1.9</td>
 
<td align="left">4.3.3</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">&nbsp;</td>
 
</tr>
 
  
<tr>
+
Run <code>npm list</code> to get a quick list of the versions and libraries managed by NPM
<td align="left">Mathslate</td>
 
<td align="left" height="17">./htdocs/js/tinymce/plugins/mathslate/README.Mahara</td>
 
<td align="left">https://github.com/dthies/tinymce4-mathslate</td>
 
<td align="left">1.1</td>
 
<td align="left">&larr;</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">&nbsp;</td>
 
</tr>
 
  
<tr>
+
Goal: to move libraries to be managed by NPM
<td align="left">Javascript templates</td>
 
<td align="left" height="17">./htdocs/js/javascript-templates/README.Mahara</td>
 
<td align="left">https://github.com/blueimp/JavaScript-Templates</td>
 
<td align="left">2.4.1</td>
 
<td align="left">&larr;</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">&nbsp;</td>
 
</tr>
 
  
<tr>
+
==== NPM-managed JS libraries ====
<td align="left">ChartJS</td>
+
{| class="wikitable sortable" style="vertical-align:middle;"
<td align="left" height="17">./htdocs/js/chartjs/README.Mahara</td>
+
|- style="font-weight:bold; text-align:center;"
<td align="left">http://www.chartjs.org</td>
+
!'''Name'''
<td align="left">1.0.2</td>
+
!'''Mahara <br />version'''
<td align="left">&larr;</td>
+
!'''Update type'''
<td align="left">&nbsp;</td>
+
!'''Support'''
<td align="left">&nbsp;</td>
+
!'''License'''
</tr>
+
!'''Notes'''
 +
|-
 +
| style="font-weight:bold;" |'''yargs'''
 +
|5.0.2
 +
|Minor, 5.3.2
 +
|Active
 +
|MIT
 +
|
 +
|-
 +
| style="font-weight:bold;" |'''Chart.js'''
 +
|3.9.1
 +
|Major, 4.4.0
 +
|Active
 +
|MIT
 +
|[https://www.chartjs.org/docs/latest/migration/v4-migration.html Migration to v4]
 +
|-
 +
| style="font-weight:bold;" |'''Clipboard js'''
 +
|2.0.11
 +
|Up to date
 +
|Active
 +
|MIT
 +
|version # is tagged
 +
|-
 +
| style="font-weight:bold;" |'''Dragon-drop'''
 +
|3.6.1
 +
|Up to date
 +
|2020
 +
|MIT
 +
|
 +
|-
 +
| style="font-weight:bold;" |'''Dropzone'''
 +
|5.9.3
 +
|Patch, 5.9.3
 +
|2021
 +
|MIT
 +
|
 +
|-
 +
| style="font-weight:bold;" |'''jQuery'''
 +
|3.7.1
 +
|Up to date
 +
|Active
 +
|MIT
 +
|[https://forum.jquery.com/ Forum]
 +
|-
 +
| style="font-weight:bold;" |'''jQuery UI'''
 +
|1.13.2
 +
|Up to date
 +
|Active
 +
|MIT
 +
|
 +
|-
 +
| style="font-weight:bold;" |'''JS Color'''
 +
|2.5.1
 +
|Up to date
 +
|Inactive,2022
 +
|GPL 3
 +
|
 +
|-
 +
| style="font-weight:bold;" |'''Marked'''
 +
|4.3.0
 +
|Minor, 4.3.0
 +
Major 9.1.0
 +
|Active
 +
|MIT
 +
|
 +
|-
 +
| style="font-weight:bold;" |'''Moment.js'''
 +
|2.29.4
 +
|Up to date
 +
|Active
 +
|MIT
 +
|[http://momentjs.com/ Moment JS] 🆕 [https://moment.github.io/luxon/#/ Luxon GitHub]
 +
|-
 +
| style="font-weight:bold;" |'''Popper'''
 +
|2.11.8
 +
|Up to date
 +
|Active
 +
|MIT
 +
|[https://github.com/twbs/bootstrap/issues/31451 GitHub issue]<nowiki> | </nowiki>[https://dev.to/fezvrasta/smarter-tooltips-and&#x20;-popovers-with-popper-2-44bh tooltips]
 +
'''Floating UI'''
 +
|-
 +
| style="font-weight:bold;" |'''Fontawesome'''
 +
|6.4.2
 +
|Up to date
 +
|Active
 +
|SIL OFL 1.1
 +
|[https://fontawesome.com/docs/web/setup/upgrade/ Upgrade steps]<nowiki> | </nowiki>[https://fontawesome.com/docs/changelog/ Changelog]
 +
|-
 +
| style="font-weight:bold;" |'''TinyMCE'''
 +
|5.10.7
 +
|Major, 6.7.0
 +
|Active
 +
|LGPL 2.1
 +
|[https://www.tiny.cloud/get-tiny/self-hosted Downloads]<nowiki> | </nowiki>[https://www.tiny.cloud/docs/changelog/ Changelog]
 +
📲 Test mobile
 +
|-
 +
| style="font-weight:bold;" |'''Video.js'''
 +
|7.21.5
 +
|Major, 8.5.2
 +
|Active
 +
|Apache License 2.0
 +
|[http://videojs.com/ Video JS]
 +
|}
  
<tr>
+
==== Manually managed JS libraries ====
<td align="left">Dwoo</td>
+
{| class="wikitable sortable" style="vertical-align:middle;"
<td align="left" height="17">./htdocs/lib/dwoo/README.Mahara</td>
+
|- style="font-weight:bold; text-align:center;"
<td align="left">http://www.dwoo.org/</td>
+
!'''Name'''
<td align="left">1.2.0</td>
+
!'''Mahara <br />version'''
<td align="left">2.0beta</td>
+
!'''Update type'''
<td align="left">&nbsp;</td>
+
!'''Support'''
<td align="left">Latest is unstable</td>
+
!'''Location<br />'''<code><small>(./htdocs/...)</small></code>
</tr>
+
!'''License'''
 +
!'''Notes'''
 +
!'''NPM'''
 +
|-
 +
| style="font-weight:bold;" |'''Date time'''
 +
'''picker'''
 +
|4.17.47
 +
|Major 6.17.16
 +
|Active - v6
 +
|<small>.../js/bootstrap-datetimepicker/</small>
 +
|MIT
 +
|[https://getdatepicker.com/6/change-log.html Changelog]
  
<tr>
+
Latest release: rewrite (beta)
<td align="left">HTML Purifier</td>
+
|❌
<td align="left" height="17">./htdocs/lib/htmlpurifier/README.Mahara</td>
+
|-
<td align="left">http://www.htmlpurifier.org/</td>
+
| style="font-weight:bold;" |'''Datatables'''
<td align="left">4.6.0</td>
+
|1.11.4
<td align="left">4.7.0</td>
+
|Minor
<td align="left">&nbsp;</td>
+
|Active
<td align="left">&nbsp;</td>
+
|<small>.../js/DataTables/</small>
</tr>
+
|MIT
 +
|[https://datatables.net/download/index Download]
 +
[https://cdn.datatables.net/ Release notes CDN]
 +
|❌ Need to use web builder
 +
|-
 +
| style="font-weight:bold;" |'''Gridstack'''
 +
|4.4.1
 +
|Major
 +
|Active
 +
|<small>.../js/gridstack/</small>
 +
|MIT
 +
|[Demos](<nowiki>https://gridstackjs.com/demo/</nowiki>)
  
<tr>
 
<td align="left">PEAR</td>
 
<td align="left" height="17">./htdocs/lib/pear/README.Mahara</td>
 
<td align="left">http://pear.php.net/package/PEAR</td>
 
<td align="left">1.9.5</td>
 
<td align="left">1.10.0dev2</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">&nbsp;</td>
 
</tr>
 
  
<tr>
+
https://github.com/gridstack/gridstack.js/tree/master/doc
<td align="left">Pear/XML</td>
+
|🚧
<td align="left" height="17">./htdocs/lib/pear/XML/Feed/README.Mahara</td>
+
|-
<td align="left">http://pear.php.net/package/XML_Feed_Parser/</td>
+
| style="font-weight:bold;" |'''Json editor'''
<td align="left">1.0.5</td>
+
|2.6.1
<td align="left">&larr;</td>
+
|Minor
<td align="left">&nbsp;</td>
+
|Active
<td align="left">This package is not maintained</td>
+
|<small>.../js/jsoneditor/</small>
</tr>
+
|MIT
 +
|[https://github.com/json-editor/json-editor/blob/master/CHANGELOG.md Changelog]
 +
|🚧
 +
|-
 +
| style="font-weight:bold;" |'''PDFjs'''
 +
|3.10.111
 +
|Minor 🚧
 +
|Active
 +
|<small>.../artefact/file/blocktype/pdf/js/pdfjs/</small>
 +
|Apache License 2
 +
|[http://mozilla.github.io/pdf.js/getting_started/#download Getting started]
 +
The Firefox dist version different to NPM package  
 +
|❌
 +
|}
  
<tr>
+
=== Forked/stale/deprecated libraries ===
<td align="left">PEAR/Archive</td>
+
{| class="wikitable sortable mw-collapsible mw-collapsed" style="vertical-align:middle;"
<td align="left" height="17">./htdocs/lib/pear/Archive/README.Mahara</td>
+
|- style="font-weight:bold; text-align:center;"
<td align="left">http://pear.php.net/package/Archive_Tar/</td>
+
!'''Name'''
<td align="left">1.4.0</td>
+
!'''Mahara <br />version'''
<td align="left">&larr;</td>
+
!'''Latest<br />version'''
<td align="left">&nbsp;</td>
+
!'''Support'''
<td align="left">&nbsp;</td>
+
!'''Location<br />'''<code><small>(./htdocs/...)</small></code>
</tr>
+
!'''License'''
 +
!'''URL'''
 +
!'''Next action'''
 +
|-
 +
| style="font-weight:bold;" |'''Dwoo'''
 +
|1.3.7
 +
|1.3.7
 +
|'''Archived, 2020'''
 +
|<small>.../lib/dwoo/</small>
 +
|LGPL
 +
|[http://dwoo.org/ Dead site?]
 +
[https://github.com/dwoo-project/dwoo GitHub]
 +
|
 +
|-
 +
| style="font-weight:bold;" |'''Javascript <br />templates'''
 +
|3.20.0
 +
|3.20.0
 +
|'''Archived, 2021'''
 +
|<small>.../js/javascript-templates/</small>
 +
|MIT
 +
|[https://github.com/blueimp/JavaScript-Templates GitHub]
 +
|
 +
|-
 +
| style="font-weight:bold;" |'''jQuery mobile'''
 +
|1.5.0-alpha.1
 +
|1.5.0-rc1
 +
|'''Deprecated'''
 +
|<small>.../js/jquery/jquery-mobile/</small>
 +
|MIT
 +
|[http://jquerymobile.com Website] <br /><small>🚨 ''"transition(ed) ...''</small> <small>''under the jQuery project umbrella, jQuery UI"''</small>
 +
|Remove and test
 +
|-
 +
| style="font-weight:bold;" |'''jQuery UI plugin <br />touch-punch'''
 +
|0.2.3
 +
|0.2.3
 +
|'''Deprecated'''
 +
|<small>.../js/jquery/jquery-ui/<br />jquery-ui-touch-punch.min.js</small>
 +
|MIT or GPL <br />Version 2
 +
|[https://github.com/furf/jquery-ui-touch-punch GitHub]
  
<tr>
+
<small>🚨 external to JQuery UI</small>
<td align="left">PEAR/Log</td>
+
|[https://github.com/RWAP/jquery-ui-touch-punch Use a fork?]
<td align="left" height="17">./htdocs/lib/pear/Log/README.Mahara</td>
+
|-
<td align="left">http://pear.php.net/package/Log/</td>
+
| style="font-weight:bold;" |'''jTLine'''
<td align="left">1.12.9</td>
+
|1.0
<td align="left">&larr;</td>
+
|1.0
<td align="left">&nbsp;</td>
+
|'''Inactive, 2018'''
<td align="left">&nbsp;</td>
+
|<small>.../js/jTLine/</small>
</tr>
+
|MIT
 +
|[https://naadydev.github.io/jTLine/ GitHub]
 +
[https://twitter.com/naadydev Twitter]
  
<tr>
+
[https://codyhouse.co/gem/horizontal-timeline Ref]
<td align="left">Aurulent-Sans font</td>
+
|
<td align="left" height="17">./htdocs/lib/fonts/README.Mahara</td>
+
|-
<td align="left">http://www.fontsquirrel.com/fonts/Aurulent-Sans</td>
+
| style="font-weight:bold;" |'''Masonry'''
<td align="left">n/a</td>
+
|4.2.2
<td align="left">&larr;</td>
+
|4.2.2
<td align="left">&nbsp;</td>
+
|'''Inactive, 2018'''
<td align="left">&nbsp;</td>
+
|<small>.../js/masonry/</small>
</tr>
+
|MIT
 +
|[https://masonry.desandro.com/ Masonry]
 +
[https://github.com/desandro/masonry GitHub]
 +
|
 +
|-
 +
| style="font-weight:bold;" |'''TinyMCE<br />Mathslate'''
 +
|1.1
 +
|1.1
 +
|'''Forked, 2015'''
 +
|<small>.../js/tinymce/plugins/mathslate/</small>
 +
|GPL 3
 +
|<small>Our version is [[GitHub|forked]].<br />to work with Tinymce 5</small>
 +
|
 +
|-
 +
| style="font-weight:bold;" |'''Oauth PHP'''
 +
|175
 +
|175
 +
|'''Archived, 2010'''
 +
|<small>.../webservice/libs/oauth-php/</small>
 +
|MIT
 +
|[https://code.google.com/archive/p/oauth-php/ Code]
 +
|<small>Replace with an</small> <small>[https://oauth.net/code/php oauth2 php library] see what Moodle does (old comment)</small>
 +
|-
 +
| style="font-weight:bold;" |'''zxcvbn'''
 +
|4.4.2
 +
|4.4.2
 +
|'''Inactive, 2017'''
 +
|<small>.../js/zxcvbn/</small>
 +
|MIT
 +
|[https://github.com/dropbox/zxcvbn GitHub]
 +
|
 +
|-
 +
|'''Cookie consent'''
 +
|3.1.1
 +
|4.0
 +
|'''No open source updates'''
 +
|<small>.../js/cookieconsent/</small>
 +
|MIT
 +
|[https://www.osano.com/cookieconsent Download] [https://github.com/osano/cookieconsent GitHub]
  
<tr>
+
<small>Open source version is not updated. 🚨</small>
<td align="left">Charis SIL font</td>
+
|
<td align="left" height="17">./htdocs/lib/fonts/README.Mahara</td>
+
|-
<td align="left">http://scripts.sil.org/cms/scripts/page.php?item_id=CharisSIL</td>
+
|'''Select2'''
<td align="left">4.114</td>
+
|4.0.13
<td align="left">5.000</td>
+
|4.0.13
<td align="left">&nbsp;</td>
+
|'''Inactive, 2020'''
<td align="left">&nbsp;</td>
+
|<small>.../js/select2/</small>
</tr>
+
|MIT
 +
|[https://select2.org/ Select2]<nowiki> | </nowiki>[https://github.com/select2/select2/releases Releases]
 +
RC 4.1
 +
|
 +
|}
  
<tr>
+
=== Fonts ===
<td align="left">DejaVu Sans font</td>
+
{| class="wikitable sortable" style="vertical-align:middle;"
<td align="left" height="17">./htdocs/lib/fonts/README.Mahara</td>
+
!'''Name'''
<td align="left">http://www.fontsquirrel.com/fonts/DejaVu-Sans</td>
+
!'''Mahara <br />version'''
<td align="left">2.29</td>
+
!'''Latest<br />version'''
<td align="left">&larr;</td>
+
!'''Status'''
<td align="left">&nbsp;</td>
+
!'''README location<br />'''<code>(./htdocs/...)</code>
<td align="left">&nbsp;</td>
+
!'''License'''
</tr>
+
!'''URL/Notes'''
 +
|-
 +
| style="font-weight:bold;" |'''Aurulent Sans <br />(font)'''
 +
|2007.05.04
 +
|2007.05.04
 +
|n/a
 +
|<small>.../lib/fonts/</small>
 +
|SIL OFL v1.10
 +
|[https://www.fontsquirrel.com/fonts/aurulent-sans Font Squirrel Aurulent Sans]
 +
|-
 +
| style="font-weight:bold;" |'''Deja Vu Sans <br />(font)'''
 +
|2.37
 +
|2.37
 +
|n/a
 +
|<small>.../lib/fonts/</small>
 +
|DejaVu Fonts
 +
|[http://www.fontsquirrel.com/fonts/DejaVu-Sans Font Squirrel Deja Vu Sans]
 +
|-
 +
| style="font-weight:bold;" |'''Open Sans <br />(font)'''
 +
|1.10
 +
|1.10
 +
|Unknown
 +
|<small>.../theme/raw/fonts/</small>
 +
|Apache License
 +
|[https://www.google.com/fonts/specimen/Open+Sans Google Fonts Open Sans]
 +
|-
 +
| style="font-weight:bold;" |'''Roboto Slab <br />(font)'''
 +
|1.100263
 +
|1.100263
 +
|Unknown
 +
|<small>.../theme/raw/fonts/</small>
 +
|MIT
 +
|[https://www.google.com/fonts/specimen/Roboto+Slab Google Fonts Roboto]
 +
|-
 +
|'''Charis SIL <br />(fonts)'''
 +
|6.001
 +
|6.001
 +
|Active
 +
|<small>.././lib/fonts/</small>
 +
|SIL OFL
 +
|[http://scripts.sil.org/cms/scripts/page.php?item_id=CharisSIL About font]<nowiki> | </nowiki>[https://software.sil.org/charis/download/ Download]
 +
|}
  
<tr>
+
=== Composer.json dependencies ===
<td align="left">Ghostscript fonts</td>
+
'''Resources:''' https://git.mahara.org | <code>/mahara/mahara/-/blob/</code> | <code>mahara/external/composer.json</code>
<td align="left" height="17">./htdocs/lib/fonts/README.Mahara</td>
 
<td align="left">http://sourceforge.net/projects/gs-fonts/</td>
 
<td align="left">8.11</td>
 
<td align="left">&larr;</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">&nbsp;</td>
 
</tr>
 
  
<tr>
+
'''Run''' <code>composer outdated</code> to check for updates.
<td align="left">ReCaptcha</td>
 
<td align="left" height="17">./htdocs/lib/recaptcha/README.Mahara</td>
 
<td align="left">http://code.google.com/p/recaptcha/</td>
 
<td align="left">1.11</td>
 
<td align="left">&larr;</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">This package is not maintained</td>
 
</tr>
 
 
 
<tr>
 
<td align="left">Mobile detect</td>
 
<td align="left" height="17">./htdocs/lib/mobile_detect/README.Mahara</td>
 
<td align="left">http://mobiledetect.net/</td>
 
<td align="left">2.8.5</td>
 
<td align="left">2.8.16</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">&nbsp;</td>
 
</tr>
 
 
 
<tr>
 
<td align="left">ADODB</td>
 
<td align="left" height="17">./htdocs/lib/adodb/README.mahara</td>
 
<td align="left">http://adodb.sourceforge.net/</td>
 
<td align="left">5.19</td>
 
<td align="left">&larr;</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">&nbsp;</td>
 
</tr>
 
 
 
<tr>
 
<td align="left">CSS Tidy</td>
 
<td align="left" height="17">./htdocs/lib/csstidy/README.Mahara</td>
 
<td align="left">https://github.com/Cerdic/CSSTidy</td>
 
<td align="left">1.5.2</td>
 
<td align="left">1.5.3</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">&nbsp;</td>
 
</tr>
 
 
 
<tr>
 
<td align="left">Slimbox2</td>
 
<td align="left" height="17">./htdocs/lib/slimbox2/README.Mahara</td>
 
<td align="left">http://www.digitalia.be/software/slimbox2</td>
 
<td align="left">2.05</td>
 
<td align="left">&larr;</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">&nbsp;</td>
 
</tr>
 
 
 
<tr>
 
<td align="left">Elastica</td>
 
<td align="left" height="17">./htdocs/lib/elastica/README.Mahara</td>
 
<td align="left">http://elastica.io</td>
 
<td align="left">2.0.0</td>
 
<td align="left">2.2.1</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">Latest version is compatible with elasticsearch 1.7.1</td>
 
</tr>
 
 
 
<tr>
 
<td align="left">PHPMailer</td>
 
<td align="left" height="17">./htdocs/lib/phpmailer/README.Mahara</td>
 
<td align="left">https://github.com/PHPMailer/PHPMailer</td>
 
<td align="left">5.2.9</td>
 
<td align="left">5.2.12</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">&nbsp;</td>
 
</tr>
 
 
 
<tr>
 
<td align="left">Oauth PHP</td>
 
<td align="left" height="17">./htdocs/webservice/libs/oauth-php/README.Mahara</td>
 
<td align="left">http://code.google.com/p/oauth-php/</td>
 
<td align="left">175</td>
 
<td align="left">&larr;</td>
 
<td align="left">&nbsp;</td>
 
<td align="left">This package is not maintained</td>
 
</tr>
 
 
 
<tr>
 
<td align="left">Zend framework</td>
 
<td align="left" height="17">./htdocs/webservice/libs/zend/README.Mahara</td>
 
<td align="left">http://framework.zend.com/</td>
 
<td align="left">1.10.6</td>
 
<td align="left">2.5.2</td>
 
<td align="left">1.12.15</td>
 
<td align="left">&nbsp;</td>
 
</tr>
 
</table>
 

Latest revision as of 16:18, 4 January 2024

A list of the third-party plugins within Mahara.

Composer commands

For available versions, e.g. composer show phpro/grumphp-shim 1.14.* --all

For our composer dependencies: composer show --tree

For checking the dependencies of a library version, e.g. composer show elasticsearch/elasticsearch 7.17.* --tree

Check if there are any outdated libraries (according to the version syntax in composer.json) composer outdated

Checking the .Mahara files

To check the versions in the .Mahara files, a helpful way to update this list is to go:

 find ./htdocs -type f -iname "README.Mahara" -exec grep 'Version' -B1 {} \; -print

... on the current codebase.

Syncing the list in 'Country' dropdowns

To keep in sync is the country names we use for 'Country' dropdowns. To check what the current state of play is

perl -MLocale::Country -le 'print join("\n", sort map { country2code($_) . " => " . country2code($_, LOCALE_CODE_ALPHA_3) . ", // " . $_ } all_country_names())'

and check the results against htdocs/lib/country.php and htdocs/lang/en.utf8/mahara.php files

For any confusion you can also check against https://www.iso.org

Third-party libraries (PHP and JS)

Legend

  • Mahara version = the README.Mahara file for the library | SemVer Info - explaining the symbols in the Mahara version column
  • Latest version = the most recent available version
  • Update type = what upgrades are available for this plugin, i.e. major, minor, patch, or security?
  • Support = Is there a community supporting this library? When was the last release year if not in active support
    • Active: There is ongoing work being put into the library
    • Inactive: Maintained but not actively making releases
    • Archived: Not being maintained
    • Deprecated (officially): All maintainers have left, and site may not exist in extreme cases.
  • License = software license for the library
  • Notes = extra information, e.g. resources, notes, and new
  • Composer = check if the library is managed by Composer
  • NPM = check if the library is managed by NPM

PHP versions in support https://www.php.net/supported-versions.php⁣ – 14 LTS - Ends security support in 30 Apr 2023, go to 16 LTS soon

💡 A new idea is being proposed to better handle customisations on updating third party libraries lives here → https://reviews.mahara.org/c/mahara/+/13780

PHP libraries (excluding external)

https://eusonlito.github.io/php-changes-cheatsheet/deprecated.html

Libraries are managed by Composer. See composer.json

Run composer show to get a quick summary of library versions managed by Composer.

Run composer outdated to get a list of outdated libraries.

🟡 Libraries yet to be moved to Composer: SimpleSAMLPHP - currently lives in htdocs/auth/saml/extlib and the version is managed in Makefile by curl.

Name Mahara
version
Update type Support License URL/Notes Composer
ADODB 5.22.6 Up to date Active BSD 3-Clause
LGPL
Official site | GitHub | Twitter
Wish-list: extract $SESSION
CSS Tidy 2.1.0 Up to date Active LGPL GitHub
Elasticsearch PHP 7.17.2 Major, 8.10.0 Active Apache v2.0 LGPL v2.1 GitHub | Changelog

Move to OpenSearch

HTML Purifier 4.16.0 Up to date 2022 LGPL v2.1+ HTML Purifier | GitHub
PHPMailer 6.8.1 Up to date Active LGPL GitHub
ReCaptcha 1.2.4 Minor, 1.3.0 Active BSD-3 GitHub
simplesamlphp 2.0.4 Minor, 2.0.6 Active GPL 2.1 GitHub

Optional library - called in Makefile

JavaScript and jQuery libraries

🟡 Check that our Node version is still in support https://endoflife.date/nodejs node| https://nodejs.org/en/download/releases/ ➡ Update the .nvmrc file with the supported version.

Run npm list to get a quick list of the versions and libraries managed by NPM

Goal: to move libraries to be managed by NPM

NPM-managed JS libraries

Name Mahara
version
Update type Support License Notes
yargs 5.0.2 Minor, 5.3.2 Active MIT
Chart.js 3.9.1 Major, 4.4.0 Active MIT Migration to v4
Clipboard js 2.0.11 Up to date Active MIT version # is tagged
Dragon-drop 3.6.1 Up to date 2020 MIT
Dropzone 5.9.3 Patch, 5.9.3 2021 MIT
jQuery 3.7.1 Up to date Active MIT Forum
jQuery UI 1.13.2 Up to date Active MIT
JS Color 2.5.1 Up to date Inactive,2022 GPL 3
Marked 4.3.0 Minor, 4.3.0

Major 9.1.0

Active MIT
Moment.js 2.29.4 Up to date Active MIT Moment JS 🆕 Luxon GitHub
Popper 2.11.8 Up to date Active MIT GitHub issue | tooltips

Floating UI

Fontawesome 6.4.2 Up to date Active SIL OFL 1.1 Upgrade steps | Changelog
TinyMCE 5.10.7 Major, 6.7.0 Active LGPL 2.1 Downloads | Changelog

📲 Test mobile

Video.js 7.21.5 Major, 8.5.2 Active Apache License 2.0 Video JS

Manually managed JS libraries

Name Mahara
version
Update type Support Location
(./htdocs/...)
License Notes NPM
Date time

picker

4.17.47 Major 6.17.16 Active - v6 .../js/bootstrap-datetimepicker/ MIT Changelog

Latest release: rewrite (beta)

Datatables 1.11.4 Minor Active .../js/DataTables/ MIT Download

Release notes CDN

❌ Need to use web builder
Gridstack 4.4.1 Major Active .../js/gridstack/ MIT [Demos](https://gridstackjs.com/demo/)


https://github.com/gridstack/gridstack.js/tree/master/doc

🚧
Json editor 2.6.1 Minor Active .../js/jsoneditor/ MIT Changelog 🚧
PDFjs 3.10.111 Minor 🚧 Active .../artefact/file/blocktype/pdf/js/pdfjs/ Apache License 2 Getting started

The Firefox dist version different to NPM package

Forked/stale/deprecated libraries

Name Mahara
version
Latest
version
Support Location
(./htdocs/...)
License URL Next action
Dwoo 1.3.7 1.3.7 Archived, 2020 .../lib/dwoo/ LGPL Dead site?

GitHub

Javascript
templates
3.20.0 3.20.0 Archived, 2021 .../js/javascript-templates/ MIT GitHub
jQuery mobile 1.5.0-alpha.1 1.5.0-rc1 Deprecated .../js/jquery/jquery-mobile/ MIT Website
🚨 "transition(ed) ... under the jQuery project umbrella, jQuery UI"
Remove and test
jQuery UI plugin
touch-punch
0.2.3 0.2.3 Deprecated .../js/jquery/jquery-ui/
jquery-ui-touch-punch.min.js
MIT or GPL
Version 2
GitHub

🚨 external to JQuery UI

Use a fork?
jTLine 1.0 1.0 Inactive, 2018 .../js/jTLine/ MIT GitHub

Twitter

Ref

Masonry 4.2.2 4.2.2 Inactive, 2018 .../js/masonry/ MIT Masonry

GitHub

TinyMCE
Mathslate
1.1 1.1 Forked, 2015 .../js/tinymce/plugins/mathslate/ GPL 3 Our version is forked.
to work with Tinymce 5
Oauth PHP 175 175 Archived, 2010 .../webservice/libs/oauth-php/ MIT Code Replace with an oauth2 php library see what Moodle does (old comment)
zxcvbn 4.4.2 4.4.2 Inactive, 2017 .../js/zxcvbn/ MIT GitHub
Cookie consent 3.1.1 4.0 No open source updates .../js/cookieconsent/ MIT Download GitHub

Open source version is not updated. 🚨

Select2 4.0.13 4.0.13 Inactive, 2020 .../js/select2/ MIT Select2 | Releases

RC 4.1

Fonts

Name Mahara
version
Latest
version
Status README location
(./htdocs/...)
License URL/Notes
Aurulent Sans
(font)
2007.05.04 2007.05.04 n/a .../lib/fonts/ SIL OFL v1.10 Font Squirrel Aurulent Sans
Deja Vu Sans
(font)
2.37 2.37 n/a .../lib/fonts/ DejaVu Fonts Font Squirrel Deja Vu Sans
Open Sans
(font)
1.10 1.10 Unknown .../theme/raw/fonts/ Apache License Google Fonts Open Sans
Roboto Slab
(font)
1.100263 1.100263 Unknown .../theme/raw/fonts/ MIT Google Fonts Roboto
Charis SIL
(fonts)
6.001 6.001 Active .././lib/fonts/ SIL OFL About font | Download

Composer.json dependencies

Resources: https://git.mahara.org | /mahara/mahara/-/blob/ | mahara/external/composer.json

Run composer outdated to check for updates.