mirror of
https://github.com/e107inc/e107.git
synced 2025-07-26 01:11:28 +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']);
|
$dir = basename($unarc[0]['filename']);
|
||||||
|
|
||||||
|
/* Cannot use this yet until 'folder' is included in feed.
|
||||||
if($dir != $p['plugin_folder'])
|
if($dir != $p['plugin_folder'])
|
||||||
{
|
{
|
||||||
|
|
||||||
@@ -52,6 +53,7 @@ if(e_AJAX_REQUEST && isset($_GET['src'])) // Ajax
|
|||||||
echo "<br />pfolder=".$p['plugin_folder'];
|
echo "<br />pfolder=".$p['plugin_folder'];
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
if($unarc[0]['folder'] ==1 && is_dir($unarc[0]['filename']))
|
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);
|
print_a($unarc);
|
||||||
$status = "There was a problem";
|
$status = "There was a problem";
|
||||||
|
//unlink(e_UPLOAD.$localfile);
|
||||||
}
|
}
|
||||||
|
|
||||||
echo $status;
|
echo $status;
|
||||||
@@ -94,7 +97,6 @@ require_once (e_HANDLER.'message_handler.php');
|
|||||||
|
|
||||||
|
|
||||||
$plugin = new e107plugin;
|
$plugin = new e107plugin;
|
||||||
$frm = new e_form();
|
|
||||||
$pman = new pluginManager;
|
$pman = new pluginManager;
|
||||||
define("e_PAGETITLE",ADLAN_98." - ".$pman->pagetitle);
|
define("e_PAGETITLE",ADLAN_98." - ".$pman->pagetitle);
|
||||||
require_once("auth.php");
|
require_once("auth.php");
|
||||||
@@ -126,6 +128,11 @@ class pluginManager{
|
|||||||
$this -> action = ($tmp[0]) ? $tmp[0] : "installed";
|
$this -> action = ($tmp[0]) ? $tmp[0] : "installed";
|
||||||
$this -> id = varset($tmp[1]) ? intval($tmp[1]) : "";
|
$this -> id = varset($tmp[1]) ? intval($tmp[1]) : "";
|
||||||
$this -> titlearray = array('installed'=>EPL_ADLAN_22,'avail'=>EPL_ADLAN_23, 'upload'=>EPL_ADLAN_38);
|
$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);
|
$keys = array_keys($this -> titlearray);
|
||||||
$this->pagetitle = (in_array($this->action,$keys)) ? $this -> titlearray[$this->action] : $this -> titlearray['installed'];
|
$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_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_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_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_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_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" => ""),
|
"plugin_author" => array("title" => EPL_ADLAN_12, "type"=>"text", "width" => "auto", "thclass" => "middle", "url" => ""),
|
||||||
@@ -259,61 +268,84 @@ class pluginManager{
|
|||||||
|
|
||||||
function pluginOnline()
|
function pluginOnline()
|
||||||
{
|
{
|
||||||
global $plugin, $frm;
|
global $plugin;
|
||||||
|
$tp = e107::getParser();
|
||||||
|
$frm = e107::getForm();
|
||||||
|
|
||||||
$caption = "Search Online";
|
$caption = "Search Online";
|
||||||
|
|
||||||
$e107 = e107::getInstance();
|
$e107 = e107::getInstance();
|
||||||
$xml = e107::getXml();
|
$xml = e107::getXml();
|
||||||
$mes = e107::getMessage();
|
$mes = e107::getMessage();
|
||||||
|
|
||||||
$mes->addWarning("Experimental: Release plugin must be installed and contain data in order to bug-test this mechanism");
|
$mes->addWarning("This area is experimental and may produce unpredictable results.");
|
||||||
// $file = "http://www.e107.org/releases.php"; //pluginfeed.php or similar.
|
|
||||||
|
|
||||||
$file = SITEURLBASE.e_PLUGIN_ABS."release/release.php"; // temporary testing
|
|
||||||
|
|
||||||
|
$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
|
$xml->setOptArrayTags('plugin'); // make sure 'plugin' tag always returns an array
|
||||||
$xdata = $xml->loadXMLfile($file,'advanced');
|
$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.
|
//TODO use admin_ui including filter capabilities by sending search queries back to the xml script.
|
||||||
|
|
||||||
// XML data array.
|
// XML data array.
|
||||||
|
$c = 1;
|
||||||
foreach($xdata['plugin'] as $r)
|
foreach($xdata['plugin'] as $r)
|
||||||
{
|
{
|
||||||
$row = $r['@attributes'];
|
$row = $r['@attributes'];
|
||||||
|
|
||||||
$data[] = array(
|
$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_name' => $row['name'],
|
||||||
'plugin_folder' => $row['folder'],
|
'plugin_folder' => $row['folder'],
|
||||||
'plugin_version' => $row['version'],
|
'plugin_date' => vartrue($row['date']),
|
||||||
'plugin_description' => vartrue($row['description']),
|
'plugin_category' => vartrue($r['category'][0]),
|
||||||
'plugin_category' => vartrue($row['category']),
|
|
||||||
'plugin_author' => vartrue($row['author']),
|
'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_website' => vartrue($row['authorUrl']),
|
||||||
'plugin_url' => $row['url'],
|
'plugin_url' => $row['url'],
|
||||||
'plugin_notes' => ''
|
'plugin_notes' => ''
|
||||||
);
|
);
|
||||||
|
$c++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// print_a($data);
|
||||||
|
$fieldList = $this->fields;
|
||||||
|
unset($fieldList['plugin_checkboxes']);
|
||||||
|
|
||||||
$text = "
|
$text = "
|
||||||
<form action='".e_SELF."?".e_QUERY."' id='core-plugin-list-form' method='post'>
|
<form action='".e_SELF."?".e_QUERY."' id='core-plugin-list-form' method='post'>
|
||||||
<fieldset id='core-plugin-list'>
|
<fieldset id='core-plugin-list'>
|
||||||
<legend class='e-hideme'>".$caption."</legend>
|
<legend class='e-hideme'>".$caption."</legend>
|
||||||
<table class='adminlist'>
|
<table class='adminlist'>
|
||||||
".$frm->colGroup($this->fields,$this->fieldpref).
|
".$frm->colGroup($fieldList,$this->fieldpref).
|
||||||
$frm->thead($this->fields,$this->fieldpref)."
|
$frm->thead($fieldList,$this->fieldpref)."
|
||||||
<tbody>
|
<tbody>
|
||||||
";
|
";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
foreach($data as $key=>$val )
|
foreach($data as $key=>$val )
|
||||||
{
|
{
|
||||||
|
// print_a($val);
|
||||||
$text .= "<tr>";
|
$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='".vartrue($this->fields[$v]['class'],'left')."'>".$frm->renderValue($v, $val[$v], $this->fields[$v])."</td>\n";
|
||||||
}
|
}
|
||||||
$text .= "<td class='center'>".$this->options($val)."</td>";
|
$text .= "<td class='center'>".$this->options($val)."</td>";
|
||||||
@@ -329,11 +361,17 @@ class pluginManager{
|
|||||||
</fieldset>
|
</fieldset>
|
||||||
</form>
|
</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,'&');
|
$d = http_build_query($data,false,'&');
|
||||||
$url = e_SELF."?src=".base64_encode($d);
|
$url = e_SELF."?src=".base64_encode($d);
|
||||||
$id = 'plug_'.$data['plugin_folder'];
|
$id = 'plug_'.$data['plugin_folder'];
|
||||||
return "<div id='{$id}' style='margin-top:6px'>
|
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' value='Download and Install' data-src='".$url."' /><span>Download and Install</span></div>";
|
<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()
|
function pluginUpload()
|
||||||
{
|
{
|
||||||
global $plugin,$frm;
|
global $plugin;
|
||||||
|
$frm = e107::getForm();
|
||||||
|
|
||||||
//TODO 'install' checkbox in plugin upload form. (as it is for theme upload)
|
//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 !
|
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();
|
$e107 = e107::getInstance();
|
||||||
|
|
||||||
if($this->action == "" || $this->action == "installed")
|
if($this->action == "" || $this->action == "installed")
|
||||||
@@ -843,7 +884,8 @@ class pluginManager{
|
|||||||
|
|
||||||
function pluginRenderPlugin($pluginList)
|
function pluginRenderPlugin($pluginList)
|
||||||
{
|
{
|
||||||
global $plugin, $frm;
|
global $plugin;
|
||||||
|
$frm = e107::getForm();
|
||||||
|
|
||||||
if (empty($pluginList)) return '';
|
if (empty($pluginList)) return '';
|
||||||
|
|
||||||
@@ -890,6 +932,8 @@ class pluginManager{
|
|||||||
$plugEmail = varset($plug_vars['author']['@attributes']['email'],'');
|
$plugEmail = varset($plug_vars['author']['@attributes']['email'],'');
|
||||||
$plugAuthor = varset($plug_vars['author']['@attributes']['name'],'');
|
$plugAuthor = varset($plug_vars['author']['@attributes']['name'],'');
|
||||||
$plugURL = varset($plug_vars['author']['@attributes']['url'],'');
|
$plugURL = varset($plug_vars['author']['@attributes']['url'],'');
|
||||||
|
$plugDate = varset($plug_vars['@attributes']['date'],'');
|
||||||
|
|
||||||
$plugReadme = "";
|
$plugReadme = "";
|
||||||
if(varset($plug['plugin_installflag']))
|
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_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_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_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_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_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>" : "";
|
$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;
|
$text .= EPL_NOINSTALL_1.str_replace("..", "", e_PLUGIN.$plug['plugin_path'])."/ ".EPL_DIRECTORY;
|
||||||
if($plug['plugin_installflag'] == false)
|
if($plug['plugin_installflag'] == false)
|
||||||
{
|
{
|
||||||
global $sql;
|
e107::getDb()->db_Delete('plugin', "plugin_installflag=0 AND (plugin_path='{$plug['plugin_path']}' OR plugin_path='{$plug['plugin_path']}/' ) ");
|
||||||
$sql->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['upload']['link'] = e_SELF."?upload";
|
||||||
|
|
||||||
$var['online']['text'] = "Search";
|
$var['online']['text'] = "Search";
|
||||||
$var['online']['link'] = e_SELF."?online";
|
$var['online']['link'] = e_SELF."?mode=online";
|
||||||
|
|
||||||
$keys = array_keys($var);
|
$keys = array_keys($var);
|
||||||
|
|
||||||
|
@@ -2276,6 +2276,7 @@ class e107plugin
|
|||||||
|
|
||||||
$ret['@attributes']['name'] = varset($eplug_name);
|
$ret['@attributes']['name'] = varset($eplug_name);
|
||||||
$ret['@attributes']['version'] = varset($eplug_version);
|
$ret['@attributes']['version'] = varset($eplug_version);
|
||||||
|
$ret['@attributes']['date'] = varset($eplug_date);
|
||||||
$ret['@attributes']['compatibility'] = varset($eplug_compatible);
|
$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']['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' : '';
|
$ret['@attributes']['xhtmlcompliant'] = vartrue($eplug_compliant) ? 'true' : '';
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- $Id: plugin.xml,v 1.1 2009-10-30 09:11:01 e107coders Exp $ -->
|
<!-- $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" />
|
<author name="e107 Inc." url="http://e107.org" />
|
||||||
<description>A Blank Plugin to help you get started in plugin development</description>
|
<description>A Blank Plugin to help you get started in plugin development</description>
|
||||||
<category>misc</category>
|
<category>misc</category>
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<!-- $Id: plugin.xml,v 1.8 2009-11-08 10:34:23 e107steved Exp $ -->
|
<!-- $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" />
|
<author name="e107 Inc." url="e107.org" email="mcfly@e107.org" />
|
||||||
<description>LAN_ALT_66</description>
|
<description>LAN_ALT_66</description>
|
||||||
<category>users</category>
|
<category>users</category>
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<!-- $Id: plugin.xml,v 1.5 2009-12-08 17:21:34 secretr Exp $ -->
|
<!-- $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" />
|
<author name="e107 Inc." url="http://e107.org" email="jalist@e107.org" />
|
||||||
<description>BNRLAN_100</description>
|
<description>BNRLAN_100</description>
|
||||||
<languageFiles>
|
<languageFiles>
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<!-- $Id: plugin.xml,v 1.13 2009-10-22 04:14:45 e107coders Exp $ -->
|
<!-- $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" />
|
<author name="e107 Inc. + Barry" url="http://e107.org" />
|
||||||
<description>EC_ADLAN_A206</description>
|
<description>EC_ADLAN_A206</description>
|
||||||
<readMe>readme.pdf</readMe>
|
<readMe>readme.pdf</readMe>
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<!-- $Id: plugin.xml,v 1.8 2009-10-20 03:49:22 e107coders Exp $ -->
|
<!-- $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" />
|
<author name="e107 Inc." url="http://e107.org" email="jalist@e107.org" />
|
||||||
<description>CHBLAN_41</description>
|
<description>CHBLAN_41</description>
|
||||||
<category>content</category>
|
<category>content</category>
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- $Id: plugin.xml,v 1.15 2009-10-22 04:14:45 e107coders Exp $ -->
|
<!-- $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" />
|
<author name="e107 Inc." url="http://e107.org" />
|
||||||
<description>DOWLAN_DESCRIPTION</description>
|
<description>DOWLAN_DESCRIPTION</description>
|
||||||
<category>content</category>
|
<category>content</category>
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<!-- $Id: plugin.xml,v 1.1 2009-11-09 12:57:34 e107coders Exp $ -->
|
<!-- $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" />
|
<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>
|
<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>
|
<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 $ -->
|
<!-- $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" />
|
<author name="e107 Inc." url="http://e107.org" email="cameron@e107.org" />
|
||||||
<description>FBLAN_02</description>
|
<description>FBLAN_02</description>
|
||||||
<category>content</category>
|
<category>content</category>
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- $Id: plugin.xml,v 1.27 2009-10-22 04:14:45 e107coders Exp $ -->
|
<!-- $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" />
|
<author name="e107 Inc." url="http://e107.org" />
|
||||||
<description>This plugin is a fully featured Forum system</description>
|
<description>This plugin is a fully featured Forum system</description>
|
||||||
<category>content</category>
|
<category>content</category>
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- $Id: plugin.xml,v 1.15 2009-10-22 04:14:45 e107coders Exp $ -->
|
<!-- $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" />
|
<author name="e107 Inc." url="http://e107.org" />
|
||||||
<description>Gallery</description>
|
<description>Gallery</description>
|
||||||
<category>content</category>
|
<category>content</category>
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- $Id: plugin.xml,v 1.7 2009-10-22 04:14:45 e107coders Exp $ -->
|
<!-- $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" />
|
<author name="e107 Inc." url="http://e107coders.org" email="cameron@e107coders.org" />
|
||||||
<description>GSLAN_41</description>
|
<description>GSLAN_41</description>
|
||||||
<copyright>Copyright e107 Inc e107.org, Licensed under GPL (http://www.gnu.org/licenses/gpl.txt)</copyright>
|
<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 $ -->
|
<!-- $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">
|
<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="jalist@e107.org" />
|
<author name="e107 Inc." url="http://e107.org" email="devs@e107.org" />
|
||||||
<description>Import into e107</description>
|
<description>Import into e107</description>
|
||||||
<category>tools</category>
|
<category>tools</category>
|
||||||
<copyright>Copyright e107 Inc e107.org, Licensed under GPL (http://www.gnu.org/licenses/gpl.txt)</copyright>
|
<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 $ -->
|
<!-- $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" />
|
<author name="e107 Inc." url="http://e107.org" />
|
||||||
<description>Links Page For Displaying External Web Links</description>
|
<description>Links Page For Displaying External Web Links</description>
|
||||||
<category>content</category>
|
<category>content</category>
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- $Id: plugin.xml,v 1.7 2009-10-20 03:49:22 e107coders Exp $ -->
|
<!-- $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" />
|
<author name="e107 Inc." url="http://e107.org" />
|
||||||
<description>This plugin will link specified words with a defined link and/or tooltip</description>
|
<description>This plugin will link specified words with a defined link and/or tooltip</description>
|
||||||
<languageFiles>
|
<languageFiles>
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<!-- $Id: plugin.xml,v 1.10 2009-10-22 04:14:45 e107coders Exp $ -->
|
<!-- $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" />
|
<author name="e107 Inc." url="http://e107.org" />
|
||||||
<description>LIST_PLUGIN_2</description>
|
<description>LIST_PLUGIN_2</description>
|
||||||
<copyright>Copyright e107 Inc e107.org, Licensed under GPL (http://www.gnu.org/licenses/gpl.txt)</copyright>
|
<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"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- $Id: plugin.xml,v 1.9 2009-10-22 04:14:45 e107coders Exp $ -->
|
<!-- $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" />
|
<author name="e107 Inc." url="http://e107.org" />
|
||||||
<description>ADSTAT_L1</description>
|
<description>ADSTAT_L1</description>
|
||||||
<languageFiles>
|
<languageFiles>
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- $Id: plugin.xml,v 1.2 2009-10-24 12:50:15 e107coders Exp $ -->
|
<!-- $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" />
|
<author name="e107 Inc." url="http://e107.org" />
|
||||||
<description>Metaweblog API support for e107</description>
|
<description>Metaweblog API support for e107</description>
|
||||||
<category>tools</category>
|
<category>tools</category>
|
||||||
|
@@ -24,6 +24,7 @@ $eplug_url = "http://e107.org";
|
|||||||
$eplug_email = "jalist@e107.org";
|
$eplug_email = "jalist@e107.org";
|
||||||
$eplug_description = "This plugin displays a list of new forum posts on your front page";
|
$eplug_description = "This plugin displays a list of new forum posts on your front page";
|
||||||
$eplug_compatible = "e107v6";
|
$eplug_compatible = "e107v6";
|
||||||
|
$eplug_date = "2012-08-01";
|
||||||
$eplug_readme = "";
|
$eplug_readme = "";
|
||||||
// leave blank if no readme file
|
// leave blank if no readme file
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- $Id$ -->
|
<!-- $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>
|
<category>menu</category>
|
||||||
</e107Plugin>
|
</e107Plugin>
|
@@ -3,7 +3,7 @@
|
|||||||
<!-- Copyright e107 Inc e107.org, Licensed under GNU GPL (http://www.gnu.org/licenses/gpl.txt) -->
|
<!-- 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 $ -->
|
<!-- $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" />
|
<author name="e107 Inc." url="http://e107.org" email="jalist@e107.org" />
|
||||||
<description>NFLAN_02</description>
|
<description>NFLAN_02</description>
|
||||||
<category>content</category>
|
<category>content</category>
|
||||||
|
@@ -3,7 +3,7 @@
|
|||||||
<!-- Copyright e107 Inc e107.org, Licensed under GNU GPL (http://www.gnu.org/licenses/gpl.txt) -->
|
<!-- 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 $ -->
|
<!-- $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" />
|
<author name="e107 Inc, nlstart" url="http://e107.org" />
|
||||||
<description>NLLAN_02</description>
|
<description>NLLAN_02</description>
|
||||||
<folder>newsletter</folder>
|
<folder>newsletter</folder>
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- $Id: plugin.xml,v 1.1 2009-11-19 12:36:22 e107coders Exp $ -->
|
<!-- $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>
|
<category>menu</category>
|
||||||
</e107Plugin>
|
</e107Plugin>
|
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<!-- $Id: plugin.xml,v 1.6 2009-12-05 12:33:30 e107steved Exp $ -->
|
<!-- $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" />
|
<author name="e107Inc" />
|
||||||
<description>PDF_PLUGIN_LAN_2</description>
|
<description>PDF_PLUGIN_LAN_2</description>
|
||||||
<copyright>Copyright e107 Inc e107.org, Licensed under GPL (http://www.gnu.org/licenses/gpl.txt)</copyright>
|
<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"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- $Id: plugin.xml,v 1.13 2009-12-11 22:33:15 e107steved Exp $ -->
|
<!-- $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">
|
<e107Plugin name="ADLAN_PM" version="3.0" date="2012-08-01" compatibility="2.0" installRequired="true">
|
||||||
<author name="e107 Inc." email="mcfly@e107.org" />
|
<author name="e107 Inc." email="devs@e107.org" />
|
||||||
<description>ADLAN_PM_57</description>
|
<description>ADLAN_PM_57</description>
|
||||||
<category>users</category>
|
<category>users</category>
|
||||||
<languageFiles>
|
<languageFiles>
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- $Id: plugin.xml,v 1.11 2009-10-20 03:49:22 e107coders Exp $ -->
|
<!-- $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" />
|
<author name="e107 Inc." url="http://e107.org" />
|
||||||
<description>POLL_ADLAN02</description>
|
<description>POLL_ADLAN02</description>
|
||||||
<category>content</category>
|
<category>content</category>
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- $Id: plugin.xml,v 1.2 2009-10-20 03:49:22 e107coders Exp $ -->
|
<!-- $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" />
|
<author name="e107 Inc." url="http://e107.org" />
|
||||||
<description>Manage Release Feeds for e107 Plugins and Themes</description>
|
<description>Manage Release Feeds for e107 Plugins and Themes</description>
|
||||||
<category>tools</category>
|
<category>tools</category>
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<!-- $Id: plugin.xml,v 1.9 2009-10-20 03:49:22 e107coders Exp $ -->
|
<!-- $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" />
|
<author name="e107 Inc." url="http://e107.org" />
|
||||||
<description>RSS_PLUGIN_LAN_2</description>
|
<description>RSS_PLUGIN_LAN_2</description>
|
||||||
<compatibility>0.8</compatibility>
|
<compatibility>0.8</compatibility>
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- $Id: plugin.xml,v 1.2 2009-09-24 00:11:20 e107coders Exp $ -->
|
<!-- $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>
|
<category>menu</category>
|
||||||
</e107Plugin>
|
</e107Plugin>
|
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- $Id: plugin.xml,v 1.8 2009-10-22 04:14:45 e107coders Exp $ -->
|
<!-- $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/" />
|
<author name="e107 Inc." url="http://e107.org/" />
|
||||||
<description>A fully featured Tagword system</description>
|
<description>A fully featured Tagword system</description>
|
||||||
<category>misc</category>
|
<category>misc</category>
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- $Id: plugin.xml,v 1.3 2009-10-20 03:49:22 e107coders Exp $ -->
|
<!-- $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" />
|
<author name="e107 Inc." url="http://e107.org" />
|
||||||
<description>Wysiwyg Text-Area Replacement</description>
|
<description>Wysiwyg Text-Area Replacement</description>
|
||||||
<category>misc</category>
|
<category>misc</category>
|
||||||
|
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
<!-- $Id: plugin.xml,v 1.6 2009-10-20 03:49:22 e107coders Exp $ -->
|
<!-- $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=''>
|
<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="jalist@e107.org" />
|
<author name="e107 Inc." url="http://e107.org" email="devs@e107.org" />
|
||||||
<description>TRACKBACK_L2</description>
|
<description>TRACKBACK_L2</description>
|
||||||
<copyright>Copyright e107 Inc e107.org, Licensed under GPL (http://www.gnu.org/licenses/gpl.txt)</copyright>
|
<copyright>Copyright e107 Inc e107.org, Licensed under GPL (http://www.gnu.org/licenses/gpl.txt)</copyright>
|
||||||
<languageFiles>
|
<languageFiles>
|
||||||
|
Reference in New Issue
Block a user