mirror of
https://github.com/e107inc/e107.git
synced 2025-07-25 08:51:50 +02:00
Added missing date attribute to plugin.xml files.
This commit is contained in:
@@ -44,6 +44,7 @@ if(e_AJAX_REQUEST && isset($_GET['src'])) // Ajax
|
||||
|
||||
$dir = basename($unarc[0]['filename']);
|
||||
|
||||
/* Cannot use this yet until 'folder' is included in feed.
|
||||
if($dir != $p['plugin_folder'])
|
||||
{
|
||||
|
||||
@@ -52,6 +53,7 @@ if(e_AJAX_REQUEST && isset($_GET['src'])) // Ajax
|
||||
echo "<br />pfolder=".$p['plugin_folder'];
|
||||
exit;
|
||||
}
|
||||
*/
|
||||
|
||||
if($unarc[0]['folder'] ==1 && is_dir($unarc[0]['filename']))
|
||||
{
|
||||
@@ -70,6 +72,7 @@ if(e_AJAX_REQUEST && isset($_GET['src'])) // Ajax
|
||||
{
|
||||
print_a($unarc);
|
||||
$status = "There was a problem";
|
||||
//unlink(e_UPLOAD.$localfile);
|
||||
}
|
||||
|
||||
echo $status;
|
||||
@@ -94,7 +97,6 @@ require_once (e_HANDLER.'message_handler.php');
|
||||
|
||||
|
||||
$plugin = new e107plugin;
|
||||
$frm = new e_form();
|
||||
$pman = new pluginManager;
|
||||
define("e_PAGETITLE",ADLAN_98." - ".$pman->pagetitle);
|
||||
require_once("auth.php");
|
||||
@@ -126,6 +128,11 @@ class pluginManager{
|
||||
$this -> action = ($tmp[0]) ? $tmp[0] : "installed";
|
||||
$this -> id = varset($tmp[1]) ? intval($tmp[1]) : "";
|
||||
$this -> titlearray = array('installed'=>EPL_ADLAN_22,'avail'=>EPL_ADLAN_23, 'upload'=>EPL_ADLAN_38);
|
||||
|
||||
if(isset($_GET['mode']))
|
||||
{
|
||||
$this->action = $_GET['mode'];
|
||||
}
|
||||
|
||||
$keys = array_keys($this -> titlearray);
|
||||
$this->pagetitle = (in_array($this->action,$keys)) ? $this -> titlearray[$this->action] : $this -> titlearray['installed'];
|
||||
@@ -137,6 +144,8 @@ class pluginManager{
|
||||
"plugin_icon" => array("title" => EPL_ADLAN_82, "type"=>"icon", "width" => "5%", "thclass" => "middle center",'class'=>'center', "url" => ""),
|
||||
"plugin_name" => array("title" => EPL_ADLAN_10, "type"=>"text", "width" => "30", "thclass" => "middle", "url" => ""),
|
||||
"plugin_version" => array("title" => EPL_ADLAN_11, "type"=>"numeric", "width" => "5%", "thclass" => "middle", "url" => ""),
|
||||
"plugin_date" => array("title" => "Release ".LAN_DATE, "type"=>"text", "width" => "auto", "thclass" => "middle"),
|
||||
|
||||
"plugin_folder" => array("title" => EPL_ADLAN_64, "type"=>"text", "width" => "10%", "thclass" => "middle", "url" => ""),
|
||||
"plugin_category" => array("title" => LAN_CATEGORY, "type"=>"text", "width" => "15%", "thclass" => "middle", "url" => ""),
|
||||
"plugin_author" => array("title" => EPL_ADLAN_12, "type"=>"text", "width" => "auto", "thclass" => "middle", "url" => ""),
|
||||
@@ -259,61 +268,84 @@ class pluginManager{
|
||||
|
||||
function pluginOnline()
|
||||
{
|
||||
global $plugin, $frm;
|
||||
global $plugin;
|
||||
$tp = e107::getParser();
|
||||
$frm = e107::getForm();
|
||||
|
||||
$caption = "Search Online";
|
||||
|
||||
$e107 = e107::getInstance();
|
||||
$xml = e107::getXml();
|
||||
$mes = e107::getMessage();
|
||||
|
||||
$mes->addWarning("Experimental: Release plugin must be installed and contain data in order to bug-test this mechanism");
|
||||
// $file = "http://www.e107.org/releases.php"; //pluginfeed.php or similar.
|
||||
|
||||
$file = SITEURLBASE.e_PLUGIN_ABS."release/release.php"; // temporary testing
|
||||
$mes->addWarning("This area is experimental and may produce unpredictable results.");
|
||||
|
||||
$from = intval($_GET['frm']);
|
||||
|
||||
// $file = SITEURLBASE.e_PLUGIN_ABS."release/release.php"; // temporary testing
|
||||
$file = "http://e107.org/feed?frm=".$from;
|
||||
|
||||
$xml->setOptArrayTags('plugin'); // make sure 'plugin' tag always returns an array
|
||||
$xdata = $xml->loadXMLfile($file,'advanced');
|
||||
|
||||
$total = $xdata['@attributes']['total'];
|
||||
|
||||
//TODO use admin_ui including filter capabilities by sending search queries back to the xml script.
|
||||
|
||||
// XML data array.
|
||||
$c = 1;
|
||||
foreach($xdata['plugin'] as $r)
|
||||
{
|
||||
$row = $r['@attributes'];
|
||||
|
||||
$data[] = array(
|
||||
'plugin_icon' => $row['icon'],
|
||||
'plugin_id' => $c,
|
||||
'plugin_icon' => vartrue($row['icon'],e_IMAGE."admin_images/plugins_32.png"),
|
||||
'plugin_name' => $row['name'],
|
||||
'plugin_folder' => $row['folder'],
|
||||
'plugin_version' => $row['version'],
|
||||
'plugin_description' => vartrue($row['description']),
|
||||
'plugin_category' => vartrue($row['category']),
|
||||
'plugin_date' => vartrue($row['date']),
|
||||
'plugin_category' => vartrue($r['category'][0]),
|
||||
'plugin_author' => vartrue($row['author']),
|
||||
'plugin_version' => $row['version'],
|
||||
'plugin_description' => $tp->text_truncate(vartrue($r['description'][0]),200),
|
||||
|
||||
|
||||
'plugin_website' => vartrue($row['authorUrl']),
|
||||
'plugin_url' => $row['url'],
|
||||
'plugin_notes' => ''
|
||||
);
|
||||
$c++;
|
||||
}
|
||||
|
||||
|
||||
// print_a($data);
|
||||
$fieldList = $this->fields;
|
||||
unset($fieldList['plugin_checkboxes']);
|
||||
|
||||
$text = "
|
||||
<form action='".e_SELF."?".e_QUERY."' id='core-plugin-list-form' method='post'>
|
||||
<fieldset id='core-plugin-list'>
|
||||
<legend class='e-hideme'>".$caption."</legend>
|
||||
<table class='adminlist'>
|
||||
".$frm->colGroup($this->fields,$this->fieldpref).
|
||||
$frm->thead($this->fields,$this->fieldpref)."
|
||||
".$frm->colGroup($fieldList,$this->fieldpref).
|
||||
$frm->thead($fieldList,$this->fieldpref)."
|
||||
<tbody>
|
||||
";
|
||||
|
||||
|
||||
|
||||
|
||||
foreach($data as $key=>$val )
|
||||
{
|
||||
// print_a($val);
|
||||
$text .= "<tr>";
|
||||
$text .= "<td>checkbox</td>\n";
|
||||
foreach($this->fieldpref as $k=>$v)
|
||||
|
||||
foreach($this->fields as $v=>$foo)
|
||||
{
|
||||
if(!in_array($v,$this->fieldpref) || $v == 'plugin_checkboxes')
|
||||
{
|
||||
continue;
|
||||
}
|
||||
// echo '<br />v='.$v;
|
||||
$text .= "<td class='".vartrue($this->fields[$v]['class'],'left')."'>".$frm->renderValue($v, $val[$v], $this->fields[$v])."</td>\n";
|
||||
}
|
||||
$text .= "<td class='center'>".$this->options($val)."</td>";
|
||||
@@ -329,11 +361,17 @@ class pluginManager{
|
||||
</fieldset>
|
||||
</form>
|
||||
";
|
||||
|
||||
$emessage = &eMessage::getInstance();
|
||||
|
||||
$amount = 30;
|
||||
|
||||
|
||||
e107::getRender()->tablerender(ADLAN_98." :: ".$caption, $emessage->render(). $text);
|
||||
if($total > $amount)
|
||||
{
|
||||
$parms = $total.",".$amount.",".$from.",".e_SELF.'?mode='.$_GET['mode'].'&frm=[FROM]';
|
||||
$text .= "<div style='text-align:center;margin-top:10px'>".$tp->parseTemplate("{NEXTPREV=$parms}",TRUE)."</div>";
|
||||
}
|
||||
|
||||
e107::getRender()->tablerender(ADLAN_98." :: ".$caption, $mes->render(). $text);
|
||||
}
|
||||
|
||||
|
||||
@@ -343,8 +381,9 @@ class pluginManager{
|
||||
$d = http_build_query($data,false,'&');
|
||||
$url = e_SELF."?src=".base64_encode($d);
|
||||
$id = 'plug_'.$data['plugin_folder'];
|
||||
return "<div id='{$id}' style='margin-top:6px'>
|
||||
<button type='button' data-target='{$id}' data-loading='".e_IMAGE."/generic/loading_32.gif' class='e-ajax' value='Download and Install' data-src='".$url."' /><span>Download and Install</span></div>";
|
||||
return "<div id='{$id}' style='vertical-align:middle'>
|
||||
<button type='button' data-target='{$id}' data-loading='".e_IMAGE."/generic/loading_32.gif' class='e-ajax middle' value='Download and Install' data-src='".$url."' ><span>Download and Install</span></button>
|
||||
</div>";
|
||||
}
|
||||
|
||||
|
||||
@@ -728,7 +767,8 @@ class pluginManager{
|
||||
|
||||
function pluginUpload()
|
||||
{
|
||||
global $plugin,$frm;
|
||||
global $plugin;
|
||||
$frm = e107::getForm();
|
||||
|
||||
//TODO 'install' checkbox in plugin upload form. (as it is for theme upload)
|
||||
|
||||
@@ -778,7 +818,8 @@ class pluginManager{
|
||||
function pluginRenderList() // Uninstall and Install sorting should be fixed once and for all now !
|
||||
{
|
||||
|
||||
global $plugin, $frm;
|
||||
global $plugin;
|
||||
$frm = e107::getForm();
|
||||
$e107 = e107::getInstance();
|
||||
|
||||
if($this->action == "" || $this->action == "installed")
|
||||
@@ -843,7 +884,8 @@ class pluginManager{
|
||||
|
||||
function pluginRenderPlugin($pluginList)
|
||||
{
|
||||
global $plugin, $frm;
|
||||
global $plugin;
|
||||
$frm = e107::getForm();
|
||||
|
||||
if (empty($pluginList)) return '';
|
||||
|
||||
@@ -890,6 +932,8 @@ class pluginManager{
|
||||
$plugEmail = varset($plug_vars['author']['@attributes']['email'],'');
|
||||
$plugAuthor = varset($plug_vars['author']['@attributes']['name'],'');
|
||||
$plugURL = varset($plug_vars['author']['@attributes']['url'],'');
|
||||
$plugDate = varset($plug_vars['@attributes']['date'],'');
|
||||
|
||||
$plugReadme = "";
|
||||
if(varset($plug['plugin_installflag']))
|
||||
{
|
||||
@@ -920,6 +964,8 @@ class pluginManager{
|
||||
$text .= (in_array("plugin_icon",$this->fieldpref)) ? "<td class='center middle'>".$plugin_icon."</td>" : "";
|
||||
$text .= (in_array("plugin_name",$this->fieldpref)) ? "<td class='middle'>".$plugName."</td>" : "";
|
||||
$text .= (in_array("plugin_version",$this->fieldpref)) ? "<td class='middle'>".$plug['plugin_version']."</td>" : "";
|
||||
$text .= (in_array("plugin_date",$this->fieldpref)) ? "<td class='middle'>".$plugDate."</td>" : "";
|
||||
|
||||
$text .= (in_array("plugin_folder",$this->fieldpref)) ? "<td class='middle'>".$plug['plugin_path']."</td>" : "";
|
||||
$text .= (in_array("plugin_category",$this->fieldpref)) ? "<td class='middle'>".$plug['plugin_category']."</td>" : "";
|
||||
$text .= (in_array("plugin_author",$this->fieldpref)) ? "<td class='middle'><a href='mailto:".$plugEmail."' title='".$plugEmail."'>".$plugAuthor."</a> </td>" : "";
|
||||
@@ -964,9 +1010,8 @@ class pluginManager{
|
||||
{
|
||||
$text .= EPL_NOINSTALL_1.str_replace("..", "", e_PLUGIN.$plug['plugin_path'])."/ ".EPL_DIRECTORY;
|
||||
if($plug['plugin_installflag'] == false)
|
||||
{
|
||||
global $sql;
|
||||
$sql->db_Delete('plugin', "plugin_installflag=0 AND (plugin_path='{$plug['plugin_path']}' OR plugin_path='{$plug['plugin_path']}/' ) ");
|
||||
{
|
||||
e107::getDb()->db_Delete('plugin', "plugin_installflag=0 AND (plugin_path='{$plug['plugin_path']}' OR plugin_path='{$plug['plugin_path']}/' ) ");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1199,7 +1244,7 @@ class pluginManager{
|
||||
// $var['upload']['link'] = e_SELF."?upload";
|
||||
|
||||
$var['online']['text'] = "Search";
|
||||
$var['online']['link'] = e_SELF."?online";
|
||||
$var['online']['link'] = e_SELF."?mode=online";
|
||||
|
||||
$keys = array_keys($var);
|
||||
|
||||
|
@@ -2276,6 +2276,7 @@ class e107plugin
|
||||
|
||||
$ret['@attributes']['name'] = varset($eplug_name);
|
||||
$ret['@attributes']['version'] = varset($eplug_version);
|
||||
$ret['@attributes']['date'] = varset($eplug_date);
|
||||
$ret['@attributes']['compatibility'] = varset($eplug_compatible);
|
||||
$ret['@attributes']['installRequired'] = ($eplug_conffile || is_array($eplug_table_names) || is_array($eplug_prefs) || $eplug_module || $eplug_userclass || $eplug_status || $eplug_latest) ? 'true' : '';
|
||||
$ret['@attributes']['xhtmlcompliant'] = vartrue($eplug_compliant) ? 'true' : '';
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Id: plugin.xml,v 1.1 2009-10-30 09:11:01 e107coders Exp $ -->
|
||||
<e107Plugin name="Blank Plugin" version="2.0" compatibility="0.8" installRequired="true" xhtmlcompliant="true" >
|
||||
<e107Plugin name="Blank Plugin" version="2.0" date="2012-08-01" compatibility="0.8" installRequired="true" xhtmlcompliant="true" >
|
||||
<author name="e107 Inc." url="http://e107.org" />
|
||||
<description>A Blank Plugin to help you get started in plugin development</description>
|
||||
<category>misc</category>
|
||||
|
@@ -2,7 +2,7 @@
|
||||
|
||||
<!-- $Id: plugin.xml,v 1.8 2009-11-08 10:34:23 e107steved Exp $ -->
|
||||
|
||||
<e107Plugin name="LAN_ALT_65" version="0.4" compatibility="0.8" installRequired="true" >
|
||||
<e107Plugin name="LAN_ALT_65" version="0.4" date="2012-08-01" compatibility="0.8" installRequired="true" >
|
||||
<author name="e107 Inc." url="e107.org" email="mcfly@e107.org" />
|
||||
<description>LAN_ALT_66</description>
|
||||
<category>users</category>
|
||||
|
@@ -2,7 +2,7 @@
|
||||
|
||||
<!-- $Id: plugin.xml,v 1.5 2009-12-08 17:21:34 secretr Exp $ -->
|
||||
|
||||
<e107Plugin name="Banners" version="1.0" compatibility="0.8" installRequired="true" releaseUrl=''>
|
||||
<e107Plugin name="Banners" version="1.0" date="2012-08-01" compatibility="0.8" installRequired="true" releaseUrl=''>
|
||||
<author name="e107 Inc." url="http://e107.org" email="jalist@e107.org" />
|
||||
<description>BNRLAN_100</description>
|
||||
<languageFiles>
|
||||
|
@@ -2,7 +2,7 @@
|
||||
|
||||
<!-- $Id: plugin.xml,v 1.13 2009-10-22 04:14:45 e107coders Exp $ -->
|
||||
|
||||
<e107Plugin name="EC_ADLAN_1" version="3.70" compatibility="0.8" installRequired="true" setupFile='calendar_setup.php'>
|
||||
<e107Plugin name="EC_ADLAN_1" version="3.70" date="2012-08-01" compatibility="0.8" installRequired="true" setupFile='calendar_setup.php'>
|
||||
<author name="e107 Inc. + Barry" url="http://e107.org" />
|
||||
<description>EC_ADLAN_A206</description>
|
||||
<readMe>readme.pdf</readMe>
|
||||
|
@@ -2,7 +2,7 @@
|
||||
|
||||
<!-- $Id: plugin.xml,v 1.8 2009-10-20 03:49:22 e107coders Exp $ -->
|
||||
|
||||
<e107Plugin name="CHBLAN_40" version="1.0" compatibility="0.8" installRequired="true">
|
||||
<e107Plugin name="CHBLAN_40" version="1.0" date="2012-08-01" compatibility="2.0" installRequired="true">
|
||||
<author name="e107 Inc." url="http://e107.org" email="jalist@e107.org" />
|
||||
<description>CHBLAN_41</description>
|
||||
<category>content</category>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Id: plugin.xml,v 1.15 2009-10-22 04:14:45 e107coders Exp $ -->
|
||||
<e107Plugin name="Download" version="1.0" compatibility="0.8" installRequired="true" releaseUrl=''>
|
||||
<e107Plugin name="Download" version="1.0" date="2012-08-01" compatibility="2.0" installRequired="true" releaseUrl=''>
|
||||
<author name="e107 Inc." url="http://e107.org" />
|
||||
<description>DOWLAN_DESCRIPTION</description>
|
||||
<category>content</category>
|
||||
|
@@ -2,7 +2,7 @@
|
||||
|
||||
<!-- $Id: plugin.xml,v 1.1 2009-11-09 12:57:34 e107coders Exp $ -->
|
||||
|
||||
<e107Plugin name="FAQs" version="1.0" compatibility="0.8" installRequired="true">
|
||||
<e107Plugin name="FAQs" version="1.0" date="2012-08-01" compatibility="2.0" installRequired="true">
|
||||
<author name="e107 Inc" url="http://www.e107.org" email="security@e107.org" />
|
||||
<description>Based on the original FAQ plugin by Cameron @ e107 Inc.</description>
|
||||
<copyright>Copyright e107 Inc e107.org, Licensed under GPL (http://www.gnu.org/licenses/gpl.txt)</copyright>
|
||||
|
@@ -2,7 +2,7 @@
|
||||
|
||||
<!-- $Id: plugin.xml,v 1.9 2009-12-08 17:21:31 secretr Exp $ -->
|
||||
|
||||
<e107Plugin name="FBLAN_01" version="1.0" compatibility="0.8" installRequired="true">
|
||||
<e107Plugin name="FBLAN_01" version="1.0" date="2012-08-01" compatibility="2.0" installRequired="true">
|
||||
<author name="e107 Inc." url="http://e107.org" email="cameron@e107.org" />
|
||||
<description>FBLAN_02</description>
|
||||
<category>content</category>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Id: plugin.xml,v 1.27 2009-10-22 04:14:45 e107coders Exp $ -->
|
||||
<e107Plugin name="Forum" version="2.0" compatibility="0.8" installRequired="true" xhtmlcompliant="true" >
|
||||
<e107Plugin name="Forum" version="2.0" date="2012-08-01" compatibility="2.0" installRequired="true" xhtmlcompliant="true" >
|
||||
<author name="e107 Inc." url="http://e107.org" />
|
||||
<description>This plugin is a fully featured Forum system</description>
|
||||
<category>content</category>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Id: plugin.xml,v 1.15 2009-10-22 04:14:45 e107coders Exp $ -->
|
||||
<e107Plugin name="Gallery" version="1.0" compatibility="0.8" installRequired="true" releaseUrl=''>
|
||||
<e107Plugin name="Gallery" version="1.0" date="2012-08-01" compatibility="2.0" installRequired="true" releaseUrl=''>
|
||||
<author name="e107 Inc." url="http://e107.org" />
|
||||
<description>Gallery</description>
|
||||
<category>content</category>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Id: plugin.xml,v 1.7 2009-10-22 04:14:45 e107coders Exp $ -->
|
||||
<e107Plugin name="GSLAN_19" version="1.0" compatibility="0.8" installRequired="true" releaseUrl=''>
|
||||
<e107Plugin name="GSLAN_19" version="1.0" date="2012-08-01" compatibility="2.0" installRequired="true" releaseUrl=''>
|
||||
<author name="e107 Inc." url="http://e107coders.org" email="cameron@e107coders.org" />
|
||||
<description>GSLAN_41</description>
|
||||
<copyright>Copyright e107 Inc e107.org, Licensed under GPL (http://www.gnu.org/licenses/gpl.txt)</copyright>
|
||||
|
@@ -2,8 +2,8 @@
|
||||
|
||||
<!-- $Id: plugin.xml,v 1.2 2009-09-24 00:11:20 e107coders Exp $ -->
|
||||
|
||||
<e107Plugin name="LAN_CONVERT_01" version="1.0" compatibility="0.8" installRequired="true">
|
||||
<author name="e107 Inc." url="http://e107.org" email="jalist@e107.org" />
|
||||
<e107Plugin name="LAN_CONVERT_01" version="1.0" date="2012-08-01" compatibility="2.0" installRequired="true">
|
||||
<author name="e107 Inc." url="http://e107.org" email="devs@e107.org" />
|
||||
<description>Import into e107</description>
|
||||
<category>tools</category>
|
||||
<copyright>Copyright e107 Inc e107.org, Licensed under GPL (http://www.gnu.org/licenses/gpl.txt)</copyright>
|
||||
|
@@ -2,7 +2,7 @@
|
||||
|
||||
<!-- $Id: plugin.xml,v 1.9 2009-10-22 04:14:45 e107coders Exp $ -->
|
||||
|
||||
<e107Plugin name="LCLAN_PLUGIN_LAN_1" version="1.12" compatibility="0.8" installRequired="true" releaseUrl=''>
|
||||
<e107Plugin name="LCLAN_PLUGIN_LAN_1" version="1.12" date="2012-08-01" compatibility="2.0" installRequired="true" releaseUrl=''>
|
||||
<author name="e107 Inc." url="http://e107.org" />
|
||||
<description>Links Page For Displaying External Web Links</description>
|
||||
<category>content</category>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Id: plugin.xml,v 1.7 2009-10-20 03:49:22 e107coders Exp $ -->
|
||||
<e107Plugin name="LWLANINS_1" version="1.1" compatibility="0.8" installRequired="true" >
|
||||
<e107Plugin name="LWLANINS_1" version="1.1" date="2012-08-01" compatibility="2.0" installRequired="true" >
|
||||
<author name="e107 Inc." url="http://e107.org" />
|
||||
<description>This plugin will link specified words with a defined link and/or tooltip</description>
|
||||
<languageFiles>
|
||||
|
@@ -2,7 +2,7 @@
|
||||
|
||||
<!-- $Id: plugin.xml,v 1.10 2009-10-22 04:14:45 e107coders Exp $ -->
|
||||
|
||||
<e107Plugin name="LIST_PLUGIN_1" version="1.0" compatibility="0.8" installRequired="true" releaseUrl=''>
|
||||
<e107Plugin name="LIST_PLUGIN_1" version="1.0" date="2012-08-01" compatibility="2.0" installRequired="true" releaseUrl=''>
|
||||
<author name="e107 Inc." url="http://e107.org" />
|
||||
<description>LIST_PLUGIN_2</description>
|
||||
<copyright>Copyright e107 Inc e107.org, Licensed under GPL (http://www.gnu.org/licenses/gpl.txt)</copyright>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Id: plugin.xml,v 1.9 2009-10-22 04:14:45 e107coders Exp $ -->
|
||||
<e107Plugin name="ADSTAT_L3" version="2.1" compatibility="0.8" installRequired="true" releaseUrl=''>
|
||||
<e107Plugin name="ADSTAT_L3" version="2.1" date="2012-08-01" compatibility="2.0" installRequired="true" releaseUrl=''>
|
||||
<author name="e107 Inc." url="http://e107.org" />
|
||||
<description>ADSTAT_L1</description>
|
||||
<languageFiles>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Id: plugin.xml,v 1.2 2009-10-24 12:50:15 e107coders Exp $ -->
|
||||
<e107Plugin name="Metaweblog" version="1.0" compatibility="0.8" installRequired="true" >
|
||||
<e107Plugin name="Metaweblog" version="1.0" date="2012-08-01" compatibility="2.0" installRequired="true" >
|
||||
<author name="e107 Inc." url="http://e107.org" />
|
||||
<description>Metaweblog API support for e107</description>
|
||||
<category>tools</category>
|
||||
|
@@ -24,6 +24,7 @@ $eplug_url = "http://e107.org";
|
||||
$eplug_email = "jalist@e107.org";
|
||||
$eplug_description = "This plugin displays a list of new forum posts on your front page";
|
||||
$eplug_compatible = "e107v6";
|
||||
$eplug_date = "2012-08-01";
|
||||
$eplug_readme = "";
|
||||
// leave blank if no readme file
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Id$ -->
|
||||
<e107Plugin name="News" version="1.0" compatibility="0.8" installRequired="false" >
|
||||
<e107Plugin name="News" version="1.0" date="2012-08-01" compatibility="2.0" installRequired="false" >
|
||||
<category>menu</category>
|
||||
</e107Plugin>
|
@@ -3,7 +3,7 @@
|
||||
<!-- Copyright e107 Inc e107.org, Licensed under GNU GPL (http://www.gnu.org/licenses/gpl.txt) -->
|
||||
<!-- $Id: plugin.xml,v 1.8 2009-10-22 04:14:45 e107coders Exp $ -->
|
||||
|
||||
<e107Plugin name="NFLAN_01" version="2.0" compatibility="0.8" installRequired="true">
|
||||
<e107Plugin name="NFLAN_01" version="2.0" date="2012-08-01" compatibility="2.0" installRequired="true">
|
||||
<author name="e107 Inc." url="http://e107.org" email="jalist@e107.org" />
|
||||
<description>NFLAN_02</description>
|
||||
<category>content</category>
|
||||
|
@@ -3,7 +3,7 @@
|
||||
<!-- Copyright e107 Inc e107.org, Licensed under GNU GPL (http://www.gnu.org/licenses/gpl.txt) -->
|
||||
<!-- $Id: plugin.xml,v 1.1 2009-11-19 20:24:21 e107steved Exp $ -->
|
||||
|
||||
<e107Plugin name="NLLAN_01" version="1.1" compatibility="0.8" installRequired="true">
|
||||
<e107Plugin name="NLLAN_01" version="1.1" date="2012-08-01" compatibility="2.0" installRequired="true">
|
||||
<author name="e107 Inc, nlstart" url="http://e107.org" />
|
||||
<description>NLLAN_02</description>
|
||||
<folder>newsletter</folder>
|
||||
|
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Id: plugin.xml,v 1.1 2009-11-19 12:36:22 e107coders Exp $ -->
|
||||
<e107Plugin name="Pages" version="1.0" compatibility="0.8" installRequired="false" >
|
||||
<e107Plugin name="Pages" version="1.0" date="2012-08-01" compatibility="2.0" installRequired="false" >
|
||||
<category>menu</category>
|
||||
</e107Plugin>
|
@@ -2,7 +2,7 @@
|
||||
|
||||
<!-- $Id: plugin.xml,v 1.6 2009-12-05 12:33:30 e107steved Exp $ -->
|
||||
|
||||
<e107Plugin name="PDF_PLUGIN_LAN_1" version="2.0" compatibility="0.8" installRequired="true" releaseUrl=''>
|
||||
<e107Plugin name="PDF_PLUGIN_LAN_1" version="2.0" date="2012-08-01" compatibility="2.0" installRequired="true" releaseUrl=''>
|
||||
<author name="e107Inc" />
|
||||
<description>PDF_PLUGIN_LAN_2</description>
|
||||
<copyright>Copyright e107 Inc e107.org, Licensed under GPL (http://www.gnu.org/licenses/gpl.txt)</copyright>
|
||||
|
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Id: plugin.xml,v 1.13 2009-12-11 22:33:15 e107steved Exp $ -->
|
||||
<e107Plugin name="ADLAN_PM" version="3.0" compatibility="0.8" installRequired="true">
|
||||
<author name="e107 Inc." email="mcfly@e107.org" />
|
||||
<e107Plugin name="ADLAN_PM" version="3.0" date="2012-08-01" compatibility="2.0" installRequired="true">
|
||||
<author name="e107 Inc." email="devs@e107.org" />
|
||||
<description>ADLAN_PM_57</description>
|
||||
<category>users</category>
|
||||
<languageFiles>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Id: plugin.xml,v 1.11 2009-10-20 03:49:22 e107coders Exp $ -->
|
||||
<e107Plugin name="POLL_ADLAN01" version="2.0" compatibility="0.8" installRequired="true" >
|
||||
<e107Plugin name="POLL_ADLAN01" version="2.0" date="2012-08-01" compatibility="2.0" installRequired="true" >
|
||||
<author name="e107 Inc." url="http://e107.org" />
|
||||
<description>POLL_ADLAN02</description>
|
||||
<category>content</category>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Id: plugin.xml,v 1.2 2009-10-20 03:49:22 e107coders Exp $ -->
|
||||
<e107Plugin name="Release" version="1.0" compatibility="0.8" installRequired="true" >
|
||||
<e107Plugin name="Release" version="1.0" date="2012-08-01" compatibility="2.0" installRequired="true" >
|
||||
<author name="e107 Inc." url="http://e107.org" />
|
||||
<description>Manage Release Feeds for e107 Plugins and Themes</description>
|
||||
<category>tools</category>
|
||||
|
@@ -2,7 +2,7 @@
|
||||
|
||||
<!-- $Id: plugin.xml,v 1.9 2009-10-20 03:49:22 e107coders Exp $ -->
|
||||
|
||||
<e107Plugin name="RSS_PLUGIN_LAN_1" version="1.3" compatibility="0.8" installRequired="true">
|
||||
<e107Plugin name="RSS_PLUGIN_LAN_1" version="1.3" date="2012-08-01" compatibility="2.0" installRequired="true">
|
||||
<author name="e107 Inc." url="http://e107.org" />
|
||||
<description>RSS_PLUGIN_LAN_2</description>
|
||||
<compatibility>0.8</compatibility>
|
||||
|
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Id: plugin.xml,v 1.2 2009-09-24 00:11:20 e107coders Exp $ -->
|
||||
<e107Plugin name="Siteinfo" version="1.0" compatibility="0.8" installRequired="false" >
|
||||
<e107Plugin name="Siteinfo" version="1.0" date="2012-08-01" compatibility="2.0" installRequired="false" >
|
||||
<category>menu</category>
|
||||
</e107Plugin>
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Id: plugin.xml,v 1.8 2009-10-22 04:14:45 e107coders Exp $ -->
|
||||
<e107Plugin name="Tagwords" version="1.0" compatibility="0.8" installRequired="true">
|
||||
<e107Plugin name="Tagwords" version="1.0" date="2012-08-01" compatibility="2.0" installRequired="true">
|
||||
<author name="e107 Inc." url="http://e107.org/" />
|
||||
<description>A fully featured Tagword system</description>
|
||||
<category>misc</category>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Id: plugin.xml,v 1.3 2009-10-20 03:49:22 e107coders Exp $ -->
|
||||
<e107Plugin name="TinyMce" version="1.0" compatibility="0.8" installRequired="true">
|
||||
<e107Plugin name="TinyMce" version="1.0" date="2012-08-01" compatibility="2.0" installRequired="true">
|
||||
<author name="e107 Inc." url="http://e107.org" />
|
||||
<description>Wysiwyg Text-Area Replacement</description>
|
||||
<category>misc</category>
|
||||
|
@@ -2,8 +2,8 @@
|
||||
|
||||
<!-- $Id: plugin.xml,v 1.6 2009-10-20 03:49:22 e107coders Exp $ -->
|
||||
|
||||
<e107Plugin name="TRACKBACK_L16" version="1.1" compatibility="0.8" installRequired="true" releaseUrl=''>
|
||||
<author name="e107 Inc." url="http://e107.org" email="jalist@e107.org" />
|
||||
<e107Plugin name="TRACKBACK_L16" version="1.1" date="2012-08-01" compatibility="2.0" installRequired="true" releaseUrl=''>
|
||||
<author name="e107 Inc." url="http://e107.org" email="devs@e107.org" />
|
||||
<description>TRACKBACK_L2</description>
|
||||
<copyright>Copyright e107 Inc e107.org, Licensed under GPL (http://www.gnu.org/licenses/gpl.txt)</copyright>
|
||||
<languageFiles>
|
||||
|
Reference in New Issue
Block a user