]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/Comet/CometPlugin.php
Preparing plugins for no-minify-in-core-policy
[quix0rs-gnu-social.git] / plugins / Comet / CometPlugin.php
index 70b324b5c20d225683d0d6cc98079941e6b7c1c7..22f791e2fccb032270458eb27d970fc348a63d2c 100644 (file)
  * @link      http://status.net/
  */
 
-if (!defined('STATUSNET') && !defined('LACONICA')) {
+if (!defined('GNUSOCIAL') && !defined('STATUSNET')) {
     exit(1);
 }
 
-require_once INSTALLDIR.'/plugins/Realtime/RealtimePlugin.php';
-
 /**
  * Plugin to do realtime updates using Comet
  *
@@ -64,10 +62,10 @@ class CometPlugin extends RealtimePlugin
     {
         $scripts = parent::_getScripts();
 
-        $ours = array('jquery.comet.js', 'cometupdate.js');
+        $ours = array('js/jquery.comet.js', 'js/cometupdate.js');
 
         foreach ($ours as $script) {
-            $scripts[] = 'plugins/Comet/'.$script;
+            $scripts[] = $this->path($script);
         }
 
         return $scripts;
@@ -81,7 +79,7 @@ class CometPlugin extends RealtimePlugin
 
     function _connect()
     {
-        require_once INSTALLDIR.'/plugins/Comet/bayeux.class.inc.php';
+        require_once INSTALLDIR.'/plugins/Comet/extlib/Bayeux/Bayeux.class.php';
         // Bayeux? Comet? Huh? These terms confuse me
         $this->bay = new Bayeux($this->server, $this->user, $this->password);
     }
@@ -107,11 +105,13 @@ class CometPlugin extends RealtimePlugin
     function onPluginVersion(&$versions)
     {
         $versions[] = array('name' => 'Comet',
-                            'version' => STATUSNET_VERSION,
+                            'version' => GNUSOCIAL_VERSION,
                             'author' => 'Evan Prodromou',
                             'homepage' => 'http://status.net/wiki/Plugin:Comet',
                             'rawdescription' =>
-                            _m('Plugin to do "real time" updates using Comet/Bayeux.'));
+                            // TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages
+                            // TRANS: and Comet is a web application model.
+                            _m('Plugin to make updates using Comet and Bayeux.'));
         return true;
     }
 }