Commit 12db0abc927a1b881d720d3cb2210b6f1ccacfd8
1 parent
97b4ad83
Exists in
profile_api_improvements
and in
1 other branch
make ubuntu precise quick-start works
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
app/helpers/action_tracker_helper.rb
@@ -15,7 +15,7 @@ module ActionTrackerHelper | @@ -15,7 +15,7 @@ module ActionTrackerHelper | ||
15 | end | 15 | end |
16 | 16 | ||
17 | def join_community_description ta | 17 | def join_community_description ta |
18 | - n_('has joined 1 community:<br />%{name}'.html_safe, 'has joined %{num} communities:<br />%{name}'.html_safe, ta.get_resource_name.size) % { | 18 | + n_('has joined 1 community:<br />%{name}', 'has joined %{num} communities:<br />%{name}', ta.get_resource_name.size).html_safe % { |
19 | num: ta.get_resource_name.size, | 19 | num: ta.get_resource_name.size, |
20 | name: ta.collect_group_with_index(:resource_name) do |n,i| | 20 | name: ta.collect_group_with_index(:resource_name) do |n,i| |
21 | link = link_to image_tag(ta.get_resource_profile_custom_icon[i] || default_or_themed_icon("/images/icons-app/community-icon.png")), | 21 | link = link_to image_tag(ta.get_resource_profile_custom_icon[i] || default_or_themed_icon("/images/icons-app/community-icon.png")), |
script/install-dependencies/ubuntu-precise.sh
@@ -7,7 +7,7 @@ export DEBIAN_INTERFACE=noninteractive | @@ -7,7 +7,7 @@ export DEBIAN_INTERFACE=noninteractive | ||
7 | 7 | ||
8 | run sudo apt-get install -qy dctrl-tools | 8 | run sudo apt-get install -qy dctrl-tools |
9 | 9 | ||
10 | -packages=$(grep-dctrl -n -s Build-Depends,Depends,Recommends -S -X noosfero debian/control | sed -e 's/([^)]*)//g; s/,\s*/\n/g' | grep -v 'rake\|ruby\|thin\|debhelper\|cucumber\|rail\|memcached\|debconf\|dbconfig-common\|misc:Depends\|adduser\|mail-transport-agent') | 10 | +packages=$(grep-dctrl -n -s Build-Depends,Depends,Recommends -S -X noosfero debian/control | sed -e 's/([^)]*)//g; s/,\s*/\n/g' | grep -v 'rake\|ruby\|thin\|debhelper\|cucumber\|rail\|memcached\|debconf\|dbconfig-common\|misc:Depends\|adduser\|mail-transport-agent\|bundler\|unicorn') |
11 | 11 | ||
12 | run sudo apt-get install -qy ruby1.9.1-full build-essential libxml2-dev libxslt-dev libpq-dev libmagickcore-dev libmagickwand-dev $packages | 12 | run sudo apt-get install -qy ruby1.9.1-full build-essential libxml2-dev libxslt-dev libpq-dev libmagickcore-dev libmagickwand-dev $packages |
13 | 13 |