Displaying 5 results from an estimated 5 matches for "mekdigital".
Did you mean:
edigital
2006 Jun 24
1
select or select_tag ?
...tesi_controrelatore_id" name="tesi_controrelatore_id">
my class can be saved just using the first one. but now I''ve problem
with the ''option prameter'' :<
I''m a bit confused :)
--
Emanuele Tozzato
mob +39 329 29 56 995
icq 30 77 52 76
web mekdigital.com
2008 Aug 22
0
acts_as_leashed, my first 'plug-in'
...ont-end guy
without your authorization? I do! So I wrote a (ridiculous) line of
code that triggers an external ''alert'' application that "calls home"
in case of need.. I put this in a tiny plug-in, what do you think?
Probably a gem version would make sense..
http://leash.mekdigital.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 grou...
2006 Nov 04
0
(no subject)
--
Emanuele Tozzato
mob +39 329 29 56 995
icq 30 77 52 76
web mekdigital.com
2009 Mar 02
3
Truncate function and html tags
I have a text field in the db for the body of user posts. Users
submit the posts using the tinymce editor, which allows certain html
tags. The posts are stored in the db with allowed html tags directly
in the post, so I could have something like:
<p>This post will try to eliminate the confusion regarding rails and
the truncate function.</p>
I am trying to display the first 300
2010 Dec 01
10
How to Redirect from http://mysite.com to https://www.mysite.com on Herok
Hello I''m looking to learn how to redirect all non-www (mysite.com) to
https://www.mysite.com
I tried the following:
class ApplicationController < ActionController::Base
before_filter :check_uri
def check_uri
redirect_to request.protocol + "www." + request.host_with_port +
request.request_uri if !/^www/.match(request.host) if Rails.env ==