Preparing plugins for no-minify-in-core-policy

also making the file structure better with js and css folders for Realtime and LinkPreview
This commit is contained in:
Mikael Nordfeldth
2014-02-24 00:59:29 +01:00
parent 398491b39b
commit 97830b0701
17 changed files with 12 additions and 31 deletions

View File

@@ -27,12 +27,10 @@
* @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);
}