[pLog-svn] r1206 - in plugins/trunk: authimage blogtimes contentfilter dnsantispam dropcase feedreader hostblock karma moderate nofollow secret smileys textparser validatetrackback

mark at devel.plogworld.net mark at devel.plogworld.net
Fri Feb 25 06:45:27 GMT 2005


Author: mark
Date: 2005-02-25 06:45:26 +0000 (Fri, 25 Feb 2005)
New Revision: 1206

Added:
   plugins/trunk/contentfilter/readme.txt
   plugins/trunk/dnsantispam/readme.txt
   plugins/trunk/feedreader/readme.txt
   plugins/trunk/hostblock/readme.txt
   plugins/trunk/karma/readme.txt
   plugins/trunk/moderate/readme.txt
   plugins/trunk/secret/readme.txt
   plugins/trunk/textparser/readme.txt
   plugins/trunk/validatetrackback/readme.txt
Modified:
   plugins/trunk/authimage/readme.txt
   plugins/trunk/blogtimes/readme.txt
   plugins/trunk/contentfilter/plugincontentfilter.class.php
   plugins/trunk/dropcase/readme.txt
   plugins/trunk/feedreader/pluginfeedreader.class.php
   plugins/trunk/nofollow/readme.txt
   plugins/trunk/smileys/readme.txt
Log:
Update plugins readme.txt with right description.

Modified: plugins/trunk/authimage/readme.txt
===================================================================
--- plugins/trunk/authimage/readme.txt	2005-02-25 04:11:50 UTC (rev 1205)
+++ plugins/trunk/authimage/readme.txt	2005-02-25 06:45:26 UTC (rev 1206)
@@ -1,5 +1,6 @@
 Plugin: AuthImage
 Author: Mark Wu
+Idea From: Gudlyf
 Release Date: 2005/02/15
 Version: 1.0
 
@@ -9,7 +10,7 @@
 1. $authimage->isEnabled() to check the plugin is enabled or not. 
 2. $authimage->show() to get the authentication image.
 
-Example:
+Install:
 Add the following code to commentform.template:
 {if $authimage->isEnabled()}
 <div><label for="authImage">AuthImage</label><input type="text" name="authImage" id="authImage" value="" />&nbsp;{$authimage->show()}</div>

Modified: plugins/trunk/blogtimes/readme.txt
===================================================================
--- plugins/trunk/blogtimes/readme.txt	2005-02-25 04:11:50 UTC (rev 1205)
+++ plugins/trunk/blogtimes/readme.txt	2005-02-25 06:45:26 UTC (rev 1206)
@@ -10,7 +10,7 @@
 1. $blogtimes->isEnabled() to check the plugin is enabled or not. 
 2. $blogtimes->show() to get the blog times image. 
 
-Example:
+Install:
 Add the following code to bottom of main.template:
 {if !empty($blogtimes)}
 {if $blogtimes->isEnabled()}

Modified: plugins/trunk/contentfilter/plugincontentfilter.class.php
===================================================================
--- plugins/trunk/contentfilter/plugincontentfilter.class.php	2005-02-25 04:11:50 UTC (rev 1205)
+++ plugins/trunk/contentfilter/plugincontentfilter.class.php	2005-02-25 06:45:26 UTC (rev 1206)
@@ -25,7 +25,7 @@
 			$this->PluginBase();
 			
 			$this->id = "contentfilter";
-			$this->description = "A simple content filter.";
+			$this->description = "This plugin offers you to filter specific content when comment submitted.";
 			$this->author = "The pLog Team";
 			$this->locales = Array( "en_UK", "zh_TW" );
 			

Added: plugins/trunk/contentfilter/readme.txt
===================================================================
--- plugins/trunk/contentfilter/readme.txt	2005-02-25 04:11:50 UTC (rev 1205)
+++ plugins/trunk/contentfilter/readme.txt	2005-02-25 06:45:26 UTC (rev 1206)
@@ -0,0 +1,9 @@
+Plugin: Content Filter
+Author: pLog Team
+Release Date: 2005/01/23
+Version: 1.0
+
+This plugin offers you to filter specific content when comment submitted.
+
+Install:
+1. Configurate your Content Filter plugin in your pLog control center
\ No newline at end of file

Added: plugins/trunk/dnsantispam/readme.txt
===================================================================
--- plugins/trunk/dnsantispam/readme.txt	2005-02-25 04:11:50 UTC (rev 1205)
+++ plugins/trunk/dnsantispam/readme.txt	2005-02-25 06:45:26 UTC (rev 1206)
@@ -0,0 +1,9 @@
+Plugin: DNS Anti Spam
+Author: Mark Wu
+Release Date: 2005/01/23
+Version: 1.0
+
+Check if a comment poster is on an open proxy list, and check if the content contains known spammer domains.
+
+Install:
+1. Configurate your DNS Anti Spam plugin in your pLog control center
\ No newline at end of file

Modified: plugins/trunk/dropcase/readme.txt
===================================================================
--- plugins/trunk/dropcase/readme.txt	2005-02-25 04:11:50 UTC (rev 1205)
+++ plugins/trunk/dropcase/readme.txt	2005-02-25 06:45:26 UTC (rev 1206)
@@ -6,13 +6,13 @@
 Drop case letter (a huge letter) for the first letter of every post. 
 
 Install:
-Add the following CSS Style to your css file.
+Add the following CSS Style to your template css file.
 #drop-case:first-letter { 
     font-size : 200%;
     font-weight : bold;
     float : left;
-	margin-top:0px;
-	margin-left:0px;
+    margin-top:0px;
+    margin-left:0px;
     margin-right: 3px;
     margin-bottom: 3px;
     padding: 2px;

Modified: plugins/trunk/feedreader/pluginfeedreader.class.php
===================================================================
--- plugins/trunk/feedreader/pluginfeedreader.class.php	2005-02-25 04:11:50 UTC (rev 1205)
+++ plugins/trunk/feedreader/pluginfeedreader.class.php	2005-02-25 06:45:26 UTC (rev 1206)
@@ -4,8 +4,6 @@
 	
 	class PluginFeedReader extends PluginBase 
 	{
-	    var $pluginEnabled;
-	    
 		function PluginFeedReader()
 		{
 			$this->PluginBase();
@@ -27,17 +25,5 @@
 								 true, 
 								 false );
 		}
-
-		function register()
-		{
-		    $blogSettings = $this->blogInfo->getSettings();
-		    $this->pluginEnabled = $blogSettings->getValue( "plugin_toptrackbackposts_enabled" );
-	        $this->maxPosts = $blogSettings->getValue( "plugin_toptrackbackposts_maxposts" );
-	    }
-	    
-	    function isEnabled()
-	    {
-	        return $this->pluginEnabled;
-	    }		
 	}
 ?>
\ No newline at end of file

Added: plugins/trunk/feedreader/readme.txt
===================================================================
--- plugins/trunk/feedreader/readme.txt	2005-02-25 04:11:50 UTC (rev 1205)
+++ plugins/trunk/feedreader/readme.txt	2005-02-25 06:45:26 UTC (rev 1206)
@@ -0,0 +1,6 @@
+Plugin: Feed Reader
+Author: pLog Team
+Release Date: 2005/02/13
+Version: 1.0
+
+RSS/Atom feed reader integrated into pLog's admin interface
\ No newline at end of file

Added: plugins/trunk/hostblock/readme.txt
===================================================================
--- plugins/trunk/hostblock/readme.txt	2005-02-25 04:11:50 UTC (rev 1205)
+++ plugins/trunk/hostblock/readme.txt	2005-02-25 06:45:26 UTC (rev 1206)
@@ -0,0 +1,9 @@
+Plugin: Host Block
+Author: pLog Team
+Release Date: 2005/01/23
+Version: 1.0
+
+This plugin offers you to block specific client IP when comment submitted.
+
+Install:
+1. Configurate your Host Block plugin in your pLog control center
\ No newline at end of file

Added: plugins/trunk/karma/readme.txt
===================================================================
--- plugins/trunk/karma/readme.txt	2005-02-25 04:11:50 UTC (rev 1205)
+++ plugins/trunk/karma/readme.txt	2005-02-25 06:45:26 UTC (rev 1206)
@@ -0,0 +1,29 @@
+Plugin: Karma
+Author: pLog Team
+Release Date: 2005/02/25
+Version: 1.0
+
+This plugin offers karma rating for posts.
+
+You can use:
+1. $post->getField("positiveKarma") to get positive karma score
+2. $post->getField("negativeKarma") to get negative karma score
+3. $karma->getPositiveUrl($post) to get positive karma url
+4. $karma->getNegativeUrl($post) to get negative karma url
+
+Install:
+1. Configurate your Host Block plugin in your pLog control center
+2. Modify you post.template with the follow code to get karma link:
+{if !empty($karma)}
+{if $karma->isEnabled()}
+{assign var="positiveKarma" value=$post->getField("positiveKarma")}{if $positiveKarma == ""}{assign var="positiveKarma" value=0}{/if}
+{assign var="negativeKarma" value=$post->getField("negativeKarma")}{if $negativeKarma == ""}{assign var="negativeKarma" value=0}{/if}
+ :: {$locale->tr("karma")} (<a href="{$karma->getPositiveUrl($post)}">+{$positiveKarma}</a>/<a href="{$karma->getNegativeUrl($post)}">-{$negativeKarma}</a>)
+{/if}
+{/if}
+3. Modify your header.template or footer.template to get unmoderated post link:
+{if !empty($karma)}
+{if $karma->isEnabled()}
+<li><a title="{$locale->tr("karma_moderated_down_articles")}" href="{$karma->pluginTemplatePage()}">{$locale->tr("karma_moderated_down_articles")}</a></li>
+{/if}
+{/if} 
\ No newline at end of file

Added: plugins/trunk/moderate/readme.txt
===================================================================
--- plugins/trunk/moderate/readme.txt	2005-02-25 04:11:50 UTC (rev 1205)
+++ plugins/trunk/moderate/readme.txt	2005-02-25 06:45:26 UTC (rev 1206)
@@ -0,0 +1,9 @@
+Plugin: Moderate
+Author: pLog Team
+Release Date: 2005/01/23
+Version: 1.0
+
+This plugin offers you moderate of comments.
+
+Install:
+1. Configurate your Moderate plugin in your pLog control center
\ No newline at end of file

Modified: plugins/trunk/nofollow/readme.txt
===================================================================
--- plugins/trunk/nofollow/readme.txt	2005-02-25 04:11:50 UTC (rev 1205)
+++ plugins/trunk/nofollow/readme.txt	2005-02-25 06:45:26 UTC (rev 1206)
@@ -3,4 +3,5 @@
 Release Date: 2005/01/23
 Version: 1.0
 
-Drop case letter (a huge letter) for the first letter of every post. 
\ No newline at end of file
+Prevents comment spams with 'rel=nofollow'
+

Added: plugins/trunk/secret/readme.txt
===================================================================
--- plugins/trunk/secret/readme.txt	2005-02-25 04:11:50 UTC (rev 1205)
+++ plugins/trunk/secret/readme.txt	2005-02-25 06:45:26 UTC (rev 1206)
@@ -0,0 +1,9 @@
+Plugin: Secret
+Author: pLog Team
+Release Date: 2005/01/23
+Version: 1.0
+
+This plugin offers the password protect to specific articles, unless user provide the right password or they can not see the articles.
+
+Install:
+1. Configurate your Secret plugin in your pLog control center
\ No newline at end of file

Modified: plugins/trunk/smileys/readme.txt
===================================================================
--- plugins/trunk/smileys/readme.txt	2005-02-25 04:11:50 UTC (rev 1205)
+++ plugins/trunk/smileys/readme.txt	2005-02-25 06:45:26 UTC (rev 1206)
@@ -15,6 +15,6 @@
 Example:
 Add the following code to commentForm.template after commentText text area:
 {if $smileys->isEnabled()}
-<script type="text/javascript" src="plugins/smileys/js/smileys/smileys.js"></script>
+<script type="text/javascript" src="{$url->getBaseUrl()}/plugins/smileys/js/smileys/smileys.js"></script>
 <br/><label for="simleysBar"></label>{$smileys->generateSmileysBar()}
 {/if}
\ No newline at end of file

Added: plugins/trunk/textparser/readme.txt
===================================================================
--- plugins/trunk/textparser/readme.txt	2005-02-25 04:11:50 UTC (rev 1205)
+++ plugins/trunk/textparser/readme.txt	2005-02-25 06:45:26 UTC (rev 1206)
@@ -0,0 +1,9 @@
+Plugin: Text Parser
+Author: pLog Team
+Release Date: 2005/01/23
+Version: 1.0
+
+A plugin that allows users to use wiki markup in their posts.
+
+Install:
+1. Configurate your Text Parser plugin in your pLog control center
\ No newline at end of file

Added: plugins/trunk/validatetrackback/readme.txt
===================================================================
--- plugins/trunk/validatetrackback/readme.txt	2005-02-25 04:11:50 UTC (rev 1205)
+++ plugins/trunk/validatetrackback/readme.txt	2005-02-25 06:45:26 UTC (rev 1206)
@@ -0,0 +1,9 @@
+Plugin: Validate Trackback
+Author: pwestbro
+Release Date: 2005/02/23
+Version: 1.0
+
+Provides validation of trackbacks.
+
+Install:
+1. Configurate your Validate Trackback plugin in your pLog control center
\ No newline at end of file




More information about the pLog-svn mailing list