<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Plugins for your sites &#187; &#187; Google</title>
	<atom:link href="http://plugins.net.ru/category/google/feed" rel="self" type="application/rss+xml" />
	<link>http://plugins.net.ru</link>
	<description>WordPress,drupal,joomla...all the useful plugins.</description>
	<pubDate>Thu, 13 Mar 2008 04:00:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Google Code Prettify for wordpress</title>
		<link>http://plugins.net.ru/google/google-code-prettify-for-wordpress.html</link>
		<comments>http://plugins.net.ru/google/google-code-prettify-for-wordpress.html#comments</comments>
		<pubDate>Sun, 27 May 2007 15:47:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Google]]></category>

		<category><![CDATA[editor]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[plugins]]></category>

		<category><![CDATA[wordpress]]></category>

		<category><![CDATA[wp-plugins]]></category>

		<guid isPermaLink="false">http://plugins.net.ru/editor/google-code-prettify-for-wordpress.html</guid>
		<description><![CDATA[ Full Name: Google Code Prettify for wordpress
Plugin Version: 1.0
For WP:2.0+
Copyright: GPL
 Introduction:this plugin using google-code-prettify to highlight source code in your posts.
Author：Dean Lee
Author Location:China
Plugin Page：Go to
Download：[download#2]
 Language：English, more or add your languages.
Notice: you will need to have JavaScript enabled in your browser for this to work.
I had developed another Source Code syntax highlighting plugin [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Full Name</strong>: Google Code Prettify for wordpress<br />
<strong>Plugin Version</strong>: <a href="http://cnwper.cn/about/#plugins_version" target="_blank">1.0</a><br />
<strong>For WP</strong>:<a href="http://cnwper.cn/about/#wordpress_version" target="_blank">2.0+<br />
</a><strong>Copyright</strong>: <a href="http://cnwper.cn/about/#copyright" target="_blank">GPL</a><br />
<strong> Introduction</strong>:this plugin using <a href="http://code.google.com/p/google-code-prettify/" target="_blank">google-code-prettify</a> to highlight source code in your posts.<br />
<strong>Author</strong>：<a href="http://cnwper.cn/about/authors/#deanlee" target="_blank">Dean Lee</a><br />
<strong>Author Location</strong>:<a href="http://cnwper.cn/about" target="_blank"><strong>China</strong></a><br />
<strong>Plugin Page</strong>：<a href="http://www.deanlee.cn/wordpress/google-code-prettify-for-wordpress/" target="_blank">Go to</a><br />
<strong>Download</strong>：[download#2]<br />
<strong> Language</strong>：<a href="http://cnwper.cn/forums/" target="_blank">English, more or add your languages.</a><br />
<strong>Notice:</strong> you will need to have JavaScript enabled in your browser for this to work.<br />
I had developed another <a href="http://cnwper.cn/plugins/deanlee/source-code-syntax-highlighting-plugin-for-wordpress.html">Source Code syntax highlighting plugin</a> using Geshi before,but they are totally different things.with Geshi,code is parsed on the server side,no javascript is needed.</p>
<p>It’s hard to say which is the better,choose one based on your own needs.<br />
<strong>How To</strong>:<br />
This plugin requires <a href="http://wordpress.org" target="_blank">WordPress</a> v.2.0 or later.</p>
<ol>
<li>unzip and upload the files to your wp-content/plugins/ directory.</li>
<li>Activate the plugin by logging into your WordPress administration panel, going to ‘Plugins’, then clicking the  ‘Activate’  button for  ‘Google Code Prettify’.</li>
<li>Done,enjoy it.</li>
</ol>
<p><strong>Usage</strong></p>
<p>Put code snippets in <coolcode>
<pre class=”prettyprint”>…</pre>
<p></coolcode> or <coolcode><code class=”prettyprint”>…</code></coolcode> and it will automatically be pretty printed.</p>
<p><strong>Example</strong><br />
Bash<br />
<coolcode>#!/bin/bash</p>
<p># Fibonacci numbers<br />
# Writes an infinite series to stdout, one entry per line<br />
function fib() {<br />
  local a=1<br />
  local b=1<br />
  while true ; do<br />
    echo $a<br />
    local tmp=$a<br />
    a=$(( $a + $b ))<br />
    b=$tmp<br />
  done<br />
}</p>
<p># output the 10th element of the series and halt<br />
fib | head -10 | tail -1</coolcode></p>
<p>C<br />
<coolcode>#include </p>
<p>/* the n-th fibonacci number.<br />
 */<br />
unsigned int fib(unsigned int n) {<br />
  unsigned int a = 1, b = 1;<br />
  unsigned int tmp;<br />
  while (–n >= 0) {<br />
    tmp = a;<br />
    a += b;<br />
    b = tmp;<br />
  }<br />
  return a;<br />
}</p>
<p>main() {<br />
  printf(”%u”, fib(10));<br />
}</coolcode></p>
<p><a href="http://google-code-prettify.googlecode.com/svn/trunk/tests/prettify_test.html" target="_blank">More examples</a></p>
<p><strong>FAQ</strong> (from http://code.google.com/p/google-code-prettify/)</p>
<ol>
<li><strong>Which languages does it work for?</strong><br />
The comments in prettify.js are authoritative but the lexer should work on a number of languages including C and friends, Java, Python, Bash, SQL, HTML, XML, CSS, Javascript, and Makefiles. It works passably on Ruby, PHP and Awk and a decent subset of Perl, but, because of commenting conventions, doesn’t work on Smalltalk, Lisp-like, or CAML-like languages.</li>
<li><strong>How do I specify which language my code is in?</strong><br />
There’s no way to tell it which language because would complicate the interface. If it doesn’t guess the language properly, that’s a bug.</li>
<li><strong>Which browsers does it work with?</strong><br />
It’s been tested with IE 6, Firefox 1.5 &#038; 2, and Safari 2.0.4. Look at the test page to see if it works in your browser.</li>
</ol>
<h3>Related Posts</h3><ul class="related_post"><li><a href="http://plugins.net.ru/admin/editor/dean%e2%80%99s-fckeditor-for-wordpress-pluginv21.html" title="Dean’s FCKEditor for WordPress plugin(V2.1)">Dean’s FCKEditor for WordPress plugin(V2.1)</a></li><li><a href="http://plugins.net.ru/admin/editor/dean%e2%80%99s-fckeditor-for-wordpress-pluginv14.html" title="Dean’s FCKEditor for WordPress plugin(V1.4)">Dean’s FCKEditor for WordPress plugin(V1.4)</a></li><li><a href="http://plugins.net.ru/seo/googlepr-plugin-for-wordpress.html" title="GooglePR Plugin for wordpress">GooglePR Plugin for wordpress</a></li><li><a href="http://plugins.net.ru/admin/editor/tinymce-plugins-for-wordpress.html" title="TinyMCE Plugins For WordPress">TinyMCE Plugins For WordPress</a></li><li><a href="http://plugins.net.ru/seo/alexarank-plugin-for-wordpress.html" title="AlexaRank Plugin for wordpress">AlexaRank Plugin for wordpress</a></li></ul>
	<p>评论数量(0) | <a href="http://plugins.net.ru/google/google-code-prettify-for-wordpress.html#respond"><strong>Add Comments</strong></a><br/>本文地址：<a href="http://plugins.net.ru/google/google-code-prettify-for-wordpress.html" title="Google Code Prettify for wordpress">http://plugins.net.ru/google/google-code-prettify-for-wordpress.html</a></p>
	<p style="border-top: 1px solid #ccc;padding:8px 20px 0 0;margin:20px 0 0 0;"><small>&copy; <strong>admin</strong> for <a href="http://plugins.net.ru">Plugins for your sites</a>, 2007. Add to <a href="http://del.icio.us/post?url=http://plugins.net.ru/google/google-code-prettify-for-wordpress.html&amp;title=Google Code Prettify for wordpress" target="_blank">del.icio.us</a> | Who's linking ? <a href="http://technorati.com/search/http://plugins.net.ru/google/google-code-prettify-for-wordpress.html" title="Search on Technorati">Technorati</a> <a href="http://www.google.com/blogsearch?q=http://plugins.net.ru/google/google-code-prettify-for-wordpress.html" title="Google Blog Search">Google</a> <a href="http://www.blogpulse.com/search?query=http://plugins.net.ru/google/google-code-prettify-for-wordpress.html" title="BlogPulse">BlogPulse</a>.</small></p>]]></content:encoded>
			<wfw:commentRss>http://plugins.net.ru/google/google-code-prettify-for-wordpress.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>GooglePR Plugin for wordpress</title>
		<link>http://plugins.net.ru/seo/googlepr-plugin-for-wordpress.html</link>
		<comments>http://plugins.net.ru/seo/googlepr-plugin-for-wordpress.html#comments</comments>
		<pubDate>Sun, 27 May 2007 15:43:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Google]]></category>

		<category><![CDATA[SEO]]></category>

		<category><![CDATA[plugins]]></category>

		<category><![CDATA[rank]]></category>

		<category><![CDATA[wordpress]]></category>

		<category><![CDATA[wp-plugins]]></category>

		<guid isPermaLink="false">http://plugins.net.ru/google/googlepr-plugin-for-wordpress.html</guid>
		<description><![CDATA[Full Name:GooglePR
Plugin Version: 1.5
For WP:2.1.+
Copyright: GPL
 Introduction:this plugin allow you add the Google PageRank into your blog.
Author：Andot
Author Location:China
Plugin Page：Go to
 Download：GooglePR(zip)and GooglePR_RPC.zip(if you want your OWN RPC Service)
 Language：english, more or add your languages.
How To:

Download “googlepr” and unzip it.
Upload “googlepr” to the plugins folder of your WordPress installation.like this:cnwper.cn/wp-content/plugins/googlepr
Activate the plugin in your administration panel.
edit [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Full Name</strong>:GooglePR<br />
<strong>Plugin Version</strong>: <a href="http://cnwper.cn/about/#plugins_version" target="_blank">1.5</a><br />
<strong>For WP</strong>:<a href="http://cnwper.cn/about/#wordpress_version" target="_blank">2.1.+<br />
</a><strong>Copyright</strong>: <a href="http://cnwper.cn/about/#copyright" target="_blank">GPL</a><br />
<strong> Introduction</strong>:this plugin allow you add the Google PageRank into your blog.<br />
<strong>Author</strong>：<a href="http://cnwper.cn/about/authors/#andot" target="_blank">Andot</a><br />
<strong>Author Location</strong>:<a href="http://cnwper.cn/about" target="_blank"><strong>China</strong></a><br />
<strong>Plugin Page</strong>：<a href="http://www.coolcode.cn/?p=151" target="_blank">Go to</a><br />
<strong> Download</strong>：<a href="http://cnwper.cn/files/plugins/coolcode/googlepr.zip" target="_blank">GooglePR(zip)</a>and <a href="http://cnwper.cn/files/plugins/coolcode/googlepr_rpc.zip" target="_blank">GooglePR_RPC.zip</a>(if you want your <a href="#GooglePR_RPC">OWN RPC Service</a>)<br />
<strong> Language</strong>：<a href="http://cnwper.cn/forums/" target="_blank">english, more or add your languages.</a><br />
<strong>How To</strong>:</p>
<ol>
<li>Download “<a href="http://cnwper.cn/files/plugins/coolcode/googlepr.zip" target="_blank">googlepr</a>” and unzip it.</li>
<li>Upload “googlepr” to the plugins folder of your WordPress installation.like this:cnwper.cn/wp-content/plugins/googlepr</li>
<li>Activate the plugin in your administration panel.</li>
<li>edit your template file,add the codes below to where you want to show the GooglePR infomatiion.I suggest you use the <a href="http://nybblelabs.org.uk/projects/sidebar-modules/" target="_blank">“Sidebar Modules”</a> and you can creat a php module and show it on the sidebar of your blog.:)</li>
<p><coolcode><?php class_exists('GooglePR') ? GooglePR::bar(): ''; ?></coolcode></p>
<li>If you want your own RPC Service,please download the  <a href="http://cnwper.cn/files/plugins/coolcode/googlepr_rpc.zip" title="GooglePR_RPC" target="_blank" name="GooglePR_RPC">GooglePR_rpc.zip</a>，unzip it and upload it to the plugins folder of your WordPress installation.then edit the URL in “googlepr.js” of “googlepr” folder.</li>
</ol>
<h3>Related Posts</h3><ul class="related_post"><li><a href="http://plugins.net.ru/seo/alexarank-plugin-for-wordpress.html" title="AlexaRank Plugin for wordpress">AlexaRank Plugin for wordpress</a></li><li><a href="http://plugins.net.ru/google/google-code-prettify-for-wordpress.html" title="Google Code Prettify for wordpress">Google Code Prettify for wordpress</a></li><li><a href="http://plugins.net.ru/admin/permalinks/permalinks-migration-plugin-for-wordpress-2.html" title="Permalinks Migration Plugin for wordpress">Permalinks Migration Plugin for wordpress</a></li><li><a href="http://plugins.net.ru/admin/editor/dean%e2%80%99s-fckeditor-for-wordpress-pluginv21.html" title="Dean’s FCKEditor for WordPress plugin(V2.1)">Dean’s FCKEditor for WordPress plugin(V2.1)</a></li><li><a href="http://plugins.net.ru/admin/editor/dean%e2%80%99s-fckeditor-for-wordpress-pluginv14.html" title="Dean’s FCKEditor for WordPress plugin(V1.4)">Dean’s FCKEditor for WordPress plugin(V1.4)</a></li></ul>
	<p>评论数量(0) | <a href="http://plugins.net.ru/seo/googlepr-plugin-for-wordpress.html#respond"><strong>Add Comments</strong></a><br/>本文地址：<a href="http://plugins.net.ru/seo/googlepr-plugin-for-wordpress.html" title="GooglePR Plugin for wordpress">http://plugins.net.ru/seo/googlepr-plugin-for-wordpress.html</a></p>
	<p style="border-top: 1px solid #ccc;padding:8px 20px 0 0;margin:20px 0 0 0;"><small>&copy; <strong>admin</strong> for <a href="http://plugins.net.ru">Plugins for your sites</a>, 2007. Add to <a href="http://del.icio.us/post?url=http://plugins.net.ru/seo/googlepr-plugin-for-wordpress.html&amp;title=GooglePR Plugin for wordpress" target="_blank">del.icio.us</a> | Who's linking ? <a href="http://technorati.com/search/http://plugins.net.ru/seo/googlepr-plugin-for-wordpress.html" title="Search on Technorati">Technorati</a> <a href="http://www.google.com/blogsearch?q=http://plugins.net.ru/seo/googlepr-plugin-for-wordpress.html" title="Google Blog Search">Google</a> <a href="http://www.blogpulse.com/search?query=http://plugins.net.ru/seo/googlepr-plugin-for-wordpress.html" title="BlogPulse">BlogPulse</a>.</small></p>]]></content:encoded>
			<wfw:commentRss>http://plugins.net.ru/seo/googlepr-plugin-for-wordpress.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
