similar to: geat URL check this out

Displaying 20 results from an estimated 90000 matches similar to: "geat URL check this out"

2007 Nov 13
0
COMP
SYSTEM ADMINSTRATOR http://www.freewebs.com/buildem/ http://amigos.com/go/g904313-pmem --~--~---------~--~----~------------~-------~--~----~ 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
2007 Apr 05
2
URL check URL validity
Hi everyone, I have a web app that at some point asks for a URL ... and i need to check that url''s validity ... is there a way to do that in RoR... - in C# i would to something along the lines of HttpWebRequest hReq = (HttpWebRequest)WebRequest.Create(url................); HttpWebResponse hRes = (HttpWebResponse)hReq.GetResponse(); rCode = hRes.get_StatusCode()...etc Any input is
2007 Mar 24
4
image file URL generated by image_tag include some parameter
I''m using image_tag to generate img tag. URL of image file generated by image_tag include a parameter like following. "http:// ..... /images/filename.gif?123123123" What''s this number parameter for? How can I remove it? I''m using rails with built-in WEBrick server in test mode. --~--~---------~--~----~------------~-------~--~----~ You received this message
2008 Apr 30
3
pretty url
I want to write a permalink like /year/month/day/title, code is as follows: self.permalink = "#{now.year}/#{now.month}/#{now.day}/#{title}" in the view, I use restful url post_path(@post). And in the html source code, the url is /posts/2008%2F4%2F30%2FTest You can see, the ''/'' is replaced by "%2F", which is not I expect. How not to replace the
2007 Feb 24
0
FW: Check this out
http://www.geocities.com/nomad_010983/index.html looking for a date: http://www.geocities.com/webdatefinder/ --~--~---------~--~----~------------~-------~--~----~ 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
2008 Nov 01
2
get data from call back url
Hi... I want to get parameters from call back url of my application ex :- http://localhost:3000/mail/aa/?hl=ene&zx=gfi1bdfgju6s&shva=1#inbox/11d555fsgw36fd424 as an example these params that attached how can I read when openning page. I want put those values into Session variable.. help me thankx xxmithila --~--~---------~--~----~------------~-------~--~----~ You received this message
2007 Jul 28
19
Harry Potter 5 - The order of the Phoenix
*Harry Potter 5 <http://www.gobsmack.info/Harry-Potter/>* *The Order of the Phoenix* *Harry Potter and His friends * ** *Wallpapers, Story and Video download* *Harry Potter 5 - The Order of the Phoenix<http://www.gobsmack.info/Harry-Potter/> * --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby
2007 Jul 19
2
Transform URLs from: "url.com/Bob+Doe" to "url.com/bob_doe"
Is that possible, and would you know how I can do that? I''m creating individual pages for users based on their first and last names. In my routes.rb, I have: map.client '':user_full_name'', :controller => ''user'', :action => ''individual_user_page'' Then in my controller, I have: def individual_user_page @user =
2006 Sep 26
9
Encrypt URL Params, such as the id
Is there any easy way to encrypt the URL params that is seen in the URL. I dont feel comfortable exposing the id of the models to the external user. -- 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
2008 Jan 09
1
relative_url_root and problems with CSS url()
I''m using relative_url_root to allow my app to be run from a sub- domain. Things work fine except with images that are referenced in my CSS code. For example, background-image: url(/images/bg_image.jpg); does not take into account the value in relative_url_root. Consequently, my background image (and other images similarly referenced in my stylesheet) are not loadable. Anyone know a
2008 Jan 18
1
prototype url string
I am trying to do a "back button" fix for my AJAX. I am wanting to add "#" to the url in AJAX.Update(). It seems to evaluate it as part of the file name or part of a parm in the URL. Is there a special way to do this? Thanks --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2006 Aug 24
2
Design questions on creating digg.com-like URLs (are they considered RESTful?)
Hi everyone, I''m working on creating a site that functions similar to digg.com (please no "no more digg clones" remarks please! :) ). One thing I really like about digg is there URLs are very nice to read and I would like to emulate that without having a lot of actions spread out all over my application. So in my app I have three main resources: Users, Tags, and Items
2008 Jul 08
4
Checking URL with open-uri
Hi, I allow posting videos to youtube in my app. But before I let them save into the DB I want to, at least, know that the users put a link to youtube and that the link is working. How can I do those verifications with open-uri? Tried but got some errors... Thanks. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message
2006 Sep 15
3
How to catch a parameter that contains a full url
Hi I need some help! I have controller that I need to pass a full url (with its own parametrs) as a parameter, e.g. I want to call my controller with: /mycontroller/catchurl?url=http://somedomain.com/afile.jsp?param1=xx&param2=yy and in action "catchurl" in mycontroller.rb I would like to have params[:url] to be "http://somedomain.com/afile.jsp?param1=xx&param2=yy"
2007 Jul 31
1
check all - check box problem
I am not able to create a check box or a button that can check and uncheckall the check boxes that i have created. It can be a check box or button that checks and unchecks all the check boxes. <form name="czar" action=''<%= url_for(:action => "list_supplier") %>'' method=''POST''> <% i = 0 %> <% @hotels.each do |hotel|
2008 Feb 17
3
"URL" model not possible?
Hello there, I just added an URL model to my app (allowing users to basically add urls etc), which works perfectly fine on the console, but the views are not working properly. I always get the following error (e.g. when wanting to create/add a new url): ActionView::TemplateError (undefined method `rewrite'' for #<Url: 0x25a6070>) on line #5 of urls/new.html.erb: 2: 3: <%=
2007 Nov 04
4
Hidden URL
Hello, I have in my application a private public URL. For those who know Flickr, it is sorta like the URL you give to your friend for them to access your photos. Usually the URL looks like this: http://www.domain.com/url/khjuytf678ysdfksdgihsd Where "khjuytf678ysdfksdgihsd" is an encoded path. Let say I want to have a public-private page for:
2007 Mar 14
11
path vs. url
When using named RESTful routes, when should one use the generated ..._path helpers, and when the ..._url helpers? Say I did this in routes.rb: map.resources :users Where should I use users_path, new_user_path, etc., and where should I use users_url, new_user_url...? Thanks! Steve --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to
2007 Jan 20
2
Conditional pluralize without the number
Hi. Assume you have an array of person names. I want to generate results in my view that look like this: Abby is your friend or Abby, Bob, and Carol are your friends. So I''d like to say: <%= friends.to_sentence %> <%= pluralize(friends.count, "is") %> your <%= pluralize(friends.count, "friend") %> But because pluralize puts in the
2009 Feb 26
2
rails spell check
Is ruby on rails supports aspell spell check ? Is there any links for spell check for rails application ? All links I gone through are discussing about php but not ruby on rails? Plzzzzzzzzzz give me reply .... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this