{"id":25839762,"url":"https://github.com/netresearch/mediawiki-libravatar","last_synced_at":"2026-04-15T00:31:38.316Z","repository":{"id":4133914,"uuid":"5246204","full_name":"netresearch/mediawiki-libravatar","owner":"netresearch","description":"Provides a \u003clibravatar email=\"foo@example.org\"/\u003e tag for MediaWiki which displays the avatar image for a given email address, using the Libravatar service. ","archived":false,"fork":false,"pushed_at":"2021-12-24T12:51:49.000Z","size":37,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":12,"default_branch":"master","last_synced_at":"2026-03-28T21:30:15.401Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/netresearch.png","metadata":{"files":{"readme":"README.rst","changelog":"ChangeLog","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-07-31T13:34:29.000Z","updated_at":"2026-01-05T15:41:00.000Z","dependencies_parsed_at":"2022-09-17T15:50:38.544Z","dependency_job_id":null,"html_url":"https://github.com/netresearch/mediawiki-libravatar","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/netresearch/mediawiki-libravatar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netresearch%2Fmediawiki-libravatar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netresearch%2Fmediawiki-libravatar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netresearch%2Fmediawiki-libravatar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netresearch%2Fmediawiki-libravatar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/netresearch","download_url":"https://codeload.github.com/netresearch/mediawiki-libravatar/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netresearch%2Fmediawiki-libravatar/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31821420,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T18:05:02.291Z","status":"ssl_error","status_checked_at":"2026-04-14T18:05:01.765Z","response_time":153,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-01T04:34:21.693Z","updated_at":"2026-04-15T00:31:38.297Z","avatar_url":"https://github.com/netresearch.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"******************************\nLibravatar MediaWiki extension\n******************************\n\nProvides a ``\u003clibravatar email=\"foo@example.org\"/\u003e`` tag for MediaWiki__\nwhich displays the avatar image for a given email address,\nusing the Libravatar__ service.\nIt is federated and falls back to Gravatar if no Libravatar is found.\n\nSee the Homepage__ and `source code`__.\n\n__ http://www.mediawiki.org/\n__ https://www.libravatar.org/\n__ http://www.mediawiki.org/wiki/Extension:Libravatar\n__ https://github.com/phispi/mediawiki-libravatar\n\n\nExamples\n========\nSimple avatar::\n\n  \u003clibravatar email=\"foo@example.org\"/\u003e\n\nAvatar with special size::\n\n  \u003clibravatar email=\"foo@example.org\" size=\"32\"/\u003e\n\nImage title::\n\n  \u003clibravatar email=\"foo@example.org\" title=\"Foo's avatar\"/\u003e\n\nVerbose notation and default avatar::\n\n  \u003clibravatar default=\"monsterid\"\u003efoo@example.org\u003c/libravtar\u003e\n\nMediaWiki user's email address::\n\n  \u003clibravatar user=\"foo\"/\u003e\n\n\nSupported attributes\n====================\n``email``\n  Email address to show avatar of. Required (if no user is given)\n\n``user``\n  MediaWiki user name of an existing MediaWiki user having an attached email address.\n\n``size``\n  Size in pixels (avatars are quadratic)\n\n``default``\n  Default icon type when no avatar has been found.\n  Options: 404, mm, identicon, monsterid, wavatar, retro\n\n``algorithm``\n  Email hashing algorithm. md5 or sha256\n\n``alt``\n  \"alt\" attribute value for the image tag\n\n``title``\n  \"title\" attribute value for the image tag\n\n``style``\n  \"style\" attribute value for the image tag\n\n``class``\n  \"class\" attribute value for the image tag\n\n\nGlobal configuration variables\n==============================\n- ``$wgLibravatarSize``\n- ``$wgLibravatarDefault``\n- ``$wgLibravatarAlgorithm``\n\n\n\nInstallation\n============\nPhar\n----\nCopy the ``mediawiki-libravatar-0.2.0.phar`` file into your MediaWiki\n``extensions/`` directory and add the following to your\n``LocalSettings.php``::\n\n  require_once \"$IP/extensions/mediawiki-libravatar-0.2.0.phar\";\n\nThat's it, it works now. All dependencies are included in the ``.phar`` file.\n\nIf you get a white page, then you're `probably running Suhosin`__.\n\n__ http://cweiske.de/tagebuch/suhosin-phar.htm\n\n\nNormal installation\n-------------------\n\n1. Run $ pear install Services_Libravatar-alpha\n2. Copy this extension's ``Libravatar.php``, ``Libravatar.body.php``\n   and ``Libravatar.i18n.php`` into the directory\n   ``$mediawiki/extensions/Libravatar/``\n3. Edit ``LocalSettings.php``::\n\n    require_once \"$IP/extensions/Libravatar/Libravatar.php\";\n\n\nDependencies\n============\nRequires the `Services_Libravatar`__ package from PEAR.\n\n__ http://pear.php.net/package/Services_Libravatar\n\n\nAuthor\n======\n\nChristian Weiske, christian.weiske@netresearch.de\nPhilipp Spitzer, philipp.spitzer@winterrodeln.org\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetresearch%2Fmediawiki-libravatar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnetresearch%2Fmediawiki-libravatar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetresearch%2Fmediawiki-libravatar/lists"}