Skip Menu |

This queue is for tickets about the WWW-Myspace CPAN distribution.

Report information
The Basics
Id: 18251
Status: resolved
Priority: 0/
Queue: WWW-Myspace

People
Owner: GRANTG [...] cpan.org
Requestors: tom [...] tomkerswill.co.uk
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: (no value)
Fixed in: (no value)



Subject: Read comments from page
It would be really nice to be able to get a list of comments on a given myspace user page, including: * Date posted * Friend ID of commenter * Comment text It would be especially useful for determining which people have already been sent a given comment, and for keeping track of conversations written using comments (imagine chronologically ordering comments exchanged with a given person). I'd be up for trying to write something that does this. Would it be best in the "comments" module or the main myspace module? Tom
Subject: Re: [rt.cpan.org #18251] Read comments from page
Date: Mon, 20 Mar 2006 10:42:18 -0800
To: bug-WWW-Myspace [...] rt.cpan.org
From: Grant Grueninger <grantg [...] spamarrest.com>
Hi Tom, That would be handy. I've given up trying to respond to comments because it's too hard to track threads. Let's put this in Myspace.pm. As a rule, Myspace.pm handles any direct interface to myspace.com, and other modules handle higher- level processing. If you have an idea how to implement this already, go for it. If not, the new "inbox" method is very similar to this, but returns a list of mail messages. You could look at it (or copy it) as a base for this new method: http://svn.sourceforge.net/viewcvs.cgi/www-myspace/trunk/lib/WWW/ Myspace.pm?view=markup As you probably saw, I moved WWW::Myspace to sourceforge, so here's some handy info if you want to get into it. Main WWW::Myspace development page: http://sourceforge.net/projects/www-myspace - Instructions to use subversion: - Go to http://sourceforge.net/projects/www-myspace - Click "subversion" (upper-right in the nav bar). Shows you the svn checkout command and a link to browse the source from the web. - Shortcut to view the source code via the web (from the "subversion" page above): http://svn.sourceforge.net/viewcvs.cgi/www-myspace/trunk/ - Command to check out current source code (must have svn installed) (also on the page above): svn checkout https://svn.sourceforge.net/svnroot/www-myspace You're welcome to sign up as a developer on the project too. Just sign up for a sourceforge account (free), and let me know your username. That gives you write access to the svn repository too. If you don't have svn installed, you can get it from: http:// subversion.tigris.org/project_packages.html If you'd like to send a patch, just do this (with svn installed): # Get the source svn checkout https://svn.sourceforge.net/svnroot/www-myspace # Edit and test the file in your favorite editor # Display the patch cd .../www-myspace/trunk/lib/WWW svn diff Myspace.pm # Paste the output into this RT page. # If you are signed up as a developer you can do this instead of the last "svn diff": svn commit # A word-processor will open, enter a short description of the changes made, such # as "Added comments_on_profile method" Thanks, Grant On Mar 20, 2006, at 2:19 AM, Guest via RT wrote: Show quoted text
> > Mon Mar 20 05:19:55 2006: Request 18251 was acted upon. > Transaction: Ticket created by guest > Queue: WWW-Myspace > Subject: Read comments from page > Owner: Nobody > Requestors: tom@tomkerswill.co.uk > Status: new > Ticket <URL: http://rt.cpan.org/Ticket/Display.html?id=18251 > > > > It would be really nice to be able to get a list of comments on a > given myspace user page, > including: > * Date posted > * Friend ID of commenter > * Comment text > > It would be especially useful for determining which people have > already been sent a given > comment, and for keeping track of conversations written using > comments (imagine > chronologically ordering comments exchanged with a given person). > > I'd be up for trying to write something that does this. Would it be > best in the "comments" > module or the main myspace module? > > Tom >
-- Grant Grueninger Commercial Systems Corporation http://www.cscorp.com/ 818-760-1649
Subject: Re: [rt.cpan.org #18251] Read comments from page
Date: Mon, 20 Mar 2006 19:06:49 +0000
To: bug-WWW-Myspace [...] rt.cpan.org
From: Tom Kerswill <tom [...] tomkerswill.co.uk>
Hi Grant That's brilliant - I've just got into using Subversion on my server, and am dead impressed with it. So this is perfect - I'll do all the stuff like signing up with sourceforge and will get back to you shortly... Tom grantg@spamarrest.com via RT wrote: Show quoted text
> <URL: http://rt.cpan.org/Ticket/Display.html?id=18251 > > > Hi Tom, > > That would be handy. I've given up trying to respond to comments > because it's too hard to track threads. > > Let's put this in Myspace.pm. As a rule, Myspace.pm handles any > direct interface to myspace.com, and other modules handle higher- > level processing. > > If you have an idea how to implement this already, go for it. If > not, the new "inbox" method is very similar to this, but returns a > list of mail messages. You could look at it (or copy it) as a base > for this new method: > http://svn.sourceforge.net/viewcvs.cgi/www-myspace/trunk/lib/WWW/ > Myspace.pm?view=markup > > As you probably saw, I moved WWW::Myspace to sourceforge, so here's > some handy info if you want to get into it. > > Main WWW::Myspace development page: > > http://sourceforge.net/projects/www-myspace > > - Instructions to use subversion: > - Go to http://sourceforge.net/projects/www-myspace > - Click "subversion" (upper-right in the nav bar). > Shows you the svn checkout command and a link to browse the > source from the web. > > - Shortcut to view the source code via the web (from the "subversion" > page above): > http://svn.sourceforge.net/viewcvs.cgi/www-myspace/trunk/ > > - Command to check out current source code (must have svn installed) > (also on the page above): > svn checkout https://svn.sourceforge.net/svnroot/www-myspace > > > You're welcome to sign up as a developer on the project too. Just > sign up for a sourceforge account (free), and let me know your > username. That gives you write access to the svn repository too. > > If you don't have svn installed, you can get it from: http:// > subversion.tigris.org/project_packages.html > > > If you'd like to send a patch, just do this (with svn installed): > > # Get the source > svn checkout https://svn.sourceforge.net/svnroot/www-myspace > > # Edit and test the file in your favorite editor > > # Display the patch > cd .../www-myspace/trunk/lib/WWW > svn diff Myspace.pm > > # Paste the output into this RT page. > > > # If you are signed up as a developer you can do this instead of the > last "svn diff": > > svn commit > > # A word-processor will open, enter a short description of the > changes made, such > # as "Added comments_on_profile method" > > Thanks, > > Grant > > On Mar 20, 2006, at 2:19 AM, Guest via RT wrote: > >
>> Mon Mar 20 05:19:55 2006: Request 18251 was acted upon. >> Transaction: Ticket created by guest >> Queue: WWW-Myspace >> Subject: Read comments from page >> Owner: Nobody >> Requestors: tom@tomkerswill.co.uk >> Status: new >> Ticket <URL: http://rt.cpan.org/Ticket/Display.html?id=18251 > >> >> >> It would be really nice to be able to get a list of comments on a >> given myspace user page, >> including: >> * Date posted >> * Friend ID of commenter >> * Comment text >> >> It would be especially useful for determining which people have >> already been sent a given >> comment, and for keeping track of conversations written using >> comments (imagine >> chronologically ordering comments exchanged with a given person). >> >> I'd be up for trying to write something that does this. Would it be >> best in the "comments" >> module or the main myspace module? >> >> Tom >> >>
> > >
Subject: Re: [rt.cpan.org #18251] Read comments from page
Date: Mon, 20 Mar 2006 11:18:24 -0800
To: bug-WWW-Myspace [...] rt.cpan.org
From: Grant Grueninger <grantg [...] spamarrest.com>
Great. I was worried I was overloading you with version control stuff. :) I just added Olaf Alders, who will be writing a "cool_new_people" method among other things. Grant On Mar 20, 2006, at 11:07 AM, tom@tomkerswill.co.uk via RT wrote: Show quoted text
> > Queue: WWW-Myspace > Ticket <URL: http://rt.cpan.org/Ticket/Display.html?id=18251 > > > Hi Grant > > That's brilliant - I've just got into using Subversion on my > server, and > am dead impressed with it. So this is perfect - I'll do all the stuff > like signing up with sourceforge and will get back to you shortly... > > Tom > > grantg@spamarrest.com via RT wrote:
>> <URL: http://rt.cpan.org/Ticket/Display.html?id=18251 > >> >> Hi Tom, >> >> That would be handy. I've given up trying to respond to comments >> because it's too hard to track threads. >> >> Let's put this in Myspace.pm. As a rule, Myspace.pm handles any >> direct interface to myspace.com, and other modules handle higher- >> level processing. >> >> If you have an idea how to implement this already, go for it. If >> not, the new "inbox" method is very similar to this, but returns a >> list of mail messages. You could look at it (or copy it) as a base >> for this new method: >> http://svn.sourceforge.net/viewcvs.cgi/www-myspace/trunk/lib/WWW/ >> Myspace.pm?view=markup >> >> As you probably saw, I moved WWW::Myspace to sourceforge, so here's >> some handy info if you want to get into it. >> >> Main WWW::Myspace development page: >> >> http://sourceforge.net/projects/www-myspace >> >> - Instructions to use subversion: >> - Go to http://sourceforge.net/projects/www-myspace >> - Click "subversion" (upper-right in the nav bar). >> Shows you the svn checkout command and a link to browse the >> source from the web. >> >> - Shortcut to view the source code via the web (from the "subversion" >> page above): >> http://svn.sourceforge.net/viewcvs.cgi/www-myspace/trunk/ >> >> - Command to check out current source code (must have svn installed) >> (also on the page above): >> svn checkout https://svn.sourceforge.net/svnroot/www-myspace >> >> >> You're welcome to sign up as a developer on the project too. Just >> sign up for a sourceforge account (free), and let me know your >> username. That gives you write access to the svn repository too. >> >> If you don't have svn installed, you can get it from: http:// >> subversion.tigris.org/project_packages.html >> >> >> If you'd like to send a patch, just do this (with svn installed): >> >> # Get the source >> svn checkout https://svn.sourceforge.net/svnroot/www-myspace >> >> # Edit and test the file in your favorite editor >> >> # Display the patch >> cd .../www-myspace/trunk/lib/WWW >> svn diff Myspace.pm >> >> # Paste the output into this RT page. >> >> >> # If you are signed up as a developer you can do this instead of the >> last "svn diff": >> >> svn commit >> >> # A word-processor will open, enter a short description of the >> changes made, such >> # as "Added comments_on_profile method" >> >> Thanks, >> >> Grant >> >> On Mar 20, 2006, at 2:19 AM, Guest via RT wrote: >> >>
>>> Mon Mar 20 05:19:55 2006: Request 18251 was acted upon. >>> Transaction: Ticket created by guest >>> Queue: WWW-Myspace >>> Subject: Read comments from page >>> Owner: Nobody >>> Requestors: tom@tomkerswill.co.uk >>> Status: new >>> Ticket <URL: http://rt.cpan.org/Ticket/Display.html?id=18251 > >>> >>> >>> It would be really nice to be able to get a list of comments on a >>> given myspace user page, >>> including: >>> * Date posted >>> * Friend ID of commenter >>> * Comment text >>> >>> It would be especially useful for determining which people have >>> already been sent a given >>> comment, and for keeping track of conversations written using >>> comments (imagine >>> chronologically ordering comments exchanged with a given person). >>> >>> I'd be up for trying to write something that does this. Would it be >>> best in the "comments" >>> module or the main myspace module? >>> >>> Tom >>> >>>
>> >> >>
> > >
-- Grant Grueninger Commercial Systems Corporation http://www.cscorp.com/ 818-760-1649
get_comments method added several revisions ago. Closing old request ticket.