muck-engine 0.1.26 → 0.1.27
Sign up to get free protection for your applications and to get access to all the features.
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.27
|
@@ -81,7 +81,8 @@ module MuckEngineHelper
|
|
81
81
|
|
82
82
|
def locale_link(name, locale)
|
83
83
|
#link_to name, request.protocol + locale + '.' + request.domain + request.request_uri
|
84
|
-
link_to name, request.url.gsub(request.protocol, "#{request.protocol}#{locale}.")
|
84
|
+
#link_to name, request.url.gsub(request.protocol, "#{request.protocol}#{locale}.")
|
85
|
+
link_to name, request.url.sub(request.protocol, "#{request.protocol}#{locale}.").sub('www.','')
|
85
86
|
end
|
86
87
|
|
87
88
|
# Generate parameters for a url that refer to a given object as parent. Useful
|
data/muck-engine.gemspec
CHANGED
@@ -23,6 +23,7 @@ form fieldset input[type="text"],form fieldset input[type="password"]{width:500p
|
|
23
23
|
.button-link {background-color:transparent;border-top-width: 0px;border-left-width: 0px;border-right-width: 0px;border-bottom-width: 0px;}
|
24
24
|
|
25
25
|
/*images*/
|
26
|
+
.tiny{width:24px;height:24px;}
|
26
27
|
.icon{width:50px;height:50px;}
|
27
28
|
.thumb{width:100px;height:100px;}
|
28
29
|
.medium{width:300px;height:300px;}
|
@@ -23,6 +23,7 @@ form fieldset input[type="text"],form fieldset input[type="password"]{width:500p
|
|
23
23
|
.button-link {background-color:transparent;border-top-width: 0px;border-left-width: 0px;border-right-width: 0px;border-bottom-width: 0px;}
|
24
24
|
|
25
25
|
/*images*/
|
26
|
+
.tiny{width:24px;height:24px;}
|
26
27
|
.icon{width:50px;height:50px;}
|
27
28
|
.thumb{width:100px;height:100px;}
|
28
29
|
.medium{width:300px;height:300px;}
|