]> git.mxchange.org Git - friendica.git/commitdiff
New network types NNTP and iCal
authorMichael Vogel <icarus@dabo.de>
Tue, 27 Oct 2015 06:49:02 +0000 (07:49 +0100)
committerMichael Vogel <icarus@dabo.de>
Tue, 27 Oct 2015 06:49:02 +0000 (07:49 +0100)
boot.php

index 20c243c2406bdbf19646e7a11cc71ed7c1ae8fc1..c9c0d4404e6f66cc308b28d533903d91c4fe33d2 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -163,7 +163,8 @@ define ( 'NETWORK_TWITTER',          'twit');    // Twitter
 define ( 'NETWORK_DIASPORA2',        'dspc');    // Diaspora connector
 define ( 'NETWORK_STATUSNET',        'stac');    // Statusnet connector
 define ( 'NETWORK_APPNET',           'apdn');    // app.net
-
+define ( 'NETWORK_NEWS',             'nntp');    // Network News Transfer Protocol
+define ( 'NETWORK_ICALENDAR',        'ical');    // iCalendar
 define ( 'NETWORK_PHANTOM',          'unkn');    // Place holder
 
 /**
@@ -189,7 +190,9 @@ $netgroup_ids = array(
        NETWORK_TWITTER  => (-14),
        NETWORK_DIASPORA2 => (-15),
        NETWORK_STATUSNET => (-16),
-       NETWORK_APPNET => (-17),
+       NETWORK_APPNET    => (-17),
+       NETWORK_NEWS      => (-18),
+       NETWORK_ICALENDAR => (-19),
 
        NETWORK_PHANTOM  => (-127),
 );