<?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.lang.ruby.wxruby.user">
    <title>gmane.comp.lang.ruby.wxruby.user</title>
    <link>http://blog.gmane.org/gmane.comp.lang.ruby.wxruby.user</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.lang.ruby.wxruby.user/5151"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5148"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5145"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5144"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5141"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5133"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5130"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5129"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5128"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5127"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5126"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5125"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5124"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5123"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5122"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5121"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5120"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5119"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5118"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5117"/>
      </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.lang.ruby.wxruby.user/5151">
    <title>Wx:Grid Setting Cursor Position</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5151</link>
    <description>&lt;pre&gt;I'm using the grid widget with an underlying GridTableBase and trying to
implement a "Find" button which would cause the current cursor position
to go to the next matching cell.  I'm wondering if there's an easy way
to do it?  I'm playing with the Grid.select_block_row(),
Grid.set_grid_cursor() and Grid.scroll() methods, but the results are a
bit erratic.

Is there a better way to do this than using Grid.move_cursor_down/right?

Thanks,
Norbert

&lt;/pre&gt;</description>
    <dc:creator>Norbert Lange</dc:creator>
    <dc:date>2012-05-22T21:29:03</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5148">
    <title>Grid Cell Background Colour</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5148</link>
    <description>&lt;pre&gt;On to my next question.  :-)

I've been trying to get the cell background colour to work for a
Wx::Grid
control.  Setting a default background colour works, but using the
set_cell_background_colour method for an individual cell doesn't.
Following is a short snippet of what I'm trying to do (essentially
highlight cells that don't match):

  columnNames = Array.[]("Col1", "Col2", "Col3")
  row1 = Array.[]("A", "B", "C")
  row2 = Array.[]("X", "Y", "Z")
  resultSet = Array.[](row1, row2)

  table = Table.new(columnNames, resultSet)
  grid = Wx::Grid.new(panel, -1)
  grid.set_table(table)
  &amp;lt; at &amp;gt;grid.set_cell_background_colour(1, 1, Wx::RED)

Any help is greatly appreciated.

Norbert

&lt;/pre&gt;</description>
    <dc:creator>Norbert Lange</dc:creator>
    <dc:date>2012-05-17T22:02:10</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5145">
    <title>Notebook Change Page Event Handling</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5145</link>
    <description>&lt;pre&gt;I'm still a bit new to Ruby, but have been using WxRuby for a couple of
months now.  I've created a notebook with a few pages, and am having a
tough time understanding how to implement an event handler that would
get called whenever the page gets changed.

Would someone be kind enough to post a simple example?

&lt;/pre&gt;</description>
    <dc:creator>Norbert Lange</dc:creator>
    <dc:date>2012-05-16T20:18:23</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5144">
    <title>key event down</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5144</link>
    <description>&lt;pre&gt;
i cannot do work key down event pls give me a hand thanks this is my code:



require "rubygems"
require "wx"
include Wx

class MyFrame &amp;lt; Frame

  def initialize
    super(nil,                             #Parent 
          :title =&amp;gt; "RadioBox Example",    #Displays on top of window 
          :pos =&amp;gt; [1030, 25],               #or Wx::DEFAULT_POSITION
          :size =&amp;gt; [250, 500]              #or Wx::DEFAULT_SIZE
          
          #For the position and size arguments, you don't need to specify Point and Size 
          #objects anymore. See: wxRuby Overview on the doc page wxruby_intro.html
    )
    evt_key_down() { | ev | &amp;lt; at &amp;gt;text_position.label = "working key down" }

    panel = Wx::Panel.new(self)    #Parent = self = this Frame

    drink_choices = ["coffee", "tea", "juice", "milk"]   #labels for radio buttons

    radios = Wx::RadioBox.new(
        panel,                        #Parent 
        :label =&amp;gt; "Drinks",           #Label for box surrounding radio buttons
        :pos =&amp;gt; [20, 5],            &lt;/pre&gt;</description>
    <dc:creator>Ivan Vilches Basaul</dc:creator>
    <dc:date>2012-05-11T07:16:10</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5141">
    <title>Printing (on Windows) without using any print dialogs</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5141</link>
    <description>&lt;pre&gt;I am developing a Windows application that is going to print on
envelopes (C5 and C6 envelopes) based on data, that is retrieved from an
external order system.

The application is going to be running mostly automatic. So I need to
bypass the print setup dialog, that is normally used when printing with
wxRuby.

This presents me with some problems. I create a Wx::PrintData object to
control the printer, paper size, orientation, etc. like this (the
printer name is just an example, I hold it in a config file):


pd = Wx::PrintData.new
pd.set_printer_name("Dell 3110cn")
pd.set_paper_id(Wx::PAPER_ENV_C6)

The last line gives me this error:

`set_paper_id': Expected argument 1 of type wxPaperSize, but got Fixnum
31 (TypeError)

The type wxPaperSize is not defined (as far as I can see), but it iś
something coming from the SWIG interface. I don't really know how to
solve this.

If outputting the existing paper_id I get:


#&amp;lt;SWIG::TYPE_p_wxPaperSize:0x2173c40&amp;gt;

Which doesn't really make it any clearer for me. So how &lt;/pre&gt;</description>
    <dc:creator>Carsten Gehling</dc:creator>
    <dc:date>2012-04-17T11:33:03</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5133">
    <title>wxAuiFloatingFrame get_parent not supported</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5133</link>
    <description>&lt;pre&gt;ruby 1.9.3, wxWidgets 2.8.11, wxruby 2.0.1, ubuntu 11.10 x86_64

To get my sizers to update everything in some cases I need to:

self.parent.send_size_event

Self is a derived class of Wx::ScrolledWindow

The scrolledWindow is embedded in an AUI managed pane. While the pane  
is attached, the parent class is Wx::AuiFrame. At this point I can  
trigger an event that in turn calls the send_size_event and things are  
good.

If I detach the pane and fire the event that calls the  
self.parent.send_size_event I get the below error:

/wx/accessors.rb:48:in `get_parent': Error wrapping object; class  
`wxAuiFloatingFrame' is not supported in wxRuby (NotImplementedError)

I am thinking that the floating frame is a top frame and there isn't  
an application parent or I simply (hah) need to implement get_parent  
in some manner to deal with the size event feedback I want.

My current theory is I need to find a proper hook at some level above  
my embedded window. I am having trouble finding a hook or other method  
t&lt;/pre&gt;</description>
    <dc:creator>tk&lt; at &gt;tkinnovations.net</dc:creator>
    <dc:date>2012-03-01T21:27:46</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5130">
    <title>invalid gem format on ruby 1.9</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5130</link>
    <description>&lt;pre&gt;Hi,

I have developed a small wxruby app on my old mac using wxruby 2.0.1
on ruby 1.8.6.  I am trying to upgrade now, and have encountered some
problems.

I use rvm to install ruby 1.9.2, then I run gem install wxruby-ruby19
and get the following error:

ERROR:  While executing gem ... (Zlib::DataError)
    invalid literal/lengths set

I use rvm to install ruby 1.9.1, then I run gem install wxruby-ruby19
and get the following error:

ERROR:  Error installing wxruby-ruby19:
invalid gem format for
/Users/josh/.rvm/gems/ruby-1.9.1-p431/cache/wxruby-ruby19-2.0.1-x86-darwin-9.gem

Finally, I install the stable version of ruby for windows on a windows
box and run gem install wxruby-ruby19 and get the same invalid gem
format for the x86-ming32 gem.

Any help would be much appreciated!

Regards,
Josh
&lt;/pre&gt;</description>
    <dc:creator>Joshua Shapiro</dc:creator>
    <dc:date>2012-02-21T01:34:35</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5129">
    <title>TreeCtrl event help</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5129</link>
    <description>&lt;pre&gt;hey could someone hel me cus I need to get the label for the selected
item when expanded but when I use the method evt_tree_expaded or
evt_tree_expanding it gives me nil like this:

require 'wx'
include Wx
class MyFrame &amp;lt; Frame
  def initialize
    super(nil,
    :title =&amp;gt; "prueba"
    )
    &amp;lt; at &amp;gt;my_panel = Panel.new(self)
    &amp;lt; at &amp;gt;my_label = StaticText.new(&amp;lt; at &amp;gt;my_panel,
    :label =&amp;gt; "MY",
    :pos =&amp;gt; [150, 25],
    :size =&amp;gt; Wx::DEFAULT_SIZE)
    &amp;lt; at &amp;gt;my_textbox = TextCtrl.new(&amp;lt; at &amp;gt;my_panel,
    :name =&amp;gt; "Default Textbox Value",
    :pos =&amp;gt; [20, 20])
    &amp;lt; at &amp;gt;my_combo = Wx::ComboBox.new(&amp;lt; at &amp;gt;my_panel,
    :name =&amp;gt; "Default Combo Text",
    :pos =&amp;gt; [150, 25],
    :choices =&amp;gt; ['Item 1', 'Item 2', 'Item 3'])
    &amp;lt; at &amp;gt;my_button = Button.new(&amp;lt; at &amp;gt;my_panel, -1, 'My Button Text')
    evt_button &amp;lt; at &amp;gt;my_button, :my_button_click
    &amp;lt; at &amp;gt;my_panel_sizer = BoxSizer.new(VERTICAL)
    &amp;lt; at &amp;gt;my_panel.set_sizer(&amp;lt; at &amp;gt;my_panel_sizer)
    &amp;lt; at &amp;gt;my_panel_sizer.add(&amp;lt; at &amp;gt;my_label, 0, GROW|ALL, 2)
    &amp;lt; at &amp;gt;my_panel_sizer.add(&amp;lt; at &amp;gt;my_textbox, 0, GROW|ALL, 2)
    &amp;lt; at &amp;gt;my_panel_sizer.add(&amp;lt; at &amp;gt;my_combo, 0, G&lt;/pre&gt;</description>
    <dc:creator>andres d.</dc:creator>
    <dc:date>2012-02-20T04:05:39</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5128">
    <title>o0o0o0o0o0o0 Illinois vs Michigan live free Top 25 NCAA Basketball Watch Online HD on Pc</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5128</link>
    <description>&lt;pre&gt;Watch Illinois vs Michigan live free Top 25 NCAA Basketball Online HD on
Pc Enjoy the most competitive NCAA Basketball match between Illinois vs
Michigan live online on your PC. This is the best online sports coverage
TV. You can watch all the matches of the season live by using this
online sports TV 12th, February,2012. You should not waste time by
searching any other way.rugby, tennis, golf, etc.Hello Man Do not Miss
the big game!



Match schedules
Illinois vs Michigan live
NCAA Basketball
Time : 1:00 PM ET
Date:Sunday,12th, February,2012

http://online-rugby.blogspot.com/2012/02/illinois-vs-michigan-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/illinois-vs-michigan-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/illinois-vs-michigan-live-free-top-25.html
Click Here To Watch Illinois vs Michigan Live




Illinois vs Michigan live, Illinois vs Michigan live stream, Illinois vs
Michigan live stream free, Illinois vs Michigan live streaming, Illinois
vs Michigan live online,&lt;/pre&gt;</description>
    <dc:creator>shil shilbari</dc:creator>
    <dc:date>2012-02-12T17:45:44</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5127">
    <title>&lt; at &gt;&lt; at &gt;&lt; at &gt;&lt; at &gt; Valentines day &lt; at &gt;&lt; at &gt;&lt; at &gt;&lt; at &gt; Michigan vs Illinois live free Top 25 NCAA Basketball Watch Online HD on Pc</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5127</link>
    <description>&lt;pre&gt;Watch Michigan vs Illinois live free Top 25 NCAA Basketball Online HD on
Pc Enjoy the most competitive NCAA Basketball match between Michigan vs
Illinois live online on your PC. This is the best online sports coverage
TV. You can watch all the matches of the season live by using this
online sports TV 12th, February,2012. You should not waste time by
searching any other way.rugby, tennis, golf, etc.Hello Man Do not Miss
the big game!



Match schedules
Michigan vs Illinois live
NCAA Basketball
Time : 1:00 PM ET
Date:Sunday,12th, February,2012

http://online-rugby.blogspot.com/2012/02/michigan-vs-illinois-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/michigan-vs-illinois-live-free-top-25.html
http://online-rugby.blogspot.com/2012/02/michigan-vs-illinois-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/michigan-vs-illinois-live-free-top-25.html
Click Here To Watch Michigan vs Illinois Live




Michigan vs Illinois live, Michigan vs Illinois live stream, Michigan vs
Illinois live&lt;/pre&gt;</description>
    <dc:creator>shil shilbari</dc:creator>
    <dc:date>2012-02-12T17:30:53</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5126">
    <title>&lt; at &gt;&lt; at &gt;&lt; at &gt;&lt; at &gt; Valentines day &lt; at &gt;&lt; at &gt;&lt; at &gt;&lt; at &gt; Illinois vs Michigan live free Top 25 NCAA Basketball Watch Online HD on P</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5126</link>
    <description>&lt;pre&gt;Watch Illinois vs Michigan live free Top 25 NCAA Basketball Online HD on
Pc Enjoy the most competitive NCAA Basketball match between Illinois vs
Michigan live online on your PC. This is the best online sports coverage
TV. You can watch all the matches of the season live by using this
online sports TV 12th, February,2012. You should not waste time by
searching any other way.rugby, tennis, golf, etc.Hello Man Do not Miss
the big game!



Match schedules
Illinois vs Michigan live
NCAA Basketball
Time : 1:00 PM ET
Date:Sunday,12th, February,2012

http://online-rugby.blogspot.com/2012/02/illinois-vs-michigan-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/illinois-vs-michigan-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/illinois-vs-michigan-live-free-top-25.html
http://online-rugby.blogspot.com/2012/02/illinois-vs-michigan-live-free-top-25.html
Click Here To Watch Illinois vs Michigan Live




Illinois vs Michigan live, Illinois vs Michigan live stream, Illinois vs
Michigan live&lt;/pre&gt;</description>
    <dc:creator>shil shilbari</dc:creator>
    <dc:date>2012-02-12T17:27:51</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5125">
    <title>o0o0o0o0o0o0 Georgetown vs St John's live free Top 25 NCAA Basketball Watch Online HD on Pc</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5125</link>
    <description>&lt;pre&gt;Watch Georgetown vs St John's live free Top 25 NCAA Basketball Online HD
on Pc Enjoy the most competitive NCAA Basketball match between
Georgetown vs St John's live online on your PC. This is the best online
sports coverage TV. You can watch all the matches of the season live by
using this online sports TV 12th, February,2012. You should not waste
time by searching any other way.rugby, tennis, golf, etc.Hello Man Do
not Miss the big game!



Match schedules
Georgetown vs St John's live
NCAA Basketball
Time : 1:00 PM ET
Date:Sunday,12th, February,2012

http://online-rugby.blogspot.com/2012/02/georgetown-vs-st-johns-live-free-top-25.html
http://online-rugby.blogspot.com/2012/02/georgetown-vs-st-johns-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/georgetown-vs-st-johns-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/georgetown-vs-st-johns-live-free-top-25.html

Click Here To Watch Georgetown vs St John's Live




Georgetown vs St John's live, Georgetown vs St John's live stream&lt;/pre&gt;</description>
    <dc:creator>shil shilbari</dc:creator>
    <dc:date>2012-02-12T17:40:55</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5124">
    <title>St John's vs Georgetown live free Top 25 NCAA Basketball Watch Online HD on Pc</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5124</link>
    <description>&lt;pre&gt;Watch St John's vs Georgetown live free Top 25 NCAA Basketball Online HD
on Pc Enjoy the most competitive NCAA Basketball match between St John's
vs Georgetown live online on your PC. This is the best online sports
coverage TV. You can watch all the matches of the season live by using
this online sports TV 12th, February,2012. You should not waste time by
searching any other way.rugby, tennis, golf, etc.Hello Man Do not Miss
the big game!



Match schedules
St John's vs Georgetown live
NCAA Basketball
Time : 1:00 PM ET
Date:Sunday,12th, February,2012
http://online-rugby.blogspot.com/2012/02/st-johns-vs-georgetown-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/st-johns-vs-georgetown-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/st-johns-vs-georgetown-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/st-johns-vs-georgetown-live-free-top-25.html

Click Here To Watch St John's vs Georgetown Live




St John's vs Georgetown live, St John's vs Georgetown live stream&lt;/pre&gt;</description>
    <dc:creator>shil shilbari</dc:creator>
    <dc:date>2012-02-12T18:14:23</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5123">
    <title>%%%%%% Michigan vs Illinois live free Top 25 NCAA Basketball Watch Online HD on Pc</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5123</link>
    <description>&lt;pre&gt;Watch Michigan vs Illinois live free Top 25 NCAA Basketball Online HD on
Pc Enjoy the most competitive NCAA Basketball match between Michigan vs
Illinois live online on your PC. This is the best online sports coverage
TV. You can watch all the matches of the season live by using this
online sports TV 12th, February,2012. You should not waste time by
searching any other way.rugby, tennis, golf, etc.Hello Man Do not Miss
the big game!



Match schedules
Michigan vs Illinois live
NCAA Basketball
Time : 1:00 PM ET
Date:Sunday,12th, February,2012

http://online-rugby.blogspot.com/2012/02/michigan-vs-illinois-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/michigan-vs-illinois-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/michigan-vs-illinois-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/michigan-vs-illinois-live-free-top-25.html


Click Here To Watch Michigan vs Illinois Live




Michigan vs Illinois live, Michigan vs Illinois live stream, Michigan vs
Illinois l&lt;/pre&gt;</description>
    <dc:creator>shil shilbari</dc:creator>
    <dc:date>2012-02-12T18:11:28</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5122">
    <title>Georgetown vs St John's live free Top 25 NCAA Basketball Watch Online HD on Pc</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5122</link>
    <description>&lt;pre&gt;Watch Georgetown vs St John's live free Top 25 NCAA Basketball Online HD
on Pc Enjoy the most competitive NCAA Basketball match between
Georgetown vs St John's live online on your PC. This is the best online
sports coverage TV. You can watch all the matches of the season live by
using this online sports TV 12th, February,2012. You should not waste
time by searching any other way.rugby, tennis, golf, etc.Hello Man Do
not Miss the big game!



Match schedules
Georgetown vs St John's live
NCAA Basketball
Time : 1:00 PM ET
Date:Sunday,12th, February,2012
http://online-rugby.blogspot.com/2012/02/georgetown-vs-st-johns-live-free-top-25.html

Click Here To Watch Georgetown vs St John's Live
http://online-rugby.blogspot.com/2012/02/georgetown-vs-st-johns-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/georgetown-vs-st-johns-live-free-top-25.html

Georgetown vs St John's live, Georgetown vs St John's live stream,
Georgetown vs St John's live stream free, Georgetown vs St John's live
streaming, Georget&lt;/pre&gt;</description>
    <dc:creator>shil shilbari</dc:creator>
    <dc:date>2012-02-12T18:16:53</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5121">
    <title>St John's vs Georgetown live free Top 25 NCAA Basketball Watch Online HD on Pc</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5121</link>
    <description>&lt;pre&gt;Watch St John's vs Georgetown live free Top 25 NCAA Basketball Online HD
on Pc Enjoy the most competitive NCAA Basketball match between St John's
vs Georgetown live online on your PC. This is the best online sports
coverage TV. You can watch all the matches of the season live by using
this online sports TV 12th, February,2012. You should not waste time by
searching any other way.rugby, tennis, golf, etc.Hello Man Do not Miss
the big game!



Match schedules
St John's vs Georgetown live
NCAA Basketball
Time : 1:00 PM ET
Date:Sunday,12th, February,2012


Click Here To Watch St John's vs Georgetown Live
http://online-rugby.blogspot.com/2012/02/st-johns-vs-georgetown-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/st-johns-vs-georgetown-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/st-johns-vs-georgetown-live-free-top-25.html



St John's vs Georgetown live, St John's vs Georgetown live stream, St
John's vs Georgetown live stream free, St John's vs Georgetown live
streaming, St &lt;/pre&gt;</description>
    <dc:creator>shil shilbari</dc:creator>
    <dc:date>2012-02-12T18:32:26</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5120">
    <title>Michigan vs Illinois live free Top 25 NCAA Basketball Watch Online HD on Pc</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5120</link>
    <description>&lt;pre&gt;Watch Michigan vs Illinois live free Top 25 NCAA Basketball Online HD on
Pc Enjoy the most competitive NCAA Basketball match between Michigan vs
Illinois live online on your PC. This is the best online sports coverage
TV. You can watch all the matches of the season live by using this
online sports TV 12th, February,2012. You should not waste time by
searching any other way.rugby, tennis, golf, etc.Hello Man Do not Miss
the big game!



Match schedules
Michigan vs Illinois live
NCAA Basketball
Time : 1:00 PM ET
Date:Sunday,12th, February,2012
http://online-rugby.blogspot.com/2012/02/michigan-vs-illinois-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/michigan-vs-illinois-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/michigan-vs-illinois-live-free-top-25.html
http://online-rugby.blogspot.com/2012/02/michigan-vs-illinois-live-free-top-25.html

Click Here To Watch Michigan vs Illinois Live




Michigan vs Illinois live, Michigan vs Illinois live stream, Michigan vs
Illinois live&lt;/pre&gt;</description>
    <dc:creator>shil shilbari</dc:creator>
    <dc:date>2012-02-12T18:29:48</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5119">
    <title>%%%%%%Watch Michigan vs Illinois live free Top 25 NCAA Basketball Watch Online HD on Pc</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5119</link>
    <description>&lt;pre&gt;Watch Michigan vs Illinois live free Top 25 NCAA Basketball Online HD on
Pc Enjoy the most competitive NCAA Basketball match between Michigan vs
Illinois live online on your PC. This is the best online sports coverage
TV. You can watch all the matches of the season live by using this
online sports TV 12th, February,2012. You should not waste time by
searching any other way.rugby, tennis, golf, etc.Hello Man Do not Miss
the big game!



Match schedules
Michigan vs Illinois live
NCAA Basketball
Time : 1:00 PM ET
Date:Sunday,12th, February,2012

http://online-rugby.blogspot.com/2012/02/michigan-vs-illinois-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/michigan-vs-illinois-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/michigan-vs-illinois-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/michigan-vs-illinois-live-free-top-25.html
Click Here To Watch Michigan vs Illinois Live




Michigan vs Illinois live, Michigan vs Illinois live stream, Michigan vs
Illinois liv&lt;/pre&gt;</description>
    <dc:creator>shil shilbari</dc:creator>
    <dc:date>2012-02-12T17:49:14</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5118">
    <title>%%%%%% Illinois vs Michigan live free Top 25 NCAA Basketball Watch Online HD on Pc</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5118</link>
    <description>&lt;pre&gt;Watch Georgetown vs St John's live free Top 25 NCAA Basketball Online HD
on Pc Enjoy the most competitive NCAA Basketball match between
Georgetown vs St John's live online on your PC. This is the best online
sports coverage TV. You can watch all the matches of the season live by
using this online sports TV 12th, February,2012. You should not waste
time by searching any other way.rugby, tennis, golf, etc.Hello Man Do
not Miss the big game!



Match schedules
Georgetown vs St John's live
NCAA Basketball
Time : 1:00 PM ET
Date:Sunday,12th, February,2012
http://online-rugby.blogspot.com/2012/02/georgetown-vs-st-johns-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/georgetown-vs-st-johns-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/georgetown-vs-st-johns-live-free-top-25.html

http://online-rugby.blogspot.com/2012/02/georgetown-vs-st-johns-live-free-top-25.html

Click Here To Watch Georgetown vs St John's Live




Georgetown vs St John's live, Georgetown vs St John's live stream&lt;/pre&gt;</description>
    <dc:creator>shil shilbari</dc:creator>
    <dc:date>2012-02-12T18:02:23</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5117">
    <title>QQQQQQQQQ WATCH Aston Villa vs Manchester City LIVE STREAMING ONLINE English Premier League SOCCER H</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5117</link>
    <description>&lt;pre&gt;Watch Live Streaming English Premier League Soccer Match between hot
favorite Aston Villa vs Manchester City Online HQD TV Link on Your PC or
Laptop. We are providing a certified 4500 Channels &amp;amp; one platform HD TV
link embedding from popular website like justin.TV, ustream, live on Fox
Sports, ESPN live TV channel, Fox spots in USA, Fox Sports in UK,
Australian TV channel, ESPN Brazil sports TV, P2P using sopcast to watch
Aston Villa vs Manchester City live stream video broadcast TV feed on
your PC. So don’t be hesitated just follow our instruction and Get live
streaming HD TV Link below and you are completely satisfied in our
service.




Just Click to Watch Aston Villa vs Manchester City Live

Match Schedule:
Competitor : Aston Villa vs Manchester City Live
Series : English Premier League
Kick Off : From 16:00 (GMT)
Date : Sunday, 12th,February , 2012
http://online-rugby.blogspot.com/2012/02/watch-aston-villa-vs-manchester-city.html

http://online-rugby.blogspot.com/2012/02/watch-aston-villa-vs-mancheste&lt;/pre&gt;</description>
    <dc:creator>shil shilbari</dc:creator>
    <dc:date>2012-02-12T15:58:27</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5116">
    <title>erWATCH Aston Villa vs Manchester City LIVE STREAMING ONLINE English Premier League SOCCER HD TV LIN</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.wxruby.user/5116</link>
    <description>&lt;pre&gt;Watch Live Streaming English Premier League Soccer Match between hot
favorite Aston Villa vs Manchester City Online HQD TV Link on Your PC or
Laptop. We are providing a certified 4500 Channels &amp;amp; one platform HD TV
link embedding from popular website like justin.TV, ustream, live on Fox
Sports, ESPN live TV channel, Fox spots in USA, Fox Sports in UK,
Australian TV channel, ESPN Brazil sports TV, P2P using sopcast to watch
Aston Villa vs Manchester City live stream video broadcast TV feed on
your PC. So don’t be hesitated just follow our instruction and Get live
streaming HD TV Link below and you are completely satisfied in our
service.




Just Click to Watch Aston Villa vs Manchester City Live

Match Schedule:
Competitor : Aston Villa vs Manchester City Live
Series : English Premier League
Kick Off : From 16:00 (GMT)
Date : Sunday, 12th,February , 2012

http://online-rugby.blogspot.com/2012/02/watch-aston-villa-vs-manchester-city.html

http://online-rugby.blogspot.com/2012/02/watch-aston-villa-vs-manchest&lt;/pre&gt;</description>
    <dc:creator>shil shilbari</dc:creator>
    <dc:date>2012-02-12T16:32:17</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.lang.ruby.wxruby.user">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.lang.ruby.wxruby.user</link>
  </textinput>
</rdf:RDF>

