bridges: Update maintainer (#2856)

This commit is contained in:
Yaman Qalieh 2022-06-22 13:07:54 -04:00 committed by GitHub
parent a166899633
commit abb4c17a0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 0 additions and 10 deletions

View File

@ -3,7 +3,6 @@ class AstrophysicsDataSystemBridge extends BridgeAbstract {
const NAME = 'SAO/NASA Astrophysics Data System'; const NAME = 'SAO/NASA Astrophysics Data System';
const DESCRIPTION = 'Returns the latest publications from a query'; const DESCRIPTION = 'Returns the latest publications from a query';
const URI = 'https://ui.adsabs.harvard.edu'; const URI = 'https://ui.adsabs.harvard.edu';
const MAINTAINER = 'Yaman Qalieh';
const PARAMETERS = array( const PARAMETERS = array(
'Publications' => array( 'Publications' => array(
'query' => array( 'query' => array(

View File

@ -1,6 +1,5 @@
<?php <?php
class CraigslistBridge extends BridgeAbstract { class CraigslistBridge extends BridgeAbstract {
const MAINTAINER = 'Yaman Qalieh';
const NAME = 'Craigslist Bridge'; const NAME = 'Craigslist Bridge';
const URI = 'https://craigslist.org/'; const URI = 'https://craigslist.org/';
const DESCRIPTION = 'Returns craigslist search results'; const DESCRIPTION = 'Returns craigslist search results';

View File

@ -3,7 +3,6 @@ class FDroidRepoBridge extends BridgeAbstract {
const NAME = 'F-Droid Repository Bridge'; const NAME = 'F-Droid Repository Bridge';
const URI = 'https://f-droid.org/'; const URI = 'https://f-droid.org/';
const DESCRIPTION = 'Query any F-Droid Repository for its latest updates.'; const DESCRIPTION = 'Query any F-Droid Repository for its latest updates.';
const MAINTAINER = 'Yaman Qalieh';
const ITEM_LIMIT = 50; const ITEM_LIMIT = 50;

View File

@ -1,7 +1,6 @@
<?php <?php
class GitHubPullRequestBridge extends GithubIssueBridge { class GitHubPullRequestBridge extends GithubIssueBridge {
const MAINTAINER = 'Yaman Qalieh';
const NAME = 'GitHub Pull Request'; const NAME = 'GitHub Pull Request';
const DESCRIPTION = 'Returns the pull request or comments of a pull request of a GitHub project'; const DESCRIPTION = 'Returns the pull request or comments of a pull request of a GitHub project';

View File

@ -4,7 +4,6 @@ class GoogleGroupsBridge extends XPathAbstract {
const NAME = 'Google Groups Bridge'; const NAME = 'Google Groups Bridge';
const DESCRIPTION = 'Returns the latest posts on a Google Group'; const DESCRIPTION = 'Returns the latest posts on a Google Group';
const URI = 'https://groups.google.com'; const URI = 'https://groups.google.com';
const MAINTAINER = 'Yaman Qalieh';
const PARAMETERS = array( array( const PARAMETERS = array( array(
'group' => array( 'group' => array(
'name' => 'Group id', 'name' => 'Group id',

View File

@ -1,6 +1,5 @@
<?php <?php
class GooglePlayStoreBridge extends BridgeAbstract { class GooglePlayStoreBridge extends BridgeAbstract {
const MAINTAINER = 'Yaman Qalieh';
const NAME = 'Google Play Store'; const NAME = 'Google Play Store';
const URI = 'https://play.google.com/store/apps'; const URI = 'https://play.google.com/store/apps';
const CACHE_TIMEOUT = 3600; // 1h const CACHE_TIMEOUT = 3600; // 1h

View File

@ -4,7 +4,6 @@ class Kanali6Bridge extends XPathAbstract {
const NAME = 'Kanali6 Latest Podcasts'; const NAME = 'Kanali6 Latest Podcasts';
const DESCRIPTION = 'Returns the latest podcasts'; const DESCRIPTION = 'Returns the latest podcasts';
const URI = 'https://kanali6.com.cy/mp3/TOC.html'; const URI = 'https://kanali6.com.cy/mp3/TOC.html';
const MAINTAINER = 'Yaman Qalieh';
const FEED_SOURCE_URL = 'https://kanali6.com.cy/mp3/TOC.xml'; const FEED_SOURCE_URL = 'https://kanali6.com.cy/mp3/TOC.xml';
const XPATH_EXPRESSION_ITEM = '//recording[position() <= 50]'; const XPATH_EXPRESSION_ITEM = '//recording[position() <= 50]';

View File

@ -1,6 +1,5 @@
<?php <?php
class MangaDexBridge extends BridgeAbstract { class MangaDexBridge extends BridgeAbstract {
const MAINTAINER = 'Yaman Qalieh';
const NAME = 'MangaDex Bridge'; const NAME = 'MangaDex Bridge';
const URI = 'https://mangadex.org/'; const URI = 'https://mangadex.org/';
const API_ROOT = 'https://api.mangadex.org/'; const API_ROOT = 'https://api.mangadex.org/';

View File

@ -3,7 +3,6 @@ class PixivBridge extends BridgeAbstract {
// Good resource on API return values (Ex: illustType): // Good resource on API return values (Ex: illustType):
// https://hackage.haskell.org/package/pixiv-0.1.0/docs/Web-Pixiv-Types.html // https://hackage.haskell.org/package/pixiv-0.1.0/docs/Web-Pixiv-Types.html
const MAINTAINER = 'Yaman Qalieh';
const NAME = 'Pixiv Bridge'; const NAME = 'Pixiv Bridge';
const URI = 'https://www.pixiv.net/'; const URI = 'https://www.pixiv.net/';
const DESCRIPTION = 'Returns the tag search from pixiv.net'; const DESCRIPTION = 'Returns the tag search from pixiv.net';

View File

@ -6,7 +6,6 @@
*/ */
class WordPressMadaraBridge extends BridgeAbstract { class WordPressMadaraBridge extends BridgeAbstract {
const URI = 'https://live.mangabooth.com/'; const URI = 'https://live.mangabooth.com/';
const MAINTAINER = 'Yaman Qalieh';
const NAME = 'WordPress Madara'; const NAME = 'WordPress Madara';
const DESCRIPTION = 'Returns latest chapters published through the Madara Manga theme. const DESCRIPTION = 'Returns latest chapters published through the Madara Manga theme.
The default URI shows the Madara demo page.'; The default URI shows the Madara demo page.';