In my app, a Story has a summary field, and on the page that lists stories, i want to show the first ''n'' (eg twenty) words from the summary (which i would follow with "..."). Does anyone know a simple way to do this? I can think of complicated and ugly ways to do it, involving going through the string a char at a time counting spaces, but i''m guessing there''s a neat rails helper (since there usually is!). thanks max -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Hi Max, On 5 Sep 2007, at 12:06, Max Williams wrote:> > In my app, a Story has a summary field, and on the page that lists > stories, i want to show the first ''n'' (eg twenty) words from the > summary > (which i would follow with "..."). > > Does anyone know a simple way to do this? I can think of complicated > and ugly ways to do it, involving going through the string a char at a > time counting spaces, but i''m guessing there''s a neat rails helper > (since there usually is!).I usually go for the roll-your-own method, something like this should work nicely for you, just pop the method in your application_helper and call it in your views. def first_x_words(str,n=20,finish=''…'') str.split('' '')[0,n].inject{|sum,word| sum + '' '' + word} + finish end my_string = ''Praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi nam! Modo typi qui nunc nobis videntur parum clari fiant sollemnes?'' p first_x_words(my_string) # => "Praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi nam! Modo typi qui nunc nobis videntur parum clari…" p first_x_words(my_string, 5, ''!!!'') # => "Praesent luptatum zzril delenit augue!!!" Hope this helps. Douglas F Shearer dougal.s-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org http://douglasfshearer.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Douglas Shearer wrote:> > def first_x_words(str,n=20,finish=''…'') > str.split('' '')[0,n].inject{|sum,word| sum + '' '' + word} + finish > end> > Hope this helps. > > Douglas F Shearer > dougal.s-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org > http://douglasfshearer.comThat''s perfect, thanks Douglas. (i would never think to use inject as it still confuses me a little!) cheers max -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Max Williams wrote:> Douglas Shearer wrote: > >> >> def first_x_words(str,n=20,finish=''…'') >> str.split('' '')[0,n].inject{|sum,word| sum + '' '' + word} + finish >> end > >> >> Hope this helps. >> >> Douglas F Shearer >> dougal.s-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org >> http://douglasfshearer.com > > That''s perfect, thanks Douglas. > (i would never think to use inject as it still confuses me a little!) > > cheers > maxBTW, i''m just curious - why do you prefer the ellipsis symbol @hellip to "..."? Is this a convention? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On 05 Sep 2007, at 13:38, Max Williams wrote:> BTW, i''m just curious - why do you prefer the ellipsis symbol > @hellip to > "..."? Is this a convention?… renders correctly across all browsers, even if they don''t respect the utf-8 encoding defined in the header. Best regards Peter De Berdt --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On 5 Sep 2007, at 12:56, Peter De Berdt wrote:> > On 05 Sep 2007, at 13:38, Max Williams wrote: > >> BTW, i''m just curious - why do you prefer the ellipsis symbol >> @hellip to >> "..."? Is this a convention? > > … renders correctly across all browsers, even if they don''t > respect the utf-8 encoding defined in the header.Peter hit that nail on the head. It also looks a bit neater as the letter-spacing is smaller between the periods of &hellip. Glad it helped you out. Douglas F Shearer dougal.s-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org http://douglasfshearer.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Douglas Shearer wrote:>> >> … renders correctly across all browsers, even if they don''t >> respect the utf-8 encoding defined in the header. > > Peter hit that nail on the head. It also looks a bit neater as the > letter-spacing is smaller between the periods of &hellip.ahhh. nice tip, thanks guys. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
First of all, split takes a limiter, and its inverse is join: words = str.split('' '', n + 1) words[-1] = finish words.join('' '') But is this really what you want? Suppose the book was a discussion on Mary Poppins? It seems to me that you have space for n characters, and you need to end at a word break: letters = str[0..limit - finish.length] letters.sub!(/ \S*$/) letters + " " + finish On Sep 5, 7:08 am, Max Williams <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> Douglas Shearer wrote: > > >> … renders correctly across all browsers, even if they don''t > >> respect the utf-8 encoding defined in the header. > > > Peter hit that nail on the head. It also looks a bit neater as the > > letter-spacing is smaller between the periods of &hellip. > > ahhh. nice tip, thanks guys. > -- > Posted viahttp://www.ruby-forum.com/.--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Student wrote:> First of all, split takes a limiter, and its inverse is join: > words = str.split('' '', n + 1) > words[-1] = finish > words.join('' '') > > But is this really what you want? Suppose the book was a discussion > on Mary Poppins? It seems to me that you have space for n characters, > and you need to end at a word break: > letters = str[0..limit - finish.length] > letters.sub!(/ \S*$/) > letters + " " + finish > > > On Sep 5, 7:08 am, Max Williams <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org>Your suggestion is actually closer to what i want - thanks! However, i''m having problems with the regular expression is sub - shouldn''t sub take two parameters? What exactly is this line meant to be doing? I put the above into a helper method, and when i call it i get a strange error: "wrong number of arguments (1 for 2)" I''m definitely calling it correctly, and when i take the .sub line out then it works (except for completing the last word, obviously). Would you mind explaining this a bit? thanks a lot max -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
> > def first_x_words(str,n=20,finish=''…'') > > str.split('' '')[0,n].inject{|sum,word| sum + '' '' + word} + finish > > end> That''s perfect, thanks Douglas. > (i would never think to use inject as it still confuses me a little!)No need for inject--you can rewrite that line: str.split('' '')[0,n].join('' '') + finish If, like another poster said, it is a CHARACTER limitation, yet you still want to break on a word boundary, then replace the line with: str[0,n].sub(/ ?\S*$/,'''') + finish - Mark. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Max Williams wrote:> In my app, a Story has a summary field, and on the page that lists > stories, i want to show the first ''n'' (eg twenty) words from the summary > (which i would follow with "..."). > > Does anyone know a simple way to do this? I can think of complicated > and ugly ways to do it, involving going through the string a char at a > time counting spaces, but i''m guessing there''s a neat rails helper > (since there usually is!). > > thanks > maxHey Max, do you not just want the truncate rails helper? http://api.rubyonrails.org/classes/ActionView/Helpers/TextHelper.html#M000615 -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On Sep 5, 6:04 pm, Matthew Rudy <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> Hey Max, > do you not just want the truncate rails helper? > > http://api.rubyonrails.org/classes/ActionView/Helpers/TextHelper.html...No, because he wants to break only on word boundaries. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
inject here is unnecessarily expensive. I try to avoid using inject if it isn''t really needed. Using ActionView''s truncate() as a model: def truncate_words(text, num_words = 6, truncate_string = "…") if text.nil? then return end arr = text.split('' '') arr.length > num_words ? arr[0...num_words].join('' '') + truncate_string : text end ReinH reinh.com On Sep 5, 6:30 am, Max Williams <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> Douglas Shearer wrote: > > > def first_x_words(str,n=20,finish=''…'') > > str.split('' '')[0,n].inject{|sum,word| sum + '' '' + word} + finish > > end > > > Hope this helps. > > > Douglas F Shearer > > douga...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org > >http://douglasfshearer.com > > That''s perfect, thanks Douglas. > (i would never think to use inject as it still confuses me a little!) > > cheers > max > -- > Posted viahttp://www.ruby-forum.com/.--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Or how about using an extensible truncation factory: class Truncator def initialize( string, length, ending, truncate_on = "" ) arr = string.split( truncate_on ) @truncated_string = arr.length > length ? arr[0...length].join( truncate_on ).gsub( /\W\Z/, '''') + ending : string end def to_s @truncated_string end end def truncate(text, length = 30, ending = "…") Truncator.new(text, length, ending).to_s end def truncate_words(text, length = 8, ending = "…") Truncator.new( text, length, ending, truncate_on = " ").to_s end def truncate_sentences(text, length = 3, ending = "…") Truncator.new( text, length, ending, truncate_on = ".").to_s end Usage: irb(main):033:0> lorem = "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." irb(main):034:0> truncate lorem => "Lorem ipsum dolor sit amet, co…" irb(main):035:0> truncate_words lorem => "Lorem ipsum dolor sit amet, consectetur adipisicing elit…" irb(main):036:0> truncate_sentences lorem => "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur…" ReinH reinh.com On Sep 5, 10:36 pm, Rein Henrichs <rein.henri...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> inject here is unnecessarily expensive. I try to avoid using inject if > it isn''t really needed. > > Using ActionView''s truncate() as a model: > > def truncate_words(text, num_words = 6, truncate_string = "…") > if text.nil? then return end > arr = text.split('' '') > arr.length > num_words ? arr[0...num_words].join('' '') + > truncate_string : text > end > > ReinH > reinh.com > > On Sep 5, 6:30 am, Max Williams <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> > wrote: > > > Douglas Shearer wrote: > > > > def first_x_words(str,n=20,finish=''…'') > > > str.split('' '')[0,n].inject{|sum,word| sum + '' '' + word} + finish > > > end > > > > Hope this helps. > > > > Douglas F Shearer > > > douga...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org > > >http://douglasfshearer.com > > > That''s perfect, thanks Douglas. > > (i would never think to use inject as it still confuses me a little!) > > > cheers > > max > > -- > > Posted viahttp://www.ruby-forum.com/.--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On Sep 5, 2007, at 8:58 AM, Max Williams wrote:> > Student wrote: >> First of all, split takes a limiter, and its inverse is join: >> words = str.split('' '', n + 1) >> words[-1] = finish >> words.join('' '') >> >> But is this really what you want? Suppose the book was a discussion >> on Mary Poppins? It seems to me that you have space for n >> characters, >> and you need to end at a word break: >> letters = str[0..limit - finish.length] >> letters.sub!(/ \S*$/) >> letters + " " + finish >> >> >> On Sep 5, 7:08 am, Max Williams <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> > > Your suggestion is actually closer to what i want - thanks! However, > i''m having problems with the regular expression is sub - shouldn''t sub > take two parameters? What exactly is this line meant to be doing? > > I put the above into a helper method, and when i call it i get a > strange > error: > "wrong number of arguments (1 for 2)" > > I''m definitely calling it correctly, and when i take the .sub line out > then it works (except for completing the last word, obviously). > > Would you mind explaining this a bit? >Check out this helper: http://pastie.textmate.org/94218 -- Benjamin Curtis http://www.bencurtis.com/ -- blog http://agilewebdevelopment.com/guides -- Rails tutorials --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Basically the same thing aside from the encapsulation in a class. Didn''t see that one when I wrote mine. I went ahead and pluginized mine, though, since I''ll probaby use it often: svn://reinh.com/plugins/truncator truncate, truncate_words, truncate_sentences, truncate_on On Sep 6, 12:18 am, Benjamin Curtis <ra...-4dtGyw5agdmakBO8gow8eQ@public.gmane.org> wrote:> On Sep 5, 2007, at 8:58 AM, Max Williams wrote: > > > > > > > Student wrote: > >> First of all, split takes a limiter, and its inverse is join: > >> words = str.split('' '', n + 1) > >> words[-1] = finish > >> words.join('' '') > > >> But is this really what you want? Suppose the book was a discussion > >> on Mary Poppins? It seems to me that you have space for n > >> characters, > >> and you need to end at a word break: > >> letters = str[0..limit - finish.length] > >> letters.sub!(/ \S*$/) > >> letters + " " + finish > > >> On Sep 5, 7:08 am, Max Williams <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> > > > Your suggestion is actually closer to what i want - thanks! However, > > i''m having problems with the regular expression is sub - shouldn''t sub > > take two parameters? What exactly is this line meant to be doing? > > > I put the above into a helper method, and when i call it i get a > > strange > > error: > > "wrong number of arguments (1 for 2)" > > > I''m definitely calling it correctly, and when i take the .sub line out > > then it works (except for completing the last word, obviously). > > > Would you mind explaining this a bit? > > Check out this helper:http://pastie.textmate.org/94218 > > -- > Benjamin Curtishttp://www.bencurtis.com/-- bloghttp://agilewebdevelopment.com/guides-- Rails tutorials--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Oh, I forgot to mention, it also removes trailing punctuation from the truncated string to avoid typographical errors like: "Lorem ipsum,..." On Sep 6, 1:02 am, Rein Henrichs <rein.henri...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Basically the same thing aside from the encapsulation in a class. > Didn''t see that one when I wrote mine. I went ahead and pluginized > mine, though, since I''ll probaby use it often: > > svn://reinh.com/plugins/truncator > > truncate, truncate_words, truncate_sentences, truncate_on > > On Sep 6, 12:18 am, Benjamin Curtis <ra...-4dtGyw5agdmakBO8gow8eQ@public.gmane.org> wrote: > > > On Sep 5, 2007, at 8:58 AM, Max Williams wrote: > > > > Student wrote: > > >> First of all, split takes a limiter, and its inverse is join: > > >> words = str.split('' '', n + 1) > > >> words[-1] = finish > > >> words.join('' '') > > > >> But is this really what you want? Suppose the book was a discussion > > >> on Mary Poppins? It seems to me that you have space for n > > >> characters, > > >> and you need to end at a word break: > > >> letters = str[0..limit - finish.length] > > >> letters.sub!(/ \S*$/) > > >> letters + " " + finish > > > >> On Sep 5, 7:08 am, Max Williams <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> > > > > Your suggestion is actually closer to what i want - thanks! However, > > > i''m having problems with the regular expression is sub - shouldn''t sub > > > take two parameters? What exactly is this line meant to be doing? > > > > I put the above into a helper method, and when i call it i get a > > > strange > > > error: > > > "wrong number of arguments (1 for 2)" > > > > I''m definitely calling it correctly, and when i take the .sub line out > > > then it works (except for completing the last word, obviously). > > > > Would you mind explaining this a bit? > > > Check out this helper:http://pastie.textmate.org/94218 > > > -- > > Benjamin Curtishttp://www.bencurtis.com/--bloghttp://agilewebdevelopment.com/guides--Rails tutorials--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Please unsubscribe me from this google group Thanks Joseph Chapman, _________________________________________________________________ Get free emoticon packs and customisation from Windows Live. http://www.pimpmylive.co.uk --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Joseph: To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org Bye! Mohit. joseph chapman wrote:> > Please unsubscribe me from this google group > > Thanks > > Joseph Chapman, > > > > > ------------------------------------------------------------------------ > Are you the Quizmaster? Play BrainBattle with a friend now! > <http://specials.uk.msn.com/brainbattle> > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Mohit Sindhwani wrote:> Joseph: > To unsubscribe from this group, send email to > rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > Bye! > Mohit.he''s a spammer, ignore him :) -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Changing the subject back to something useful. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Max Williams wrote:> Mohit Sindhwani wrote: > >> Joseph: >> To unsubscribe from this group, send email to >> rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org >> >> Bye! >> Mohit. >> > > he''s a spammer, ignore him :) >Oops... Didn''t realize that, thanks! But, all the more reason to send him unsubscribe instructions :P Cheers, Mohit. 9/7/2007 | 12:08 PM. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Hmm.. why not ban him? Hehe On 9/7/07, Mohit Sindhwani <mo_mail-RxrYI66vbj0AvxtiuMwx3w@public.gmane.org> wrote:> > Max Williams wrote: > > Mohit Sindhwani wrote: > > > >> Joseph: > >> To unsubscribe from this group, send email to > >> rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > >> > >> Bye! > >> Mohit. > >> > > > > he''s a spammer, ignore him :)-- Ramon Tayag --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
joseph chapman wrote:> Please unsubscribe me from this google group > > Thanks > > Joseph Chapman,LooooooooL -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
hi its seems like you have done a hard work on it. I have got lots of information from your post. Really appreciate your work.!! It was describe very nicely keep us doing good work.. http://www.dealsourcedirect.com/ion-tape2pc.html -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Steve Austen wrote in post #964735:> hi its seems like you have done a hard work on it. I have got lots of > > information from your post. Really appreciate your work.!! It was > > describe very nicely keep us doing good work.. > http://www.dealsourcedirect.com/ion-tape2pc.htmlCan we ban this spammer? Best, -- Marnen Laibow-Koser http://www.marnen.org marnen-sbuyVjPbboAdnm+yROfE0A@public.gmane.org Sent from my iPhone -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.