What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Plug-Ins » [suggestion] whatpulse plugin

[suggestion] whatpulse plugin
Author: Message:
Ascathon
New Member
*

Avatar

Posts: 4
38 / Male / –
Joined: Jul 2005
O.P. [suggestion] whatpulse plugin
Well, I couldn't find anything about it here (neither did I at the official WP board) so:

As far as I know there is no plug-in to show your WhatPulse stats in your msn screenname. I would love to have this. Maybe someone is a good scripter/programmer and will make this within days. :x
07-01-2005 11:26 AM
Profile PM Web Find Quote Report
opdude
Junior Member
**

Avatar
Nev!!!

Posts: 42
35 / Male / –
Joined: May 2003
RE: [suggestion] whatpulse plugin
I've been thinking about making this plugin. I'll see if i can make it happen.

Opdude
07-01-2005 04:59 PM
Profile E-Mail PM Web Find Quote Report
Eljay
Elite Member
*****

Avatar
:O

Posts: 2949
Reputation: 77
– / Male / –
Joined: May 2004
RE: [suggestion] whatpulse plugin
quote:
Originally posted by opdude
I've been thinking about making this plugin. I'll see if i can make it happen.

Opdude

shouldnt be too hard

in case you didnt know you can just use the xml stats here

http://whatpulse.org/api/users/<userid>.xml

example: http://whatpulse.org/api/users/101044.xml <=mine :P
07-01-2005 05:13 PM
Profile PM Find Quote Report
TheGeek
Full Member
***

Avatar
Excuse my geekyness.

Posts: 179
Reputation: 15
33 / Male / –
Joined: Feb 2005
RE: [suggestion] whatpulse plugin
You can also get it in plain text format:
http://whatpulse.org/api/user.php?account=TheGeek for example...
[Image: 468x60banner.png]
07-02-2005 10:44 AM
Profile E-Mail PM Web Find Quote Report
-dt-
Scripting Contest Winner
*****

Avatar
;o

Posts: 1819
Reputation: 74
35 / Male / Flag
Joined: Mar 2004
RE: [suggestion] whatpulse plugin
quote:
Originally posted by TheGeek
You can also get it in plain text format:
http://whatpulse.org/api/user.php?account=TheGeek for example...
thats the old api , which shouldnt be used because (well last I read) was going to be replaced by the xml formatted one
[Image: dt2.0v2.png]      Happy Birthday, WDZ
07-02-2005 10:49 AM
Profile PM Web Find Quote Report
L. Coyote
Senior Member
****

Avatar
Captain Obvious

Posts: 981
Reputation: 49
38 / Male / Flag
Joined: Aug 2004
Status: Away
RE: [suggestion] whatpulse plugin
quote:
Originally posted by -dt-
thats the old api , which shouldnt be used because (well last I read) was going to be replaced by the xml formatted one
Indeed. Besides, it's much easier to parse XML. :P

Hack, hack, hack!
Finally became a Systems Analyst! :spam:

07-02-2005 07:58 PM
Profile PM Find Quote Report
TheGeek
Full Member
***

Avatar
Excuse my geekyness.

Posts: 179
Reputation: 15
33 / Male / –
Joined: Feb 2005
RE: RE: [suggestion] whatpulse plugin
quote:
Originally posted by Killov
quote:
Originally posted by -dt-
thats the old api , which shouldnt be used because (well last I read) was going to be replaced by the xml formatted one
Indeed. Besides, it's much easier to parse XML. :P

Most of the times, yes, but in PHP it's really hard to parse php afaik.
A simple substr is a lot easier in php...
[Image: 468x60banner.png]
07-02-2005 08:36 PM
Profile E-Mail PM Web Find Quote Report
L. Coyote
Senior Member
****

Avatar
Captain Obvious

Posts: 981
Reputation: 49
38 / Male / Flag
Joined: Aug 2004
Status: Away
RE: [suggestion] whatpulse plugin
quote:
Originally posted by TheGeek
Most of the times, yes, but in PHP it's really hard to parse php afaik.
A simple substr is a lot easier in php...
:s There's a build-in XML parser. And also, making a XML parser in PHP is very easy as well.

Hack, hack, hack!
Finally became a Systems Analyst! :spam:

07-02-2005 10:25 PM
Profile PM Find Quote Report
TheGeek
Full Member
***

Avatar
Excuse my geekyness.

Posts: 179
Reputation: 15
33 / Male / –
Joined: Feb 2005
RE: RE: [suggestion] whatpulse plugin
quote:
Originally posted by Killov
quote:
Originally posted by TheGeek
Most of the times, yes, but in PHP it's really hard to parse php afaik.
A simple substr is a lot easier in php...
:s There's a build-in XML parser. And also, making a XML parser in PHP is very easy as well.

I never got it to work.
It just provides an opentag event and a closetag event AFAIK.
[Image: 468x60banner.png]
07-03-2005 10:40 AM
Profile E-Mail PM Web Find Quote Report
-dt-
Scripting Contest Winner
*****

Avatar
;o

Posts: 1819
Reputation: 74
35 / Male / Flag
Joined: Mar 2004
RE: [suggestion] whatpulse plugin
quote:
Originally posted by TheGeek
I never got it to work.
It just provides an opentag event and a closetag event AFAIK.
wtf? its simple as to use and parse eg
lets say you have to parse
code:
<temp>
<item1>blah</item1>
<item2>blah2</item2>
</temp>

all you do is create a instance of the xml_parser , get it to parse that xml above($toparse) and free the xml_parser
code:
$xml_parser = xml_parser_create();
xml_parse_into_struct($xml_parser, $toparse, $arr_vals ,$index);
xml_parser_free($xml_parser);


$toparse is the xml code
$arr_vals is an array which has the names of the nodes and a refernce to the $index array
$index array has the values of the nodes

then to access the content of a node we just use something like where $node is the node
$arr_vals[$index[$node][0]]['value'];


[Image: dt2.0v2.png]      Happy Birthday, WDZ
07-03-2005 11:07 AM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On