<?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://comments.gmane.org/gmane.comp.web.wordpress.devel/44200"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44197"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44196"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44195"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44193"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44187"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44182"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44179"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44178"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44176"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44172"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44171"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44163"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44161"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44160"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44153"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44148"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44146"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44139"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44137"/>
      </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://comments.gmane.org/gmane.comp.web.wordpress.devel/44200">
    <title>Translating external help files for a plugin</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44200</link>
    <description>&lt;pre&gt;Hello there,

I'm trying to localize a plugin and it cames with a html help file that popups when clicking the plugin at front end.

Is there someway to localize this file?! I only find examples on creating/localizing files for admin pages.

THanks for any help!
&lt;/pre&gt;</description>
    <dc:creator>Diana K. C</dc:creator>
    <dc:date>2012-05-26T03:48:08</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44197">
    <title>Add same widget to multiple sidebars</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44197</link>
    <description>&lt;pre&gt;Hi folks,

in my template I have multiple sidebars, one for the homepage, one for 
the archive page, and so on. Each of them has a different set of widgets 
in it, but some widgets should be shared among sidebars. I've written 
the usual code

function my_widget(){

}
wp_register_sidebar_widget(...)

But as soon as I assign a widget to a sidebar, it disappears from the 
list of available filters, making it unavailable for other sidebars. I 
see the Text Widget, though, can be reused multiple times. I've found a 
few different ways of doing this, but I'd like to ask this list about 
what's the 'final' and best way of making a 'reusable' widget.

Thanks folks,
Dino.
&lt;/pre&gt;</description>
    <dc:creator>Dino Termini</dc:creator>
    <dc:date>2012-05-25T11:56:13</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44196">
    <title>Replace One Plugin With Another</title>
    <link>http://comments.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://comments.gmane.org/gmane.comp.web.wordpress.devel/44195">
    <title>fast question - which action or filter to change smthwith uploaded image?</title>
    <link>http://comments.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://comments.gmane.org/gmane.comp.web.wordpress.devel/44193">
    <title>Advanced taxonomy queries</title>
    <link>http://comments.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://comments.gmane.org/gmane.comp.web.wordpress.devel/44187">
    <title>ajax and posts</title>
    <link>http://comments.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://comments.gmane.org/gmane.comp.web.wordpress.devel/44182">
    <title>getting post counts for multiple tags</title>
    <link>http://comments.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://comments.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://comments.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://comments.gmane.org/gmane.comp.web.wordpress.devel/44178">
    <title>permalinks</title>
    <link>http://comments.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://comments.gmane.org/gmane.comp.web.wordpress.devel/44176">
    <title>paginate_links() empty href in some cases -&gt; bug orfeature?</title>
    <link>http://comments.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>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44172">
    <title>Change theme per user / mobile</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44172</link>
    <description>&lt;pre&gt;Is there an action/filter to change the WordPress theme per user / onload?

Not switch_theme (I don't want to change it for everyone), just to 
change it for certain users, sometimes ...

I'm using the following two filters:
add_filter('template', 'mobile_theme_name');
add_filter('stylesheet', 'mobile_theme_name');

Which seem to update the StyleSheet path and Image paths to use the new 
theme, however WordPress is still loading the physical *.php (index.php, 
front-page.php, home.php etc) files from the *database* set themes 
folder, and not the new themes folder.

Obviously I'm missing a filter/action somewhere.

Thanks,
Rob.
&lt;/pre&gt;</description>
    <dc:creator>Robert Lusby</dc:creator>
    <dc:date>2012-05-17T11:58:31</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44171">
    <title>Two URLs - One WP Install? (And the silly way WordPress stores full URLs in the database)</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44171</link>
    <description>&lt;pre&gt;Hello,

We're setting up a mobile version of a website we run. We decided to do 
this by creating a mobile specific template.

However we'd quite like to switch the URL to a mobile version of the site:

E.g.
-&amp;gt; normal visitor reaches the site, and stays at http://www.example.com
-&amp;gt; mobile visitor reaches the site, and gets redirected to 
http://m.example.com

Behind the scenes, the only difference between the two is the template 
picked. It's the same blog + DB.

I get how to do the template switching etc ... but how do I get 
WordPress to answer on http://m.example.com and stop redirecting all 
requests back to the www....?

Also, I now have to do a find and replace on ALL the urls in the 
database everytime the mobile site is loaded, for that site, to map to 
http://m.example.com ... Why does WordPress do this! Why not just keep 
the content as content! And let us decide what wrappers we want to put 
around it!

Cheers,
Rob.
&lt;/pre&gt;</description>
    <dc:creator>Robert Lusby</dc:creator>
    <dc:date>2012-05-17T10:05:27</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44163">
    <title>Best svn software</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44163</link>
    <description>&lt;pre&gt;I was using Turtle SVN but is gets loaded everytime, is there any light software out there?
&lt;/pre&gt;</description>
    <dc:creator>Diana K. C</dc:creator>
    <dc:date>2012-05-16T18:33:17</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44161">
    <title>How to check if a plugin has been removed fromwordpress and why</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44161</link>
    <description>&lt;pre&gt;Today, I found that my plugin page on wordpress.org is not working - "We couldn't find that plugin."
I think my plugin may have been removed from WordPress but I am not sure.
I can see the plugin when I login with my username (that's the administrator account for the plugin) but all contributors cannot see the plugin.
The email I used when I registered on wordpress has been deactivated and I had to reactivate it this morning so if any message has been sent to that email it 
has probably bounced back :/
Who can I contact to find out if my plugin has been removed from wordpress and how can I find out the reason that my plugin has been removed.
I've always tried to follow the plugin guidelines as listed on wordpress.org
I am sorry if this is not the correct mail list to send this question to, if so please point me to the right place.
&lt;/pre&gt;</description>
    <dc:creator>Yanislav Iliev</dc:creator>
    <dc:date>2012-05-16T17:14:28</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44160">
    <title>any idea why this custom rewrite isnt working?</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44160</link>
    <description>&lt;pre&gt;// multiple keywords works fine domain.com/search/keyword-keyword2.html

from : loop-search.php

$search_query = str_replace('-',' ', $wp_query-&amp;gt;query_vars['s']);
$mysearch = new WP_Query("s=$search_query&amp;amp;showposts=-1"); 

// multiple tag doesnt work domain.com/tag/tag-tag2.html

from: loop-tag.php

$tag_query = str_replace('-',',',$wp_query-&amp;gt;query_vars['tag']); 
$mytag = new WP_Query("tag=$tag_query&amp;amp;showposts=-1");

// rewrites

add_action('generate_rewrite_rules', 'hotlinkers_add_rewrite_rules'); 

function hotlinkers_add_rewrite_rules( $wp_rewrite ) { 
    $new_rules = array(
    "^search/(.+)\.html$" =&amp;gt; 'index.php?s=' . $wp_rewrite-&amp;gt;preg_index(1),
    "^tag/(.+)\.html$" =&amp;gt; 'index.php?tag=' . $wp_rewrite-&amp;gt;preg_index(1)
    );
    $wp_rewrite-&amp;gt;rules = $new_rules + $wp_rewrite-&amp;gt;rules; 
} 

add_filter('query_vars', 'hotlinkers_queryvars' ); 

function hotlinkers_queryvars( $qvars ){ 
    $qvars[] = 's'; 
    $qvars[] = 'tag'; 
    return $qvars; 
} 

add_action('init','hotlinkers_flush_rules'); 

function hotlinkers_flush_rules(){ 
    global $wp_rewrite; 
    $wp_rewrite-&amp;gt;flush_rules(); 
}

Thanks ;)
&lt;/pre&gt;</description>
    <dc:creator>Chris McCoy</dc:creator>
    <dc:date>2012-05-16T16:45:21</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44153">
    <title>WP_Query and orderby - outside of WP</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44153</link>
    <description>&lt;pre&gt;Hi,

I have a regular PHP script that bootstraps WordPress by including
wp-load.php (as previously discussed on this list).

I'm doing something relatively simply --

a) loading WP
b) grabbing posts of a certain custom post type

I'd like to change the orderby, but no matter what I pick for orderby,
the posts come back in the same order (ie. date).

Here's my code:

--

global $wp_the_query, $wp_query, $wp_rewrite, $wp;
define('DISABLE_WP_CRON', true);
require_once('/home/wheaton/public_html/wp-load.php');
$quilts = new WP_Query('post_type=profiles&amp;amp;post_status=publish&amp;amp;orderby=rand' );
while ( $quilts-&amp;gt;have_posts() ) : $quilts-&amp;gt;the_post();
// etc

--

In short, changing the orderby parameter has no effect. ie. title, rand, etc.

What could be causing this? Might it have to do with bootstrapping WP
in this way?

Doc: http://codex.wordpress.org/Class_Reference/WP_Query

Thanks-
Bill
&lt;/pre&gt;</description>
    <dc:creator>Bill Dennen</dc:creator>
    <dc:date>2012-05-14T15:55:50</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44148">
    <title>Thoughts on Softpedia and PHPKode Directories?</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44148</link>
    <description>&lt;pre&gt;Recently after releasing a new plugin, I received messages from 
webscripts.softpedia.com and phpkode.com, congratulating me on having my 
plugin included in their directory.

I went to check it out, and while it seems benign, I am leery of them 
hosting my plugin archive - which seems to remove some of the control I 
have over distribution and making sure that the most current version is 
what is downloaded. It's unclear how and when changes I make to the 
official WordPress.org repository get applied to their hosted version.

I imagine they are scraping the new plugin releases from WordPress.org 
and using them to create more content on their site.

Personally, I'd prefer to channel everything through one distribution 
channel, and have asked to have the plugin removed.

Does anyone have any experience with this? Curious to hear what others 
have done or think of this.

Thanks in advance,

Jackson
&lt;/pre&gt;</description>
    <dc:creator>Jackson Whelan</dc:creator>
    <dc:date>2012-05-14T12:55:10</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44146">
    <title>WP Query  - OrderBy Author</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44146</link>
    <description>&lt;pre&gt;I was using orderby =&amp;gt; author in WP_Query, and wondering why I was 
getting a strange order.

Then I suddenly twigged - it's sorting by Author ID, rather than Author 
Name.

How would you order by Author Display Name, rather than ID, within WP_Query?

Thanks,
Rob.
&lt;/pre&gt;</description>
    <dc:creator>Robert Lusby</dc:creator>
    <dc:date>2012-05-13T19:01:58</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44139">
    <title>Using symlinks in WP installations</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44139</link>
    <description>&lt;pre&gt;Hi all

I am wondering if there are likely to be any issues with using
symlinks to run multiple installs of WP from one set of core, plugin
and theme files, and thought it might be a good idea to post here.

I'm currently playing with a setup where everything in my DocumentRoot
directories are actually symlinks to a central install with the
exception of WP-content and .htaccess. Inside WP-content, both /themes
and /plugins are also symlinks.

I'm not really looking to this as a solution for production, but have
been playing around with it on a whole bunch of dev and staging sites.
Apart from running into file path related problems with some plugins,
everything seems fine. Can anyone foresee any problems hiding around
the corner waiting to bite me if all the appropriate constants are set
in WP-config?

Cheers
Neil
&lt;/pre&gt;</description>
    <dc:creator>Neil Pie's Bacon</dc:creator>
    <dc:date>2012-05-12T06:57:42</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44137">
    <title>register_activation_hook for themes?</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44137</link>
    <description>&lt;pre&gt;Is it true its only available to plugins?

Im creating a page on theme activation and setting the page template.
&lt;/pre&gt;</description>
    <dc:creator>Chris McCoy</dc:creator>
    <dc:date>2012-05-11T19:20:30</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44135">
    <title>Best Backup Plugin</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44135</link>
    <description>&lt;pre&gt;Can anyone tell me what they think is the best backup plugin.

I am looking for something with the following features.

1.  Reliably makes a DB backup.
2.  Exports files to Amazon / FTP / or another place and saves a local copy
3.  Is cheap or free.   (Vaultpress is too expensive for some of the clients)

What do you like?

thanks,

Andrew
&lt;/pre&gt;</description>
    <dc:creator>Andrew Gray</dc:creator>
    <dc:date>2012-05-11T15:21:37</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>

