<?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"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
> <channel><title>http://www.hilbring.de &#187; Plugin</title> <atom:link href="http://www.hilbring.de/tag/plugin/feed/" rel="self" type="application/rss+xml" /><link>http://www.hilbring.de</link> <description>Hilbrings-Weblog</description> <lastBuildDate>Fri, 16 Dec 2011 08:57:08 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>WordPress Plugin: googleCards Patch 20110830</title><link>http://www.hilbring.de/2011/08/30/wordpress-plugin-googlecards-patch-20110830/</link> <comments>http://www.hilbring.de/2011/08/30/wordpress-plugin-googlecards-patch-20110830/#comments</comments> <pubDate>Tue, 30 Aug 2011 12:13:53 +0000</pubDate> <dc:creator>Peter Hilbring</dc:creator> <category><![CDATA[Computer]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[GooglePlus]]></category> <category><![CDATA[Patch]]></category> <category><![CDATA[Plugin]]></category> <guid
isPermaLink="false">http://www.hilbring.de/?p=2016</guid> <description><![CDATA[Hier ist die n&#228;chste Patchrunde (Stand 30.08.2011): In der Datei „googleCardClass.php“ m&#252;ssen wieder die beiden Regular Expressions zur Ermittlung des Z&#228;hlers und der Profilbild-URL angepasst werden. Au&#223;erdem darf nicht vergessen werden die Datei „wp-content/cache/plus_cards.txt“ zu entfernen.]]></description> <content:encoded><![CDATA[<div
class='wb_fb_top'><div
style="float:right;"></div></div><p>Hier ist die n&#228;chste Patchrunde (Stand 30.08.2011):</p><pre class="brush: diff; title: ; notranslate">--- googleCardClass.php.orig    2011-08-30 14:01:28.000000000 +0200
+++ googleCardClass.php 2011-08-30 14:02:49.000000000 +0200
@@ -124,7 +124,7 @@
        protected function parseHtml()
        {
                // parse the html to look for the h4 'have X in circles' element
-               preg_match('/&lt;h4 class=&quot;nPQ0Mb pD8zNd&quot;&gt;(.*?)&lt;\/h4&gt;/s', $this-&gt;html, $matches);
+               preg_match('/&lt;h4 class=&quot;Pv rla&quot;&gt;(.*?)&lt;\/h4&gt;/s', $this-&gt;html, $matches);
                if (isset($matches) &amp;&amp; !empty($matches))
                {
                        $count = $matches[1];
@@ -140,7 +140,7 @@
                $name = $matches[1];
                // parse the html for the img div
-               preg_match('/&lt;div class=&quot;DzkbSc&quot;&gt;(.*?)&lt;\/div&gt;/s', $this-&gt;html, $matches);
+               preg_match('/&lt;div class=&quot;c-i-Ra-L CK Xu&quot;&gt;(.*?)&lt;\/div&gt;/s', $this-&gt;html, $matches);
                $img_div = $matches[1];
                // parse the img div for the image src
</pre><p>In der Datei „googleCardClass.php“ m&#252;ssen wieder die beiden Regular Expressions zur Ermittlung des Z&#228;hlers und der Profilbild-URL angepasst werden.</p><p>Au&#223;erdem darf nicht vergessen werden die Datei „wp-content/cache/plus_cards.txt“ zu entfernen.</p> ]]></content:encoded> <wfw:commentRss>http://www.hilbring.de/2011/08/30/wordpress-plugin-googlecards-patch-20110830/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>WordPress Plugin: googleCards Modifikation</title><link>http://www.hilbring.de/2011/08/27/wordpress-plugin-googlecards-modifikation/</link> <comments>http://www.hilbring.de/2011/08/27/wordpress-plugin-googlecards-modifikation/#comments</comments> <pubDate>Sat, 27 Aug 2011 14:59:11 +0000</pubDate> <dc:creator>Peter Hilbring</dc:creator> <category><![CDATA[Computer]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[GooglePlus]]></category> <category><![CDATA[Patch]]></category> <category><![CDATA[Plugin]]></category> <guid
isPermaLink="false">http://www.hilbring.de/?p=2005</guid> <description><![CDATA[F&#252;r mein Blog benutze ich das googleCards Plugin von Majubo. Leider &#228;ndert Goggle im Moment alle paar Tage  die Bezeichnung der CSS Klassen, sodass das Plugin jedes Mal angepasst werden muss. Ich habe die Regular Expressions zum Suchen des Profilbildes und des „In X people&#8217;s circles“ Elements so angepasst das die GoogleCard mit den &#196;nderungen [...]]]></description> <content:encoded><![CDATA[<div
class='wb_fb_top'><div
style="float:right;"></div></div><p>F&#252;r mein Blog benutze ich das <a
title="googleCards Autor Homepage" href="http://plusdevs.com/google-wordpress-plugin/" rel="external">googleCards</a> Plugin von <a
href="https://profiles.wordpress.org/users/mabujo/" rel="external">Majubo</a>.</p><p>Leider &#228;ndert Goggle im Moment alle paar Tage  die Bezeichnung der CSS Klassen, sodass das Plugin jedes Mal angepasst werden muss. Ich habe die Regular Expressions zum Suchen des Profilbildes und des „In X people&#8217;s circles“ Elements so angepasst das die GoogleCard mit den &#196;nderungen vom 27.08.2011 wieder korrekt angezeigt wird. Zus&#228;tzlich habe ich einen Patch f&#252;r das PHP-cURL Dualstackproblem hinzugef&#252;gt.</p><pre class="brush: diff; title: ; notranslate">--- googleCardClass.php.orig	2011-08-04 16:07:22.000000000 +0200
+++ googleCardClass.php	2011-08-27 16:34:51.000000000 +0200
@@ -5,6 +5,10 @@
 *	http://plusdevs.com
 *	http://plusdevs.com/googlecard-googleplus-php-scraper/
 *
+*	Modified to match google+ classes from 2011/08/27 (see lines 128, 144)
+*	Added cURL IPv4 Patch (see line 170)
+*	Peter Hilbring
+*
 *	This program is free software: you can redistribute it and/or modify
 *	it under the terms of the GNU General Public License as published by
 *	the Free Software Foundation, either version 3 of the License, or
@@ -121,8 +125,7 @@
 	protected function parseHtml()
 	{
 		// parse the html to look for the h4 'have X in circles' element
-		preg_match('/&lt;/pre&gt;
&lt;h4 class=&quot;a-b-Fa-ug&quot;&gt;(.*?)/s', $this-&gt;html, $matches);
-
+ preg_match('/&lt;/h4&gt;
&lt;h4 class=&quot;nPQ0Mb pD8zNd&quot;&gt;(.*?)/s', $this-&gt;html, $matches);
 if (isset($matches) &amp;&amp; !empty($matches))
 {
 $count = $matches[1];
@@ -138,12 +141,12 @@
 $name = $matches[1];
 // parse the html for the img div
- preg_match('/&lt;/h4&gt;
&lt;div class=&quot;a-R-Z-z-M&quot;&gt;(.*?)/s', $this-&gt;html, $matches);
+ preg_match('/
&lt;div class=&quot;DzkbSc&quot;&gt;(.*?)/s', $this-&gt;html, $matches);
 $img_div = $matches[1];
 // parse the img div for the image src
 preg_match('/&lt; *img[^&gt;]*src *= *[&quot;\']?([^&quot;\']*)/i', $img_div, $matches);
- $img = 'http:' . $matches[1];
+ $img = 'https:' . $matches[1];
 // put the data in an array
 $return = array('id' =&gt; $this-&gt;user_id, 'count' =&gt; $circles, 'name' =&gt; $name, 'img' =&gt; $img, 'url' =&gt; $this-&gt;url);
@@ -164,6 +167,7 @@
 curl_setopt($this-&gt;curl, CURLOPT_FOLLOWLOCATION, true);
 curl_setopt($this-&gt;curl, CURLOPT_SSL_VERIFYPEER, false);
 curl_setopt($this-&gt;curl, CURLOPT_SSL_VERIFYHOST, false);
+ curl_setopt($this-&gt;curl, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
 // execute the call to google+
 $this-&gt;html = curl_exec($this-&gt;curl);
+?&gt;
</pre><p>Zur Inbetriebnahme reicht es aus die Datei „googleCardClass.php“ einfach in das Verzeichnis „wp-content/plugins/googlecards/“ zu kopieren und die vorhandene Datei zu &#252;berschreiben. Die eventuell vorhandene Datei „wp-content/cache/plus_cards.txt“ muss auf jeden Fall gel&#246;scht werden.<br
/><div
class="attachments"><h2>Downloads</h2><dl
class="attachments attachments-large"><dt
class="icon"><a
title="googleCard Modifications" href="?aid=2009&amp;sa=1"><img
src="http://www.hilbring.de/wp-content/plugins/eg-attachments/img/flags/zip.png" width="48" height="48" alt="googleCard Modifications" /></a></dt><dd
class="caption"><strong>Titel</strong> : <a
title="googleCard Modifications" href="?aid=2009&amp;sa=1">googleCard Modifications</a><br
/><strong>Beschriftung</strong> : Klassendatei und Patch<br
/><strong>Dateiname</strong> : googleCard-modifications.zip<br
/><strong>Size</strong> : 4 kB</dd></dl></div></p> ]]></content:encoded> <wfw:commentRss>http://www.hilbring.de/2011/08/27/wordpress-plugin-googlecards-modifikation/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>WordPress Plugin: jRSS Widget</title><link>http://www.hilbring.de/2010/02/05/wordpress-plugin-jrss-widget/</link> <comments>http://www.hilbring.de/2010/02/05/wordpress-plugin-jrss-widget/#comments</comments> <pubDate>Fri, 05 Feb 2010 20:38:03 +0000</pubDate> <dc:creator>Peter Hilbring</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[Plugin]]></category> <category><![CDATA[Tool]]></category> <guid
isPermaLink="false">http://www.hilbring.de/?p=372</guid> <description><![CDATA[Dies ist die Homepage des WordPress Plugins jRSS Widget. jRSS Widget ist ein jQuery basierender RSS-Aggregator. Es unterst&#252;tzt die Formate Atom RSS 0.91 RSS 0.92 RSS 1.0 RSS 2.0 Als Parser benutze ich jFeed, ein JavaScript jQuery RSS/ATOM feed parser plugin, von Jean-Fran&#231;ois Hovinne. Changelog: 1.0 Erste ver&#246;ffentlichte Version 1.1 Checkbox zeigt korrekten Status an [...]]]></description> <content:encoded><![CDATA[<div
class='wb_fb_top'><div
style="float:right;"></div></div><div>Dies ist die Homepage des WordPress Plugins <span
style="background: none repeat scroll 0% 0% rgb(221, 221, 221); font-family: georgia,palatino;">jRSS Widget</span>.</div><div
style="margin-top: 1ex;"><p><span
style="background: none repeat scroll 0% 0% rgb(221, 221, 221); font-family: georgia,palatino;">jRSS Widget</span> ist ein jQuery basierender RSS-Aggregator. Es unterst&uuml;tzt die Formate</p><ul><li>Atom</li><li>RSS 0.91</li><li>RSS 0.92</li><li>RSS 1.0</li><li>RSS 2.0</li></ul><p>Als Parser benutze ich <a
href="http://www.hovinne.com/blog/index.php/2007/07/15/132-jfeed-jquery-rss-atom-feed-parser-plugin" rel="external" title="jFeed Projektseite">jFeed</a>, ein<cite
title="jFeed: JavaScript jQuery RSS/ATOM feed parser plugin">JavaScript jQuery RSS/ATOM feed parser plugin</cite>, von <a
href="http://www.hovinne.com/blog/" rel="external" title="Homepage von Jean-François Hovinne">Jean-Fran&ccedil;ois Hovinne</a>. <span
id="more-372"></span></p></div><div
class="boxcaption"><h3>Changelog:</h3></div><table
border="0"><tbody><tr><td><strong>1.0</strong></td><td>Erste ver&ouml;ffentlichte Version</td></tr><tr><td><strong>1.1</strong></td><td>Checkbox zeigt korrekten Status an</td></tr><tr><td><strong>1.1.1</strong></td><td>RSS Feed des eigenen Blogs als Standard</td></tr><tr><td><strong>1.2</strong></td><td>Local File Inclusion Schwachstelle in proxy.php behoben</td></tr></tbody></table><div
class="boxcaption"><h3>Download:</h3></div><p>Die offizielle Plugin Download Seite findet sich im <a
href="http://wordpress.org/extend/plugins/jrss-widget/" rel="external" title="Offizielle Download Seite f&#252;r &quot;jRSS Widget&quot;">WordPress Plugin Archiv</a>.</p><div
class="boxcaption"><h3 id="donate_jrss_widget">Spenden:</h3></div><div>Wenn euch das Plugin gef&auml;llt w&uuml;rde ich mich &uuml;ber eine kleine Anerkennung freuen.</div><p>[paypal-donation purpose=&quot;jRSS Widget&quot; reference=&quot;WordPress Plugin&quot;]</p><div
class="boxcaption"><h3>Bewerten:</h3></div><p>[ratings]</p> ]]></content:encoded> <wfw:commentRss>http://www.hilbring.de/2010/02/05/wordpress-plugin-jrss-widget/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>WordPress Plugin: Simple Move Comments</title><link>http://www.hilbring.de/2009/09/13/wordpress-plugin-simple-move-comments/</link> <comments>http://www.hilbring.de/2009/09/13/wordpress-plugin-simple-move-comments/#comments</comments> <pubDate>Sun, 13 Sep 2009 07:23:12 +0000</pubDate> <dc:creator>Peter Hilbring</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[Plugin]]></category> <category><![CDATA[Tool]]></category> <guid
isPermaLink="false">http://www.hilbring.de/?p=318</guid> <description><![CDATA[Dies ist die Homepage des WordPress Plugins Simple Move Comments. Simple Move Comments erlaubt das einfache Verschieben von Kommentaren von einem Beitrag / einer Seite zu einem anderen Beitrag / einer anderen Seite. Dazu werden die Quelle und das Ziel in zwei Listen ausgew&#228;hlt und dann alle angeh&#228;ngten Kommentare durch Dr&#252;cken des Verschiebe Kommentare Knopfes [...]]]></description> <content:encoded><![CDATA[<div
class='wb_fb_top'><div
style="float:right;"></div></div><p>Dies ist die Homepage des WordPress Plugins <span
style="background: #DDDDDD; font-family: georgia,palatino;">Simple Move Comments</span>.</p><p><span
style="background: #DDDDDD; font-family: georgia,palatino;"><a
class="thickbox" href="http://www.hilbring.de/wp-content/uploads/2009/09/simple-move-comments-01.png"><img
class="alignright" title="Das Adminpanel von Simple Move Comments" src="http://www.hilbring.de/wp-content/uploads/2009/09/simple-move-comments-01.png" alt="" width="175" height="101" /></a>Simple Move Comments</span> erlaubt das einfache Verschieben von Kommentaren von einem Beitrag / einer Seite zu einem anderen Beitrag / einer anderen Seite.<br
/> Dazu werden die Quelle und das Ziel in zwei Listen ausgew&#228;hlt und dann alle angeh&#228;ngten Kommentare durch Dr&#252;cken des <em>Verschiebe Kommentare</em> Knopfes verschoben.</p><p>Als Neuerung ist es m&#246;glich die Kommentare nach Autor oder Teil des Titels zu filtern und dabei alphabetisch oder nach Erstellungsdatum zu sortieren. <span
id="more-318"></span></p><div
class="boxcaption"><h3>Changelog:</h3></div><table
border="0"><tbody><tr><td><strong>1.1</strong></td><td>Filter und Sortierm&#246;glichkeit hinzugef&#252;gt</td></tr><tr><td><strong>1.0</strong></td><td>Erste ver&#246;ffentlichte Version</td></tr></tbody></table><div
class="boxcaption"><h3>Download:</h3></div><p>Die offizielle Plugin Download Seite findet sich im <a
title="Offizielle Download Seite f&#252;r &quot;Simple Move Comments&quot;" href="http://wordpress.org/extend/plugins/simple-move-comments/" rel="external">WordPress Plugin Archiv</a>.</p><div
class="boxcaption"><h3 id="donate_simple_move_comments">Spenden:</h3></div><div>Wenn euch das Plugin gef&#228;llt w&#252;rde ich mich &#252;ber eine kleine Anerkennung freuen.</div><p>[paypal-donation purpose="Simple Move Comments" reference="WordPress Plugin"]</p><div
class="boxcaption"><h3>Bewerten:</h3></div><p>[ratings]</p> ]]></content:encoded> <wfw:commentRss>http://www.hilbring.de/2009/09/13/wordpress-plugin-simple-move-comments/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>WordPress Plugin: Post Views Summary</title><link>http://www.hilbring.de/2009/09/04/wp-postviews-dashboard/</link> <comments>http://www.hilbring.de/2009/09/04/wp-postviews-dashboard/#comments</comments> <pubDate>Fri, 04 Sep 2009 09:25:02 +0000</pubDate> <dc:creator>Peter Hilbring</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[Dashboard]]></category> <category><![CDATA[Plugin]]></category> <category><![CDATA[wp-postviews]]></category> <guid
isPermaLink="false">http://www.hilbring.de/?p=294</guid> <description><![CDATA[Dies ist die Homepage meines ersten WordPress Plugins, Post Views Summary. Es handelt sich dabei um ein Dashboard Widget f&#252;r das WP-PostViews Plugin. Post Views Summary stellt die am meisten und am wenigsten gelesenen Beitr&#228;ge und Seiten in einem frei positionierbaren Dashboard Widget dar. Die Ausgabe ist dabei konfigurierbar. Folgende Optionen stehen zur Verf&#252;gung: Ausgabe [...]]]></description> <content:encoded><![CDATA[<div
class='wb_fb_top'><div
style="float:right;"></div></div><p>Dies ist die Homepage meines ersten WordPress Plugins, <span
style="background: #DDDDDD; font-family: georgia,palatino;">Post Views Summary</span>.</p><p>Es handelt sich dabei um ein Dashboard Widget f&#252;r das WP-PostViews Plugin.</p><p><span
style="background: #DDDDDD; font-family: georgia,palatino;"><a
class="thickbox" href="http://www.hilbring.de/wp-content/uploads/2009/09/control-panel1.png"><img
class="alignright" title="Das Kontrolpanel von Post Views Summary" src="http://www.hilbring.de/wp-content/uploads/2009/09/control-panel1.png" alt="" width="173" height="110" /></a>Post Views Summary</span> stellt die am meisten und am wenigsten gelesenen Beitr&#228;ge und Seiten in einem frei positionierbaren Dashboard Widget dar. Die Ausgabe ist dabei konfigurierbar. <span
id="more-294"></span>Folgende Optionen stehen zur Verf&#252;gung:</p><ul><li>Ausgabe auf Beitr&#228;ge, Seiten oder beides begrenzen</li><li>Die maximale Anzahl anzuzeigender Treffer ausw&#228;hlen</li><li>Sortierung zwischen den am h&#228;ufigsten und den am seltensten gelesenen Artikeln</li><li>Die Ausgabe auf einzelne Schlagworte oder Kategorien begrenzen</li></ul><div
class="boxcaption"><h3>Changelog:</h3></div><table
border="0"><tbody><tr><td><strong>1.1.3</strong></td><td>&#220;bersetzung in Wei&#223;russisch von <a
rel="external" href="http://www.fatcow.com/">FatCow</a></td></tr><tr><td><strong>1.1.2</strong></td><td>&#220;bersetzung in Spanisch von Juan Llamosas</td></tr><tr><td><strong>1.1.1</strong></td><td>Russische &#220;bersetzung durch Flector upgedated</td></tr><tr><td><strong>1.1</strong></td><td>Konfigurationspanel hinzugef&#252;gt</td></tr><tr><td></td><td>Komplettes Redesign</td></tr><tr><td><strong>1.0.1</strong></td><td>&#220;bersetzung in Brasilianisch von <a
rel="external" href="http://www.dering.com.br/">DERING DESIGN Desenvolvimento &#8211; Hospedagem</a> (Rafael Dering)</td></tr><tr><td></td><td>&#220;bersetzung in Russisch von <a
rel="external" title="Flector" href="http://www.wordpressplugins.ru/">Flector</a></td></tr><tr><td><strong>1.0</strong></td><td>Erste ver&#246;ffentlichte Version</td></tr></tbody></table><div
class="boxcaption"><h3>Berichte &#252;ber <span
style="background: #DDDDDD; font-family: georgia,palatino;">Post Views Summary</span></h3></div><ul><li><a
rel="external" href="http://www.foinoticia.com.br/2009/09/05/wp-post-views-sumary-traduzido/">DERING DESIGN Desenvolvimento &#8211; Hospedagem</a></li><li><a
rel="external" href="http://www.wordpressplugins.ru/misc/post-views-summary.html">WordPressPlugins.ru</a></li><li>&#8230; weitere stehen bei den <a
title="Trackbacks" href="http://www.hilbring.de/2009/09/04/wp-postviews-dashboard/#comments">Trackbacks</a> &#8230;</li></ul><div
class="boxcaption"><h3>Download:</h3></div><p>Die offizielle Plugin Download Seite findet sich im <a
title="Offizielle Download Seite f&#252;r &quot;Post Views Summary&quot;" rel="external" href="http://wordpress.org/extend/plugins/post-views-summary/">WordPress Plugin Archiv</a>.</p><div
class="boxcaption"><h3 id="donate_post_views_summary">Spenden:</h3></div><div>Wenn euch das Plugin gef&#228;llt w&#252;rde ich mich &#252;ber eine kleine Anerkennung freuen.</div><p>[paypal-donation purpose="Post Views Summary" reference="WordPress Plugin"]</p><div
class="boxcaption"><h3>Bewerten:</h3></div><p>[ratings]</p> ]]></content:encoded> <wfw:commentRss>http://www.hilbring.de/2009/09/04/wp-postviews-dashboard/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> </channel> </rss>
<!-- Served from: www.hilbring.de @ 2012-02-06 14:44:50 by W3 Total Cache -->
