Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Ruby > Metalink (XML) library for Ruby?

Reply
Thread Tools

Metalink (XML) library for Ruby?

 
 
Anthony Bryan
Guest
Posts: n/a
 
      01-05-2008
Hi,

Would anyone be interested in working on a Metalink library for Ruby?
There's already one for PHP & Python (
http://code.google.com/p/metalink-library/ ).

Metalink is a simple XML format for describing downloads. Most
metalink files contain mirror lists/p2p (the various ways you can get
a file) and checksums (for file verification). They're frequently used
for large files like ISOs and also contain chunk checksums for
repairing downloads and other info. But they're also used by smaller
things like cURL, OpenOffice.org, podcasts, videos, and other stuff.

Close to 20 download programs support Metalink. There's more info at
http://en.wikipedia.org/wiki/Metalink

Here's an example ruby-1.8.6-p111.tar.gz.metalink (most would contain
more mirrors, and maybe a description):

Ruby 1.8.6-p111 (md5: c36e011733a3a3be6f43ba27b7cd7485)

<metalink version="3.0" xmlns="http://metalinker.org">
<files>
<file name="ruby-1.8.6-p111.tar.gz">
<verification>
<hash type="md5">c36e011733a3a3be6f43ba27b7cd7485</hash>
</verification>
<resources>
<url type="ftp" location="us"
preference="100">ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.6-p111.tar.gz</url>
</resources>
</file>
</files>
</metalink>

Thanks,
--
(( Anthony Bryan ... Metalink [ http://www.metalinker.org ]
)) Easier, More Reliable, Self Healing Downloads

 
Reply With Quote
 
 
 
 
Daniel Brumbaugh Keeney
Guest
Posts: n/a
 
      01-06-2008
On Jan 5, 2008 5:22 PM, Anthony Bryan wrote:
> Would anyone be interested in working on a Metalink library for Ruby?


Metalinks are very cool. There's some folks working on a wget
implementation in Ruby, and I had proposed they incorporate metalinks,
I don't think they've done that yet, maybe not ever. Some guy named
Dag Odenhall[1] looks started a project for this on sharesource[2],
but it doesn't appear to have anything done. I'm sorry I don't have
time to help you in the near future.

Daniel Brumbaugh Keeney

[1]
http://sharesource.org/user/dag/
[2]
http://sharesource.org/project/metalink4r

 
Reply With Quote
 
 
 
 
Anthony Bryan
Guest
Posts: n/a
 
      01-09-2008
On Jan 6, 2008 10:24 AM, Daniel Brumbaugh Keeney
<> wrote:
> On Jan 5, 2008 5:22 PM, Anthony Bryan wrote:
> > Would anyone be interested in working on a Metalink library for Ruby?

>
> Metalinks are very cool. There's some folks working on a wget
> implementation in Ruby, and I had proposed they incorporate metalinks,
> I don't think they've done that yet, maybe not ever. Some guy named
> Dag Odenhall[1] looks started a project for this on sharesource[2],
> but it doesn't appear to have anything done. I'm sorry I don't have
> time to help you in the near future.
>
> Daniel Brumbaugh Keeney
>
> [1]
> http://sharesource.org/user/dag/
> [2]
> http://sharesource.org/project/metalink4r


Daniel, thanks a lot for the encouragement!

I hadn't known about metalink4r, even tho there was never a release
it's at least interesting to know that someone thought about doing it


If this seems like something that you'd be interesting in working on
later, please let me know. Or if you're just interested in metalinks,
we have a pretty low traffic discussion list at
http://groups.google.com/group/metalink-discussion , feel free to join
us.

--
(( Anthony Bryan ... Metalink [ http://www.metalinker.org ]
)) Easier, More Reliable, Self Healing Downloads

 
Reply With Quote
 
Rene Leonhardt
Guest
Posts: n/a
 
      01-09-2008
On 6 Jan., 00:22, Anthony Bryan <anthonybr...@gmail.com> wrote:
> Hi,
>
> Would anyone be interested in working on a Metalink library for Ruby?
> There's already one for PHP & Python (http://code.google.com/p/metalink-library/).


Hello Anthony,

I would like to help porting my library to Ruby.
That would be a good way to learn it
But I would need someone to help with the trickier parts at least:
- reading XML
- hash libraries (MD5, SHA-1, SHA-256, maybe ED2K)
- HTTP requests and responses including headers
- bin2ascii for creating and parsing BitTorrent

The Python code is a bit more than 2000 lines long and I would port
most of them.

Anyone interested?
 
Reply With Quote
 
Frederick Cheung
Guest
Posts: n/a
 
      01-09-2008

On 9 Jan 2008, at 16:29, Rene Leonhardt wrote:

> On 6 Jan., 00:22, Anthony Bryan <anthonybr...@gmail.com> wrote:
>> Hi,
>>
>> Would anyone be interested in working on a Metalink library for Ruby?
>> There's already one for PHP & Python (http://code.google.com/p/metalink-library/
>> ).

>
> Hello Anthony,
>
> I would like to help porting my library to Ruby.
> That would be a good way to learn it
> But I would need someone to help with the trickier parts at least:
> - reading XML
> - hash libraries (MD5, SHA-1, SHA-256, maybe ED2K)
> - HTTP requests and responses including headers
> - bin2ascii for creating and parsing BitTorrent
>
> The Python code is a bit more than 2000 lines long and I would port
> most of them.


None of that's terribly difficult, I'd be happy to lend a hand (and I
wrote metalink support into an app on the mac, so I at least have a
vague idea of what's going on )

Fred

 
Reply With Quote
 
Anthony Bryan
Guest
Posts: n/a
 
      01-09-2008
On Jan 9, 2008 11:29 AM, Rene Leonhardt <> wrote:
> On 6 Jan., 00:22, Anthony Bryan <anthonybr...@gmail.com> wrote:
> > Hi,
> >
> > Would anyone be interested in working on a Metalink library for Ruby?
> > There's already one for PHP & Python (http://code.google.com/p/metalink-library/).

>
> Hello Anthony,
>
> I would like to help porting my library to Ruby.
> That would be a good way to learn it
> But I would need someone to help with the trickier parts at least:
> - reading XML
> - hash libraries (MD5, SHA-1, SHA-256, maybe ED2K)
> - HTTP requests and responses including headers
> - bin2ascii for creating and parsing BitTorrent
>
> The Python code is a bit more than 2000 lines long and I would port
> most of them.
>
> Anyone interested?


Rene, that would be great if you & Fred could collaborate.

I take it you've seen Fred's reply, he worked on Speed Download (a
cool and absolutely gorgeous download manager) from
http://www.yazsoft.com/

small world, didn't expect to run into both you guys here

--
(( Anthony Bryan ... Metalink [ http://www.metalinker.org ]
)) Easier, More Reliable, Self Healing Downloads

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Static library Vs. Dynamic library iceColdFire C++ 3 05-17-2005 06:16 AM
Dynamic Library or Static Library under Linux gouqizi.lvcha@gmail.com C++ 6 05-10-2005 03:16 PM
Re: Difference between Web Control Library and Class Library Alan Ferrandiz [MCT] ASP .Net 0 09-11-2004 01:51 PM
Re: Difference between Web Control Library and Class Library Mythran ASP .Net 0 08-24-2004 05:53 PM
Library in library... Sweep C++ 1 12-09-2003 04:12 AM



Advertisments