<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.web.wordpress.devel">
    <title>gmane.comp.web.wordpress.devel</title>
    <link>http://blog.gmane.org/gmane.comp.web.wordpress.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44196"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44195"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44194"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44193"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44192"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44191"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44190"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44189"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44188"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44187"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44186"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44185"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44184"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44183"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44182"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44181"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44180"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44179"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44178"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44177"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44196">
    <title>Replace One Plugin With Another</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44196</link>
    <description>&lt;pre&gt;Hi all,

Background:  I have a plugin that I wrote to replace another widget that is
missing features. The problem is that I need to programmatically replace
the widget with the new one. I wrote a function that replaces them that
hooks on the 'admin_init'. I picked that because it runs after the widgets
are loaded. I wanted to be able to use the functions such
as get_settings(), save_settings(), wp_get_sidebars_widgets(),
and wp_set_sidebars_widgets(). I guess I could have done all this before
the widgets were loaded, but I already have it working this way... but 1
problem.

Problem: The widget does not display the form properly on the page load
when the widget switch happens. The widget's ['callback'] property when it
gets set to 'wp_widget_control' returns false with is_callable(). This
makes the widget settings empty. When viewing the other widgets objects
that weren't converted, they have the same properties, but it returns true.
I can't figure out the difference. I'm guessing that my widget's object
isn't initialized properly. I've been looking through the WP source, and I
can't figure out what is wrong. Is there a way to do a new init of a widget
object later?

I know this isn't that big of a problem because on the 2nd page load it all
loads properly because it is now saved in the database. It is just really
bothering me because I can't figure out how to do it. It also is very
confusing to the user because it feels like things broke until they reload
the page.

Any tips or suggestions?

Thanks,
Matt

Here is my code if it helps:

----------------------


    public function convert_widgets() {
        global $wp_registered_widgets, $wp_widget_factory,
$_wp_sidebars_widgets, $sidebar
s_widgets;
        $SF_Obj = $wp_widget_factory-&amp;gt;widgets['SF_Image_Widget'];
 $Simple_Obj = $wp_widget_factory-&amp;gt;widgets['WP_Widget_Simple_Image'];

        $simple_widgets = $Simple_Obj-&amp;gt;get_settings();
        $SF_widgets = $SF_Obj-&amp;gt;get_settings();

        $all_widgets = wp_get_sidebars_widgets();

        $changed = false;
        foreach ( (array) $simple_widgets as $number =&amp;gt; $settings ) {
            $changed = true;
            // setup new settings
            $settings = array_merge($settings, array(
                'url' =&amp;gt; $settings['link']
                ));
            unset($settings['link']);
            if (!empty($settings['new_window'])) {
                $settings['target'] = '_blank';
            }
            unset($settings['new_window']);

            // append new settings
            $SF_widgets[] = $settings;

            // replace sidebar widget array value
            $newNumber = end(array_keys($SF_widgets));
            $newName = 'sf_image_widget-'. $newNumber;
            $oldName = 'simpleimage-'.$number;
            foreach ( $all_widgets as $id =&amp;gt; $sidebar) {
                foreach ( $sidebar as $i =&amp;gt; $name) {
                    if ($oldName == $name)
                        $all_widgets[$id][$i] = $newName;
                }
            }

            // update $wp_registered_widgets
            $SF_Obj-&amp;gt;number = $newNumber;
            $SF_Obj-&amp;gt;id = $newName;
            $widget = array(
                'name' =&amp;gt; $SF_Obj-&amp;gt;name,
                'id' =&amp;gt; $newName,
                'callback' =&amp;gt; array($SF_Obj, 'display_callback'),
                '_callback' =&amp;gt; 'wp_widget_control', // attempt to make new
widgets display form without another refresh
                'params' =&amp;gt; array(array('number' =&amp;gt; $newNumber)),
                'classname' =&amp;gt; $SF_Obj-&amp;gt;widget_options['classname'],
                'description' =&amp;gt; $SF_Obj-&amp;gt;widget_options['description']
            );
            $wp_registered_widgets[$newName] = $widget;
            unset($wp_registered_widgets[$oldName]);

        }
        if (!$changed) return;

//      print_r($wp_registered_widgets);
        // save widgets settings
        $SF_Obj-&amp;gt;save_settings($SF_widgets);
        $Simple_Obj-&amp;gt;save_settings(array());

        // save widget array
        wp_set_sidebars_widgets($all_widgets);
        if (!is_admin()) {
            $_wp_sidebars_widgets = $sidebars_widgets = $all_widgets;
        }

    }
&lt;/pre&gt;</description>
    <dc:creator>Matt Slocum</dc:creator>
    <dc:date>2012-05-25T04:38:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44195">
    <title>fast question - which action or filter to change smthwith uploaded image?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44195</link>
    <description>&lt;pre&gt;hi there,

in my plugin i am using javascript function tb_show() to use standard
wordpress image uplader, as described here:

http://www.webmaster-source.com/2010/01/08/using-the-wordpress-uploader-in-your-plugin-or-theme/

works great. but i want to change something in files uploaded this way
(if you ask what: i want to encode file content using my 'secret'
function).

which hook should i use to do it?

and pro-question: how to recognise in hook action/filter that file
which i attempt to encode if file uploaded via my plugin? i want to
encode only files uploaded in my plugin. if someone will upload
regular attachment to post (ie image inserted into post content) file
shouldn't be encoded


--
(en) regards / (pl) pozdrawiam
Konrad Karpieszuk
http://tradematik.pl wtyczka do WordPressa do tworzenia sklepów dla
klientów z Polski
&lt;/pre&gt;</description>
    <dc:creator>Konrad Karpieszuk</dc:creator>
    <dc:date>2012-05-24T14:09:14</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44194">
    <title>Re: Advanced taxonomy queries</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44194</link>
    <description>&lt;pre&gt;I'm doing something similar for a client site.  This is the function I'm 
using in the theme:

function get_intersected_terms($tax_from, $term_from, $tax_to) {
     global $wpdb;

     $term_from = get_term_by('name', $term_from, $tax_from);

     $query = "
         SELECT term_id FROM {$wpdb-&amp;gt;term_taxonomy} WHERE taxonomy = 
'{$tax_to}' AND term_taxonomy_id IN (
             SELECT term_taxonomy_id FROM {$wpdb-&amp;gt;term_relationships} 
WHERE object_id IN (
                 SELECT object_id FROM {$wpdb-&amp;gt;term_relationships} WHERE 
term_taxonomy_id = {$term_from-&amp;gt;term_taxonomy_id}
             )
         )
     ";

     $term_ids = $wpdb-&amp;gt;get_col($query);

     if (empty($term_ids))
         return array();

     return get_terms($tax_to, array('include' =&amp;gt; $term_ids));
}

In the template file, I'm calling the function like this:

$showlist = get_intersected_terms('seasons', $current_season, 'shows');

$current_season is a theme option in this case.  From here, I'm using a 
foreach loop to walk through the list (which you may or may not need).

Hope this helps.

On 5/23/12 3:19 PM, Enrique Chavez wrote:

&lt;/pre&gt;</description>
    <dc:creator>Keith Solomon</dc:creator>
    <dc:date>2012-05-23T21:06:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44193">
    <title>Advanced taxonomy queries</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44193</link>
    <description>&lt;pre&gt;Hi all,

I have a custom post with 3 taxonomies ( Country, State, City ) I can get
the terms for a single taxonomy using "get_terms( $taxonomy )".

But let's say  that i want to get the terms in the taxonomy "state", but
that the taxonomy 'country' is equal to 'X'

And later search for the cities that the state is equal to Y and country
equal to X.

i have been reading the docs but i can't find something that help me.

Any suggestions?

Best Regards!

--
Enrique Chávez &amp;lt;http://tmeister.net&amp;gt;
Freebies &amp;amp; Updates &amp;lt;http://facebook.com/ecdevelopment&amp;gt;
&amp;lt; at &amp;gt;tmeister &amp;lt;http://twitter.com/tmeister&amp;gt;
&lt;/pre&gt;</description>
    <dc:creator>Enrique Chavez</dc:creator>
    <dc:date>2012-05-23T20:19:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44192">
    <title>Re: Best Backup Plugin</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44192</link>
    <description>&lt;pre&gt;+1 for BackupBuddy and definitely check ManageWP as well - its SaaS (or
PaaS) and could be a great fit for you.

powered by Android

On May 23, 2012 9:13 PM, "Matthew McGarity" &amp;lt;matthew&amp;lt; at &amp;gt;mcgarity.me&amp;gt; wrote:

BackupBuddy meets #1 and #2 hands-down.  It's free-ish -- it's a premium
plugin, and considering how mercurial individual WP installs can be it's
worth paying for the license and support.

MMc...

Matthew McGarity
http://mcgarity.me
(972) 275-9673




On Fri, May 11, 2012 at 10:21 AM, Andrew Gray &amp;lt;andrew&amp;lt; at &amp;gt;graymerica.com&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Mario Peshev</dc:creator>
    <dc:date>2012-05-23T18:15:21</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44191">
    <title>Re: Best Backup Plugin</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44191</link>
    <description>&lt;pre&gt;BackupBuddy meets #1 and #2 hands-down.  It's free-ish -- it's a premium
plugin, and considering how mercurial individual WP installs can be it's
worth paying for the license and support.

MMc...

Matthew McGarity
http://mcgarity.me
(972) 275-9673



On Fri, May 11, 2012 at 10:21 AM, Andrew Gray &amp;lt;andrew&amp;lt; at &amp;gt;graymerica.com&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Matthew McGarity</dc:creator>
    <dc:date>2012-05-23T18:12:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44190">
    <title>Re: ajax and posts</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44190</link>
    <description>&lt;pre&gt;I do this all of the time using the following example as a launching point:

http://codex.wordpress.org/AJAX_in_Plugins

Be sure to include the ajaxurl value in the user-facing page.  The
wp_ajax_nopriv action works great for this.

MMc...

Matthew McGarity
http://mcgarity.me
(972) 275-9673



On Mon, May 21, 2012 at 7:06 AM, Roman Sharf &amp;lt;pencilking2002&amp;lt; at &amp;gt;gmail.com&amp;gt;wrote:

&lt;/pre&gt;</description>
    <dc:creator>Matthew McGarity</dc:creator>
    <dc:date>2012-05-23T18:11:06</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44189">
    <title>Re: ajax and posts</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44189</link>
    <description>&lt;pre&gt;
This plugin may do what you want, or you might At least get some ideas from it:

http://wordpress.org/extend/plugins/bcms/

Two features to be aware of:

+ Wijax allows you to deliver any widget via ajax. You can lazy load the widget or fetch widgets from different sites. It adds a new endpoint to the perms link structure so that you can go to any post  permalink, add /wijax/encoded_name and get widgets relevant for that context. 

+ the post loop widget puts all the power if WP's post loop into a widget. You can get WP's default post for the given URL/permalink, select posts related to the default posts, or select an entirely different set of posts. 

Together, you can deliver a post or set of posts via ajax. 

--Casey Bisson


On May 21, 2012, at 5:06 AM, Roman Sharf &amp;lt;pencilking2002&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Casey Bisson</dc:creator>
    <dc:date>2012-05-21T23:09:21</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44188">
    <title>Re: ajax and posts</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44188</link>
    <description>&lt;pre&gt;There are specific hooks built-in to WordPress for handling ajax requests
whether you're on the front or backside of things. Check out the following
links for some information in to them. The WPSE link may put you on the
right path as it seems to be a working example close to what you're trying
to do.

http://codex.wordpress.org/AJAX
http://wordpress.stackexchange.com/questions/31321/post-will-not-load-via-ajax

On Mon, May 21, 2012 at 8:06 AM, Roman Sharf &amp;lt;pencilking2002&amp;lt; at &amp;gt;gmail.com&amp;gt;wrote:




&lt;/pre&gt;</description>
    <dc:creator>William Satterwhite</dc:creator>
    <dc:date>2012-05-21T12:19:21</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44187">
    <title>ajax and posts</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44187</link>
    <description>&lt;pre&gt;I have been trying to figure this one out for a while, but to no avail.

How can I I retrieve posts via ajax? Specifically, I would like to click a
button on a page, which would send an ajax request to another page which
has a custom loop and get the results back and spit them out. Also, do I
have to load the wordpress environment manually on the page I am requesting
from(So that the loop will work)?

Thank you in advance!

&lt;/pre&gt;</description>
    <dc:creator>Roman Sharf</dc:creator>
    <dc:date>2012-05-21T12:06:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44186">
    <title>Re: getting post counts for multiple tags</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44186</link>
    <description>&lt;pre&gt;I missed the fact you were doing it on the Tag page, so yes, Using
$wp_query-&amp;gt;post_count is the right way to do it (And the last step in
my suggestion:))

On 21 May 2012 14:00, Chris McCoy &amp;lt;chris&amp;lt; at &amp;gt;lod.com&amp;gt; wrote:
&lt;/pre&gt;</description>
    <dc:creator>Dion Hulse (dd32</dc:creator>
    <dc:date>2012-05-21T04:02:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44185">
    <title>Re: getting post counts for multiple tags</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44185</link>
    <description>&lt;pre&gt;Actually I just used $wp_query-&amp;gt;post_count;

Works fine, on the tag.php template

-----Original Message-----
From: wp-hackers-bounces&amp;lt; at &amp;gt;lists.automattic.com
[mailto:wp-hackers-bounces&amp;lt; at &amp;gt;lists.automattic.com] On Behalf Of Dion Hulse
(dd32)
Sent: Sunday, May 20, 2012 8:12 PM
To: wp-hackers&amp;lt; at &amp;gt;lists.automattic.com
Subject: Re: [wp-hackers] getting post counts for multiple tags

In order to do that, you'd have to make a new WP_Query, query for the tag
intersections, probably limit it to 1 post, and look at the total count it
returns. You could save memory/query time by only asking for the ids of the
posts too.
You'd want to store the counts in a cache somehow, a transient would
probably suit best.

Of course, that's just my suggestion without resolving to using custom SQL.

On 21 May 2012 01:14, Chris McCoy &amp;lt;chris&amp;lt; at &amp;gt;lod.com&amp;gt; wrote:
_______________________________________________
wp-hackers mailing list
wp-hackers&amp;lt; at &amp;gt;lists.automattic.com
http://lists.automattic.com/mailman/listinfo/wp-hackers
&lt;/pre&gt;</description>
    <dc:creator>Chris McCoy</dc:creator>
    <dc:date>2012-05-21T04:00:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44184">
    <title>Re: getting post counts for multiple tags</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44184</link>
    <description>&lt;pre&gt;
Dion's right, there's no way to do it without some extra work. This plugin generates tag clouds based on the results of the current search or browse:

http://wordpress.org/extend/plugins/scriblio/

Perhaps that's similar to what you're trying to do?

--Casey

On May 20, 2012, at 5:12 PM, Dion Hulse (dd32) wrote:

&lt;/pre&gt;</description>
    <dc:creator>Casey Bisson</dc:creator>
    <dc:date>2012-05-21T02:32:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44183">
    <title>Re: getting post counts for multiple tags</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44183</link>
    <description>&lt;pre&gt;In order to do that, you'd have to make a new WP_Query, query for the
tag intersections, probably limit it to 1 post, and look at the total
count it returns. You could save memory/query time by only asking for
the ids of the posts too.
You'd want to store the counts in a cache somehow, a transient would
probably suit best.

Of course, that's just my suggestion without resolving to using custom SQL.

On 21 May 2012 01:14, Chris McCoy &amp;lt;chris&amp;lt; at &amp;gt;lod.com&amp;gt; wrote:
&lt;/pre&gt;</description>
    <dc:creator>Dion Hulse (dd32</dc:creator>
    <dc:date>2012-05-21T00:12:07</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44182">
    <title>getting post counts for multiple tags</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44182</link>
    <description>&lt;pre&gt;What would be the best way to go about, finding the amount of posts for
multiple tags.

I will be using it on a tag archive page.

        $tag_count = get_term_by('name', get_query_var('tag'),'post_tag');
        echo $tag_count-&amp;gt;count;

this works fine for one tag, but I want to check via tag1,tag2,tag3 and
tag1+tag2+tag3 how many posts match those
&lt;/pre&gt;</description>
    <dc:creator>Chris McCoy</dc:creator>
    <dc:date>2012-05-20T15:14:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44181">
    <title>Re: Best svn software</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44181</link>
    <description>&lt;pre&gt;Thanks, I will try some apps out there. I just find Tortoise very sluggish 
and a heavy burden for winxp.




----- Original Message ----- 
From: "Baki Goxhaj" &amp;lt;banago&amp;lt; at &amp;gt;gmail.com&amp;gt;
To: &amp;lt;wp-hackers&amp;lt; at &amp;gt;lists.automattic.com&amp;gt;
Sent: Saturday, May 19, 2012 5:22 PM
Subject: Re: [wp-hackers] Best svn software


&lt;/pre&gt;</description>
    <dc:creator>Diana K. C</dc:creator>
    <dc:date>2012-05-19T20:32:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44180">
    <title>Re: Best svn software</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44180</link>
    <description>&lt;pre&gt;Give Git a try.

Kindly,

Baki Goxhaj
www.wplancer.com | proverbhunter.com | www.banago.info&amp;lt;http://proverbhunter.com&amp;gt;


On Wed, May 16, 2012 at 11:29 PM, Brian Layman
&amp;lt;wp-hackers&amp;lt; at &amp;gt;thecodecave.com&amp;gt;wrote:

&lt;/pre&gt;</description>
    <dc:creator>Baki Goxhaj</dc:creator>
    <dc:date>2012-05-19T20:22:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44179">
    <title>Buy, Sell -liberty Reserve, Credit Card -&gt; Debit Card, Wu/mg, Bank Transfer !</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44179</link>
    <description>&lt;pre&gt;
Cvv,fullz,banklogins,dumps+pin,track1/2+pin,bank Transfer,wu 

                   Transfer,shop admin, etc 

I AM BOOKING FLIGHT TICKETS AND I PAY ALL BILLS CONTACT ME FAST FOR 

DEAL 


If you want to have deals with good quality please contact me with 



Contact Info 


yahoo ID: troll.seller 




mail: transfer24h&amp;lt; at &amp;gt;gmail.com


SOFTWARES AT good take away prices 
CC fullz info, CC DOBDomain hosting. 


PRICE LIST ALL CVV CVV2. 
1 US ( visa,master) = 3$/ ( buy &amp;gt; 50 Price $1.2/ 1cvv) 
1 US (Amex,dis) = 5$/ ( buy &amp;gt; 50 price $3 /1cvv) 
1UK = 5$/ ( Buy &amp;gt; 50 price 4$/1cvv) 
1UK CVV with DOB = 15$/CVV ( Buy &amp;gt; 50 CVV Price 12$ = 1CVV) 
1 Ca CVV = 5$/CVV 
1 CA CVV(Amex,dis) = 7$/cvv 
1 EU CVV = 15$/CVV 
1 EU CVV(Amex,dis) = 5$/cvv 
1 US CVV full info = 20$/CVV 
1 UK CVV full info = 40$/CoVV 
Australia (AU) 10.00 $ 
Switzerland (VE) 14.00 $ 
France (FR) 15.00 $ 
Germany (GE) 15.00 $ 
Mexico (MX) 12.00 $ 
New Zealand (NZ) 13.00 $ 
ITALY 15$. And many country orther 


Demo US 
VISA | 4039959177849993 | 08 | 2011 | 104 | Schnell | Collins | 2411 
BROOKDALE DR | ARLINGTON | TX | 76014 | 2145524581 | United States 
MASTER | 5458831003207226 | 10 | 2011 | 938 | Lee Beam | 110 Flint 
Hill Rd. | Cherryville | NC | 28021 | United States 
Also sell SMTP , ORANGE ,MAILER ,SOFTWARES AT good take away prices 


Demo UK 
165430 | 134884 | 2 | 4921817934747226 | 4 | 2008 | 3 | 2010 | | 662 | 
MR ALAN D HOWELLS | 10 | Fairlead Drive | Gosport | PO139UX | | Hants 
01943 468442/si...&amp;lt; at &amp;gt;cambrig.co.uk 
165337 | 134815 | 2 | 4921817809597243 | 3 | 2008 | 2 | 2010 | | 185 | 
peter i hodgson | 10 | chapel close | wesham | PR4 3HB | | lancs 
01436672207/mpdmaxmy...&amp;lt; at &amp;gt;aol.com 


Demo au 
1124:1720176 |7:33PM | HUW AP REES | 5583886596112173| 03 |2011 | 937 
| 10 STUART ST | | LONGUEVILLE NSW | 00 | 2066 | Australia | 
61404058007 
4779:1723315 |7:06AM | william oldjohn| 4601843780060933| 07 |2010| 
325 | 137 Baden Powell Drive | | Mount Eliza | 00 | 3194 | Australia | 
61395855116 


demo FR 
rezig philippe 4978130033603767 122007 685 lieu dit bourrieu 31470 STE 
FOY DE PEYROLIERES FR 
domingo felix 4976650000000426 102008 048 21 impasse du cdt espinadel 


demo japan 
tabita...&amp;lt; at &amp;gt;h9.dion.ne.jp | 4685175895770463 | 07 | 08 | 729 | 
2005-06-05 | 2005-07-05 | 16 | $35.00 | 222.13.57.221/32 | | UEMOTO | 
SHUNSAKU | 3900221 | 1 | | 
k...&amp;lt; at &amp;gt;tcp-ip.or.jp | 4986053198241050 | 06 | 07 | 035 | 2005-06-05 | 
2005-09-03 | 9 | $68.00 | 219.102.11.28/32 | | kusa | toshihiro | 
4760002 | 1 | | 



demo ger 
4489:1878065 | Mar 18 2009 3:20PM | Hanna Held | 4408499000897252| 01 
| 
2013| 649 | Hohenstaufenring 62 | | Cologne | 00 | 50674 | Germany | 
492212775820 
If you want to have deals with good quality please contact me with 



SOFTWARES AT good take away prices 


CC fullz info, CC DOBDomain hosting. 
PRICE LIST ALL CVV CVV2. 
1cc US (visa) : 3$ 
1cc US(master) : 3$ 
1cc US(amex/discover):6$ 
1cc US with bin : 6$ 
1cc US fullz : 18$ 
1cc uk random : 5$ 
1cc uk with dob : 20$ 
1cc uk with bin : 10$ 
1cc uk bin dob : 25$ 
1cc uk fullz : 30$ 
1cc eu(visa /master) : 15$ 
1cc eu(Amex/Discover): 15$ 
1cc ca random : 6$ 
1cc ca bin : 12$ 
1cc ca fulls : 20$ 
1cc au random : 7$ 
1cc france : 15$ 
1cc france with dob : 20$ 
1cc germany : 15$ 
1cc germany with dob : 25$ 
1cc italy : 20$ 
1cc italy with dob : 40$ 
1cc japan : 15$ 
1cc japan with dob : 25$ 
1cc belgium : 12$ 
1cc denmark : 12$ 
1cc spain : 15$ 



1 Paypal with pass email = 80 $ 
1 Paypal don't have pass email = 30 $ 
1 Banklogin us or uk (personel) = 1000$ 

**Prices For Western Union Online
Transfer(Eu,Uk,Asia,Canada,Us,France,Germany,Italy and Nigeria): 
3000$ = 250$ 
2500$ = 200$ 
2000$ = 150$ 
1500$ = 100$ 
1000$ = 70$ 
500 $ = 30$ 
I tranfer minimum 500$ with price 50$ first for u trust 
Western Union Online Software(Western Union Bug(WU Bug) 
Version 2008/2009 With an Activation Code :80$ 
Mailers(Inbox Mailer,Webmail Mailers) :15$ 
Cpannel :25$ 

**BankLogins Prices: 

Balance In Chase : 70K To 155K = 160$ 
Balance In Wachovia : 24K To 80K = 80$ 
Balance In Boa : 75K To 450K = 300$ 
Balance In Credit Union : Any Amount = 300$ 
Balance In Hallifax : ANY AMOUNT = 300$ 
Balance In Compass : ANY AMOUNT = 300$ 
Balance In Wellsfargo : ANY AMOUNT = 300$ 
Balance In Barclays : 80K To 100K = 400$ 
Balance In Abbey : 82K = 700$ 
Balance in Hsbc : 50K = 350$ 




Format is: 
Card Number | Exp. Date | CVV/CVV2 | First Name | Last Name | Street | 
City | State | Zip Code | Country | Phone | Type Of Card | Bank Name | 
All our cc are checked before sending. 
We guarantee that our cc are good with good balances! 
- RULE 1: I never sell the same CC, CVV to more than a person. 
- RULE 2: I don't share CC, CVV for test free. 
- RULE 3: All my CC, CVV always are fresh and live. 
- RULE 4: All my CC, CVVs are checked. 



*USA:101 
MasterCard Standart, Visa Classic - $40 
Visa Gold|Platinum|Corporate|Signature|Business ? $40 
American Express - $30 ( WITHOUT SID ) 
Discover - $50 


*CANADA:101 201 
MasterCard, Visa Classic - $500 
Visa Gold|Platinum|Corporate|Signature|Business ? $50 


*EU:101 201 
MasterCard, Visa Classic - $90 
Visa Gold|Platinum|Corporate|Signature|Business ? $130 
*Other countries:101 201MasterCard| Visa Classic - $70 
Visa Gold|Platinum|Corporate|Signature|Business ? $100 


*ASIA/AUSTRALIA/Exotic:101 , 201 , 121 and others 
MasterCard| Visa Classic - $50 
Visa Gold|Platinum|Corporate|Signature|Business ? $70 

MSR PRICE : 

MSR505 / MSR2000 : $ 549 
MSR505 / MSR300* : $ 499 
MSR505 / TA-48 : $ 639 
MSR206 / MSR3000 : $ 729 
MSR206 / MSR300 : $ 549 
MSR206 2x MSR400 : $ 900 
MSR206 2x MSR500m (Mini123) : $ 875 
MSR206 2x TA-32 : $ 990 
MSR206 2x CRM42 : $ 869 
MSR206 2xCRM41 : $ 929 

Some Bins : 

us bins: 517805,488893,492536,408181,542432,482880,374355,3 74372 
uk bins: 4547,5506,5569,5404,5031,4921,5505,5506,4921,4550 
ger bins: 492942,490762,530127 
aus bins: 543568,450605,494053,450606,456475,521893,519163 
and others bins for others country..... 

I can check balance in cvv, balance will be as good as you expect and price
follow of agreements . 

All my cvv are tested before sell, that's sure. 



please contact me when need buy : 




Contact Info 


yahoo ID: troll.seller 




mail: transfer24h&amp;lt; at &amp;gt;gmail.com

I USE LR ACC ( Payment by Libertyreserve ) AND WU INFO 
# if you buy my stuffs and you enjoy please join forum and post your 
good 
comments :-) 

Uk CVV $20 for one Amex/Disc FULLZ INFO 
Uk CVV $20 for one Master/Visa FULLZ INFO 
Uk with dob $25 for one cw FULLZ INFO 
EU CVV $20 for one Disc/Amex FULLZ INFO 
EU CVV $25 with DOB for one Master/Visa FULLZ INFO 
ARAB CVV $30 Master/Visa FULLZ INFO 
US FULL INFO CC $25 DOB SSN ETCCCCCCCC 
MIX CC ONLY 
UK CC NORMAL $9 WITH DOB $25 Randon with Bin $1 extra fee 

SHIP LAPTOP APPLE = 150$ 
SHIP LAPTOP HP + DELL = 120$ 
SHIP LAPTOP TOSHIBA = 80$ 
SHIP LAPTOP LENOVO = 100$ 
3-5 day have tracking 



==BANK LOGINS WITH FULLZ 
BOA, CITI, CHASE.COM &amp;lt; 
EMAIL+PASS 
FULLS COMPLETE 
BALANCE: $5500 verified 
PRICE: $500 
BOA, CITI, CHASE.COM LOGIN 
EMAIL+PASS 
FULLS COMPLETE 
BALANCE: $25000 verified 
PRICE: $525 
BOA, CITI, CHASE.COM LOGIN 
EMAIL+PASS 
FULLS COMPLETE 
BALANCE: Randon 4k&amp;gt;5k 
PRICE: $250-$300 
FULLS COMPLETE 
BALANCE: $2000 verified 
PRICE: $250 
FULLZ cv2 ..50Lr 
mailer send inbox : 20$ link spam 
Mailer 100,000 mail..50 lr 

VPN = 30$ / 3month 
SMTP = 50$ / 3month 

Transfer WU INFO AND BANK 
Transfer 9000$ = 500lr 
Transfer 1000$ = 100 lr 
Transfer 3000$ = 250 lr. 
15 minis have MTCN and done 
- 
Sample Dump + Pin: 
Track1 : B4096663104697113^FORANTO/CHRI STOPHER 
M^09061012735200521000000 , 
Track2 : 4096663104697113 06101273525 21 
424698858008797306101031690351005 42668411785069760510110000464 
4888932021632701041010000092503100 48623688594232120410110114010 
42669020170732121110112378640 44479621721887360110110000052 
Pin : 1783 

Paypal Balance $2000= $100 
Paypal Balance $3000 = $150 
Paypal Balance $4000= $200 
Paypal Balance $5000 = $4500 



I ONLY ACCEPT PAYMENT BY LR ACCOUNT OR WU (WU JUST ACCEPT BUT LR FOR 
SMALL DEALS ) 
I SELL CC FRESH , CHECK LIVE BEFORE SEND CC TO YOU 
I CHECK BALANCE OR CONTROL BALANCE AS MUCH MONEY AS YOU NEED . 
THE CC WILL BE GOOD OR BAD DEPEND ON HOW MUCH YOU NEED TO PURCHASE 
FROM A 
SHOP 
PLEASE DONT REQUEST CC FOR FREE TEST . I DONT SEND ANY CC FOR FREE 
TEST NOR SEND DEMOS OK. 
IF YOU WANT TO BUY BUY AND WE HAVE LONG TIME TO DEAL AS YOU WISH OK. 
I ALSO SELL FROM 2CC's FOR TEST 
HOPE U'LL BE HAPPY DOING BUSSINES WITH ME AND WILL LIKE YOU ADD ME 
AT for i'm bizzy to be on yahoo so email me 
what you need and we get along .can call me up if you want quick 
delivery of cc 15mins when payment is confirm so i;m here and if you 
NEED ME TO COME ONLINE OF WHICH I WILL GIVE YOU MY ID AND WE TALK BIZ 
ONLINE OK STAY WELL AND ENJOY MY NET SERVICES . 





Contact Info 


yahoo ID: troll.seller 




mail: transfer24h&amp;lt; at &amp;gt;gmail.com

msn     : troll.seller


         *******book all tickets : flights , trains , bus ******* 


      
VALID AND FRESH INFO FOR Sale PM ME 
WE MAKE SURE YOU ARE SATISFIED WITH WHATEVER YOU ARE BUYING AND YOU GET
IMMIDIATE 
DELIVERY OF STUFFS AFTER PAYMENT.........WE DONT GIVE DEMO NOR SAMPLES NOR
TEST ..... EVERY STUFFS 100% FRESH AND LIVE. 

&lt;/pre&gt;</description>
    <dc:creator>admin.hacker</dc:creator>
    <dc:date>2012-05-19T18:52:18</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44178">
    <title>permalinks</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44178</link>
    <description>&lt;pre&gt;How do I change the posts to have 'articles' base in front of the
%post-name% witohut effecting url on the rest of the site?


category base: category
sample url :   mysite.com/category/featured-videos

I wanted to prefix all my posts with /articles/ base in front of it.

So I went to the permalinks screen and set up a custom structure as follows

/articles/%post-name%

that fixed the posts url to be the way I want.

but then all of a sudden the url what used to be

mysite.com/category/featured-videos

become

mysite.com/articles/category/featured-videos

Is there a way to get the bosy of both worlds that is

keep the rest of the non-post url as is ( so that category urls work
the way you expect them work ) and have control over the posts url
base?
&lt;/pre&gt;</description>
    <dc:creator>Haluk Karamete</dc:creator>
    <dc:date>2012-05-17T20:39:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44177">
    <title>Re: register_activation_hook for themes?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44177</link>
    <description>&lt;pre&gt;Yes, only plugins have activation hooks.

There have been on/off discussions about adding something similar for
themes over the years: http://core.trac.wordpress.org/ticket/7795

&lt;/pre&gt;</description>
    <dc:creator>scribu</dc:creator>
    <dc:date>2012-05-17T17:27:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44176">
    <title>paginate_links() empty href in some cases -&gt; bug orfeature?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wordpress.devel/44176</link>
    <description>&lt;pre&gt;On the definition of the paginate_links() in
wp-includes/general-template.php&amp;lt;http://core.trac.wordpress.org/browser/tags/3.3.2/wp-includes/general-template.php#L1921&amp;gt;,
i see that it gives $link an empty value on at least two cases:

If $current page is number 2 (lines 1954-55)

if ( $prev_next &amp;amp;&amp;amp; $current &amp;amp;&amp;amp; 1 &amp;lt; $current ) :


        $link = str_replace('%_%', 2 == $current ? '' : $format, $base);

and during the for loop, if $n == 1 (lines 1968-69)

if ( $show_all || ( $n &amp;lt;= $end_size || ( $current &amp;amp;&amp;amp; $n &amp;gt;= $current -
$mid_size &amp;amp;&amp;amp; $n &amp;lt;= $current + $mid_size ) || $n &amp;gt; $total - $end_size )
) :


                $link = str_replace('%_%', 1 == $n ? '' : $format, $base);

After that, it goes on to formatting the now empty string, adds whatever is
on the 'add_args' and 'add_fragment' inputs and  builds the array of links.

Can anyone point me the reasons for that? Should i bother dive into it to
try and make it work or is it really designed to work like this?

ps.:
I've posted a complete summary of my troubles with paginate_links yesterday
at WPSE
http://wordpress.stackexchange.com/questions/52405/paginate-links-adds-empty-href-to-first-page-and-previous-link
but
still can't get around to it.

Also, i'm not a really experienced developer, so i might have misread
something on that code... but it just seems to me that paginate_links is
*this* close to working seamlessly with WP_Query, but not quite there yet.
 =\

thanks!

Ricardo Moraleida
&lt;/pre&gt;</description>
    <dc:creator>Ricardo Moraleida</dc:creator>
    <dc:date>2012-05-17T13:27:54</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.web.wordpress.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.web.wordpress.devel</link>
  </textinput>
</rdf:RDF>

