Commit 285c0e2507eb30c7f75c9da0634f4a6d9bde1d21

Authored by Paulo Meireles
2 parents 2687a750 1ceb891e

[Mezuro] Merge branch 'master' into mezuro

Showing 117 changed files with 710 additions and 429 deletions   Show diff stats

Too many changes.

To preserve performance only 100 of 117 files displayed.

@@ -58,3 +58,6 @@ Raphael Rousseau <raph@r4f.org> @@ -58,3 +58,6 @@ Raphael Rousseau <raph@r4f.org>
58 Théo Bondolfi <move@cooperation.net> 58 Théo Bondolfi <move@cooperation.net>
59 Vicente Aguiar <vicenteaguiar@colivre.coop.br> 59 Vicente Aguiar <vicenteaguiar@colivre.coop.br>
60 60
  61 +Arts
  62 +===================================
  63 +Nara Oliveira <narananet@gmail.com>
INSTALL.awstats
@@ -5,11 +5,11 @@ streaming, ftp or mail server statistics, graphically. @@ -5,11 +5,11 @@ streaming, ftp or mail server statistics, graphically.
5 5
6 See http://awstats.sourceforge.net/ 6 See http://awstats.sourceforge.net/
7 7
8 -This guide supposes that the Noosfero server is running GNU/Linux Debian Lenny. 8 +This guide supposes that the Noosfero server is running GNU/Linux Debian Squeeze.
9 9
10 1. Install AWStats 10 1. Install AWStats
11 11
12 -# apt-get install awstats libgeo-ip-perl 12 +# apt-get install awstats libgeo-ip-perl geoip-database
13 13
14 2. Basic setup 14 2. Basic setup
15 15
app/controllers/admin/role_controller.rb
@@ -5,6 +5,20 @@ class RoleController &lt; AdminController @@ -5,6 +5,20 @@ class RoleController &lt; AdminController
5 @roles = environment.roles.find(:all) 5 @roles = environment.roles.find(:all)
6 end 6 end
7 7
  8 + def new
  9 + @role = Role.new
  10 + end
  11 +
  12 + def create
  13 + @role = Role.new :name => params[:role][:name], :permissions => params[:role][:permissions], :environment => environment
  14 + if @role.save
  15 + redirect_to :action => 'show', :id => @role
  16 + else
  17 + session[:notice] = _('Failed to create role')
  18 + render :action => 'new'
  19 + end
  20 + end
  21 +
8 def show 22 def show
9 @role = environment.roles.find(params[:id]) 23 @role = environment.roles.find(params[:id])
10 end 24 end
app/controllers/public/home_controller.rb
@@ -4,7 +4,7 @@ class HomeController &lt; PublicController @@ -4,7 +4,7 @@ class HomeController &lt; PublicController
4 @has_news = false 4 @has_news = false
5 if environment.enabled?('use_portal_community') && environment.portal_community 5 if environment.enabled?('use_portal_community') && environment.portal_community
6 @has_news = true 6 @has_news = true
7 - @news_cache_key = environment.portal_news_cache_key 7 + @news_cache_key = environment.portal_news_cache_key(FastGettext.locale)
8 if !read_fragment(@news_cache_key) 8 if !read_fragment(@news_cache_key)
9 portal_community = environment.portal_community 9 portal_community = environment.portal_community
10 @highlighted_news = portal_community.news(2, true) 10 @highlighted_news = portal_community.news(2, true)
app/helpers/sweeper_helper.rb
@@ -20,7 +20,7 @@ module SweeperHelper @@ -20,7 +20,7 @@ module SweeperHelper
20 20
21 # friends blocks 21 # friends blocks
22 blocks = profile.blocks.select{|b| b.kind_of?(FriendsBlock)} 22 blocks = profile.blocks.select{|b| b.kind_of?(FriendsBlock)}
23 - blocks.map(&:cache_key).each{|ck|expire_timeout_fragment(ck)} 23 + BlockSweeper.expire_blocks(blocks)
24 end 24 end
25 25
26 def expire_communities(profile) 26 def expire_communities(profile)
@@ -32,13 +32,13 @@ module SweeperHelper @@ -32,13 +32,13 @@ module SweeperHelper
32 32
33 # communities block 33 # communities block
34 blocks = profile.blocks.select{|b| b.kind_of?(CommunitiesBlock)} 34 blocks = profile.blocks.select{|b| b.kind_of?(CommunitiesBlock)}
35 - blocks.map(&:cache_key).each{|ck|expire_timeout_fragment(ck)} 35 + BlockSweeper.expire_blocks(blocks)
36 end 36 end
37 37
38 def expire_enterprises(profile) 38 def expire_enterprises(profile)
39 # enterprises and favorite enterprises blocks 39 # enterprises and favorite enterprises blocks
40 blocks = profile.blocks.select {|b| [EnterprisesBlock, FavoriteEnterprisesBlock].any?{|klass| b.kind_of?(klass)} } 40 blocks = profile.blocks.select {|b| [EnterprisesBlock, FavoriteEnterprisesBlock].any?{|klass| b.kind_of?(klass)} }
41 - blocks.map(&:cache_key).each{|ck|expire_timeout_fragment(ck)} 41 + BlockSweeper.expire_blocks(blocks)
42 end 42 end
43 43
44 def expire_profile_index(profile) 44 def expire_profile_index(profile)
app/models/add_member.rb
@@ -11,7 +11,9 @@ class AddMember &lt; Task @@ -11,7 +11,9 @@ class AddMember &lt; Task
11 settings_items :roles 11 settings_items :roles
12 12
13 def perform 13 def perform
14 - self.roles ||= [Profile::Roles.member(organization.environment.id).id] 14 + if !self.roles or (self.roles.uniq.compact.length == 1 and self.roles.uniq.compact.first.to_i.zero?)
  15 + self.roles = [Profile::Roles.member(organization.environment.id).id]
  16 + end
15 target.affiliate(requestor, self.roles.select{|r| !r.to_i.zero? }.map{|i| Role.find(i)}) 17 target.affiliate(requestor, self.roles.select{|r| !r.to_i.zero? }.map{|i| Role.find(i)})
16 end 18 end
17 19
app/models/article.rb
@@ -496,8 +496,8 @@ class Article &lt; ActiveRecord::Base @@ -496,8 +496,8 @@ class Article &lt; ActiveRecord::Base
496 end 496 end
497 497
498 alias :active_record_cache_key :cache_key 498 alias :active_record_cache_key :cache_key
499 - def cache_key(params = {}, the_profile = nil)  
500 - active_record_cache_key + 499 + def cache_key(params = {}, the_profile = nil, language = 'en')
  500 + active_record_cache_key+'-'+language +
501 (allow_post_content?(the_profile) ? "-owner" : '') + 501 (allow_post_content?(the_profile) ? "-owner" : '') +
502 (params[:npage] ? "-npage-#{params[:npage]}" : '') + 502 (params[:npage] ? "-npage-#{params[:npage]}" : '') +
503 (params[:year] ? "-year-#{params[:year]}" : '') + 503 (params[:year] ? "-year-#{params[:year]}" : '') +
app/models/block.rb
@@ -127,6 +127,11 @@ class Block &lt; ActiveRecord::Base @@ -127,6 +127,11 @@ class Block &lt; ActiveRecord::Base
127 true 127 true
128 end 128 end
129 129
  130 + alias :active_record_cache_key :cache_key
  131 + def cache_key(language='en')
  132 + active_record_cache_key+'-'+language
  133 + end
  134 +
130 def timeout 135 def timeout
131 4.hours 136 4.hours
132 end 137 end
app/models/blog.rb
@@ -68,7 +68,7 @@ class Blog &lt; Folder @@ -68,7 +68,7 @@ class Blog &lt; Folder
68 settings_items :visualization_format, :type => :string, :default => 'full' 68 settings_items :visualization_format, :type => :string, :default => 'full'
69 validates_inclusion_of :visualization_format, :in => [ 'full', 'short' ], :if => :visualization_format 69 validates_inclusion_of :visualization_format, :in => [ 'full', 'short' ], :if => :visualization_format
70 70
71 - settings_items :display_posts_in_current_language, :type => :boolean, :default => true 71 + settings_items :display_posts_in_current_language, :type => :boolean, :default => false
72 72
73 alias :display_posts_in_current_language? :display_posts_in_current_language 73 alias :display_posts_in_current_language? :display_posts_in_current_language
74 74
app/models/enterprise.rb
@@ -76,7 +76,11 @@ class Enterprise &lt; Organization @@ -76,7 +76,11 @@ class Enterprise &lt; Organization
76 end 76 end
77 77
78 after_save do |e| 78 after_save do |e|
79 - e.products.each{ |p| p.enterprise_updated(e) } 79 + e.delay.update_products_position
  80 + end
  81 +
  82 + def update_products_position
  83 + products.each{ |p| p.enterprise_updated(self) }
80 end 84 end
81 85
82 def closed? 86 def closed?
app/models/environment.rb
@@ -696,8 +696,8 @@ class Environment &lt; ActiveRecord::Base @@ -696,8 +696,8 @@ class Environment &lt; ActiveRecord::Base
696 settings[:portal_folders] = folders ? folders.map(&:id) : nil 696 settings[:portal_folders] = folders ? folders.map(&:id) : nil
697 end 697 end
698 698
699 - def portal_news_cache_key  
700 - "home-page-news/#{cache_key}" 699 + def portal_news_cache_key(language='en')
  700 + "home-page-news/#{cache_key}-#{language}"
701 end 701 end
702 702
703 def notification_emails 703 def notification_emails
app/models/profile.rb
@@ -20,12 +20,16 @@ class Profile &lt; ActiveRecord::Base @@ -20,12 +20,16 @@ class Profile &lt; ActiveRecord::Base
20 find_role('editor', env_id) 20 find_role('editor', env_id)
21 end 21 end
22 def self.organization_member_roles(env_id) 22 def self.organization_member_roles(env_id)
23 - [admin(env_id), moderator(env_id), member(env_id)] 23 + all_roles(env_id).select{ |r| r.key.match(/^profile_/) unless r.key.blank? }
24 end 24 end
25 def self.all_roles(env_id) 25 def self.all_roles(env_id)
26 - [admin(env_id), member(env_id), moderator(env_id), owner(env_id), editor(env_id)] 26 + Role.all :conditions => { :environment_id => env_id }
  27 + end
  28 + def self.method_missing(m, *args, &block)
  29 + role = find_role(m, args[0])
  30 + return role unless role.nil?
  31 + super
27 end 32 end
28 -  
29 private 33 private
30 def self.find_role(name, env_id) 34 def self.find_role(name, env_id)
31 ::Role.find_by_key_and_environment_id("profile_#{name}", env_id) 35 ::Role.find_by_key_and_environment_id("profile_#{name}", env_id)
app/models/recent_documents_block.rb
@@ -32,8 +32,4 @@ class RecentDocumentsBlock &lt; Block @@ -32,8 +32,4 @@ class RecentDocumentsBlock &lt; Block
32 end 32 end
33 end 33 end
34 34
35 - def timeout  
36 - 2.months  
37 - end  
38 -  
39 end 35 end
app/sweepers/article_sweeper.rb
@@ -13,18 +13,16 @@ class ArticleSweeper &lt; ActiveRecord::Observer @@ -13,18 +13,16 @@ class ArticleSweeper &lt; ActiveRecord::Observer
13 protected 13 protected
14 14
15 def expire_caches(article) 15 def expire_caches(article)
16 - article.hierarchy.each do |a|  
17 - if a != article  
18 - a.update_attribute(:updated_at, Time.now)  
19 - end  
20 - end 16 + article.hierarchy.each { |a| a.touch if a != article }
21 blocks = article.profile.blocks 17 blocks = article.profile.blocks
22 blocks += article.profile.environment.blocks if article.profile.environment 18 blocks += article.profile.environment.blocks if article.profile.environment
23 blocks = blocks.select{|b|[RecentDocumentsBlock, BlogArchivesBlock].any?{|c| b.kind_of?(c)}} 19 blocks = blocks.select{|b|[RecentDocumentsBlock, BlogArchivesBlock].any?{|c| b.kind_of?(c)}}
24 - blocks.map(&:cache_key).each{|ck|expire_timeout_fragment(ck)} 20 + BlockSweeper.expire_blocks(blocks)
25 env = article.profile.environment 21 env = article.profile.environment
26 if env && (env.portal_community == article.profile) 22 if env && (env.portal_community == article.profile)
27 - expire_fragment(env.portal_news_cache_key) 23 + Noosfero.locales.keys.each do |locale|
  24 + expire_fragment(env.portal_news_cache_key(locale))
  25 + end
28 end 26 end
29 end 27 end
30 28
app/sweepers/block_sweeper.rb
1 class BlockSweeper < ActiveRecord::Observer 1 class BlockSweeper < ActiveRecord::Observer
2 2
3 - include SweeperHelper  
4 observe :block 3 observe :block
5 4
  5 + class << self
  6 + include SweeperHelper
  7 +
  8 + # Expire block's all languages cache
  9 + def expire_block(block)
  10 + regex = '-[a-z]*$'
  11 + clean_ck = block.cache_key.gsub(/#{regex}/,'')
  12 +
  13 + Noosfero.locales.keys.each do |locale|
  14 + expire_timeout_fragment("#{clean_ck}-#{locale}")
  15 + end
  16 + end
  17 +
  18 + def expire_blocks(blocks)
  19 + blocks.each { |block| expire_block(block) }
  20 + end
  21 + end
  22 +
6 def after_save(block) 23 def after_save(block)
7 - expire_fragment(block.cache_key) 24 + self.class.expire_block(block)
8 end 25 end
9 26
10 end 27 end
app/sweepers/friendship_sweeper.rb
@@ -35,7 +35,7 @@ protected @@ -35,7 +35,7 @@ protected
35 end 35 end
36 36
37 blocks = profile.blocks.select{|b| b.kind_of?(FriendsBlock)} 37 blocks = profile.blocks.select{|b| b.kind_of?(FriendsBlock)}
38 - blocks.map(&:cache_key).each{|ck|expire_timeout_fragment(ck)} 38 + BlockSweeper.expire_blocks(blocks)
39 end 39 end
40 40
41 end 41 end
app/sweepers/profile_sweeper.rb
@@ -31,7 +31,7 @@ protected @@ -31,7 +31,7 @@ protected
31 31
32 def expire_statistics_block_cache(profile) 32 def expire_statistics_block_cache(profile)
33 blocks = profile.environment.blocks.select { |b| b.kind_of?(EnvironmentStatisticsBlock) } 33 blocks = profile.environment.blocks.select { |b| b.kind_of?(EnvironmentStatisticsBlock) }
34 - blocks.map(&:cache_key).each{|ck|expire_timeout_fragment(ck)} 34 + BlockSweeper.expire_blocks(blocks)
35 end 35 end
36 36
37 def expire_blogs(profile) 37 def expire_blogs(profile)
app/sweepers/role_assignment_sweeper.rb
@@ -25,7 +25,7 @@ protected @@ -25,7 +25,7 @@ protected
25 25
26 profile.blocks_to_expire_cache.each { |block| 26 profile.blocks_to_expire_cache.each { |block|
27 blocks = profile.blocks.select{|b| b.kind_of?(block)} 27 blocks = profile.blocks.select{|b| b.kind_of?(block)}
28 - blocks.map(&:cache_key).each{|ck|expire_timeout_fragment(ck)} 28 + BlockSweeper.expire_blocks(blocks)
29 } 29 }
30 end 30 end
31 31
app/views/cms/_blog.rhtml
@@ -68,7 +68,6 @@ @@ -68,7 +68,6 @@
68 <% enabled = @article.external_feed && @article.external_feed.enabled %> 68 <% enabled = @article.external_feed && @article.external_feed.enabled %>
69 <% only_once = @article.external_feed ? @article.external_feed.only_once : true %> 69 <% only_once = @article.external_feed ? @article.external_feed.only_once : true %>
70 <%= labelled_check_box(_('Fetch posts from an external feed'), 'article[external_feed_builder][enabled]', 'true', enabled, {:onchange => "$('external-feed-options').toggle()"}) %> 70 <%= labelled_check_box(_('Fetch posts from an external feed'), 'article[external_feed_builder][enabled]', 'true', enabled, {:onchange => "$('external-feed-options').toggle()"}) %>
71 - <%= hidden_field_tag 'article[external_feed_builder][enabled]', 'false' %>  
72 <div id='external-feed-options' style="display: <%= enabled ? 'block' : 'none' %>"> 71 <div id='external-feed-options' style="display: <%= enabled ? 'block' : 'none' %>">
73 <%= efeed.hidden_field(:id) %> 72 <%= efeed.hidden_field(:id) %>
74 <%= labelled_form_field( _('Feed address'), efeed.text_field(:address) ) %> 73 <%= labelled_form_field( _('Feed address'), efeed.text_field(:address) ) %>
app/views/content_viewer/view_page.rhtml
@@ -52,7 +52,7 @@ @@ -52,7 +52,7 @@
52 </div> 52 </div>
53 <% end %> 53 <% end %>
54 54
55 -<% cache(@page.cache_key(params, user)) do %> 55 +<% cache(@page.cache_key(params, user, language)) do %>
56 <div class="<%="article-body article-body-" + @page.css_class_name %>"> 56 <div class="<%="article-body article-body-" + @page.css_class_name %>">
57 <% options = @page.image? ? {:gallery_view => true} : {} %> 57 <% options = @page.image? ? {:gallery_view => true} : {} %>
58 <%= article_to_html(@page, options) %> 58 <%= article_to_html(@page, options) %>
app/views/layouts/_javascript.rhtml
1 <%= javascript_include_tag :defaults, 'jquery-latest.js', 'jquery.noconflict.js', 'jquery.cycle.all.min.js', 'thickbox.js', 'lightbox', 'jquery-ui-1.8.2.custom.min', 'jquery.scrollTo', 'jquery.form.js', 'jquery.cookie', 'reflection', 'add-and-join', 'jquery.tokeninput', 'report-abuse','colorbox', 'jquery-validation/jquery.validate', 'catalog', 'manage-products', :cache => 'cache-general' %> 1 <%= javascript_include_tag :defaults, 'jquery-latest.js', 'jquery.noconflict.js', 'jquery.cycle.all.min.js', 'thickbox.js', 'lightbox', 'jquery-ui-1.8.2.custom.min', 'jquery.scrollTo', 'jquery.form.js', 'jquery.cookie', 'reflection', 'add-and-join', 'jquery.tokeninput', 'report-abuse','colorbox', 'jquery-validation/jquery.validate', 'catalog', 'manage-products', :cache => 'cache-general' %>
  2 +
2 <% language = FastGettext.locale %> 3 <% language = FastGettext.locale %>
3 -<%= javascript_include_tag 'jquery-validation/localization/messages_'+language, 'jquery-validation/localization/methods_'+language %> 4 +<% %w{messages methods}.each do |type| %>
  5 + <% require_path = File.join('jquery-validation', 'localization', type+'_'+language) %>
  6 + <% full_path = File.join(Rails.root, 'public', 'javascripts', require_path+'.js')%>
  7 + <%= javascript_include_tag require_path if File.exists?(full_path) %>
  8 +<% end %>
app/views/profile/_person_profile.rhtml
@@ -57,18 +57,6 @@ @@ -57,18 +57,6 @@
57 <td><%= link_to profile.communities.count, :controller => "profile", :action => 'communities' %></td> 57 <td><%= link_to profile.communities.count, :controller => "profile", :action => 'communities' %></td>
58 </tr> 58 </tr>
59 59
60 - <% if !environment.enabled?('disable_categories') && !profile.interests.empty? %>  
61 - <tr>  
62 - <th colspan='2'><%= _('Interests') %></th>  
63 - </tr>  
64 - <% profile.interests.each do |item| %>  
65 - <tr>  
66 - <td></td>  
67 - <td><%= link_to item.name, :controller => 'search', :action => 'category_index', :category_path => item.explode_path %></td>  
68 - </tr>  
69 - <% end %>  
70 - <% end %>  
71 -  
72 <%= render :partial => 'common' %> 60 <%= render :partial => 'common' %>
73 61
74 </table> 62 </table>
app/views/profile_members/change_role.rhtml
@@ -5,6 +5,11 @@ @@ -5,6 +5,11 @@
5 <%= _('Roles:') %> <br> 5 <%= _('Roles:') %> <br>
6 <% @roles.each do |r| %> 6 <% @roles.each do |r| %>
7 <%= labelled_check_box(r.name, 'roles[]', r.id, @associations.map(&:role).include?(r) ) %><br/> 7 <%= labelled_check_box(r.name, 'roles[]', r.id, @associations.map(&:role).include?(r) ) %><br/>
  8 + <ul class="role-permissions">
  9 + <% r.permissions.each do |p| %>
  10 + <li> <%= permission_name(p) %> </li>
  11 + <% end %>
  12 + </ul>
8 <% end %> 13 <% end %>
9 <%= hidden_field_tag 'person', @member.id %> 14 <%= hidden_field_tag 'person', @member.id %>
10 15
app/views/role/_form.rhtml
@@ -6,9 +6,10 @@ @@ -6,9 +6,10 @@
6 6
7 <%= required f.text_field(:name) %> 7 <%= required f.text_field(:name) %>
8 8
9 - <%= _('Permissions:') %> <br> 9 + <p><%= _('Permissions:') %><p>
10 <% permissions.keys.each do |p| %> 10 <% permissions.keys.each do |p| %>
11 - <%= labelled_check_box(permission_name(p), "role[permissions][]", p, role.has_permission?(p)) %> <br/> 11 + <%= check_box_tag("role[permissions][]", p, role.has_permission?(p), { :id => p }) %>
  12 + <%= content_tag(:label, permission_name(p), { :for => p }) %><br/>
12 <% end %> 13 <% end %>
13 14
14 <% button_bar do %> 15 <% button_bar do %>
app/views/role/index.rhtml
@@ -18,5 +18,6 @@ @@ -18,5 +18,6 @@
18 </table> 18 </table>
19 19
20 <% button_bar do %> 20 <% button_bar do %>
21 - <%= button :back, _('Back'), :controller => 'admin_panel' %> 21 + <%= button :add, _('Create a new role'), :action => 'new' %>
  22 + <%= button :back, _('Back to admin panel'), :controller => 'admin_panel' %>
22 <% end %> 23 <% end %>
app/views/role/new.rhtml 0 → 100644
@@ -0,0 +1,3 @@ @@ -0,0 +1,3 @@
  1 +<h2> <%= _("Create a new role") %> </h2>
  2 +
  3 +<%= render :partial => 'form', :locals => { :mode => :create, :role => @role, :permissions => ActiveRecord::Base::PERMISSIONS[@role.kind] } %>
app/views/role/show.rhtml
@@ -7,4 +7,7 @@ @@ -7,4 +7,7 @@
7 <% end %> 7 <% end %>
8 </ul> 8 </ul>
9 9
10 -<%= link_to _('Back'), :action => 'index' %> 10 +<% button_bar do %>
  11 + <%= button :edit, _('Edit'), :action => 'edit', :id => @role %>
  12 + <%= button :back, _('Back to roles management'), :action => 'index' %>
  13 +<% end %>
app/views/shared/block.rhtml
1 <% if block.cacheable? && use_cache %> 1 <% if block.cacheable? && use_cache %>
2 - <% cache_timeout(block.cache_key, block.timeout) do %> 2 + <% cache_timeout(block.cache_key(language), block.timeout) do %>
3 <%= display_block_content(block, user, main_content) %> 3 <%= display_block_content(block, user, main_content) %>
4 <% end %> 4 <% end %>
5 <% else %> 5 <% else %>
db/migrate/20120307200651_add_ip_address_to_comment.rb
@@ -6,6 +6,6 @@ class AddIpAddressToComment &lt; ActiveRecord::Migration @@ -6,6 +6,6 @@ class AddIpAddressToComment &lt; ActiveRecord::Migration
6 6
7 def self.down 7 def self.down
8 remove_column :comments, :ip_address 8 remove_column :comments, :ip_address
9 - remove_column :comments, :boolean 9 + remove_column :comments, :spam
10 end 10 end
11 end 11 end
debian/changelog
  1 +noosfero (0.36.5) unstable; urgency=low
  2 +
  3 + * Bugfixes release
  4 +
  5 + -- Daniela Soares Feitosa <daniela@colivre.coop.br> Thu, 26 Apr 2012 00:49:32 -0300
  6 +
  7 +noosfero (0.36.4) unstable; urgency=low
  8 +
  9 + * Bugfix release
  10 +
  11 + -- Daniela Soares Feitosa <daniela@colivre.coop.br> Sat, 21 Apr 2012 10:59:32 -0300
  12 +
  13 +noosfero (0.36.3) unstable; urgency=low
  14 +
  15 + * Bugfixes release
  16 +
  17 + -- Daniela Soares Feitosa <daniela@colivre.coop.br> Thu, 19 Apr 2012 22:33:13 -0300
  18 +
  19 +noosfero (0.36.2) unstable; urgency=low
  20 +
  21 + * Bugfixes release
  22 +
  23 + -- Daniela Soares Feitosa <daniela@colivre.coop.br> Thu, 05 Apr 2012 15:11:04 -0300
  24 +
1 noosfero (0.36.1) unstable; urgency=low 25 noosfero (0.36.1) unstable; urgency=low
2 26
3 * Bug fix release 27 * Bug fix release
@@ -21,6 +45,12 @@ noosfero (0.36.0~3) unstable; urgency=low @@ -21,6 +45,12 @@ noosfero (0.36.0~3) unstable; urgency=low
21 45
22 -- Antonio Terceiro <terceiro@colivre.coop.br> Sun, 27 Nov 2011 14:11:33 -0200 46 -- Antonio Terceiro <terceiro@colivre.coop.br> Sun, 27 Nov 2011 14:11:33 -0200
23 47
  48 +noosfero (0.35.3) unstable; urgency=low
  49 +
  50 + * Bugfix release.
  51 +
  52 + -- Antonio Terceiro <terceiro@colivre.coop.br> Wed, 07 Mar 2012 11:35:06 -0300
  53 +
24 noosfero (0.35.2) unstable; urgency=low 54 noosfero (0.35.2) unstable; urgency=low
25 55
26 * Bugfixes version release 56 * Bugfixes version release
debian/noosfero.install
@@ -16,6 +16,7 @@ config/environment.rb usr/share/noosfero/config @@ -16,6 +16,7 @@ config/environment.rb usr/share/noosfero/config
16 config/environments usr/share/noosfero/config 16 config/environments usr/share/noosfero/config
17 config/initializers usr/share/noosfero/config 17 config/initializers usr/share/noosfero/config
18 config/routes.rb usr/share/noosfero/config 18 config/routes.rb usr/share/noosfero/config
  19 +config/locales/ usr/share/noosfero/config
19 20
20 plugins usr/share/noosfero 21 plugins usr/share/noosfero
21 22
doc/noosfero/admin/export-users-list.textile
@@ -2,16 +2,16 @@ h1(order-20). Export the list of users @@ -2,16 +2,16 @@ h1(order-20). Export the list of users
2 2
3 p. _If you are an environment administrator, you can export the list of all users in XML or CSV formats._ 3 p. _If you are an environment administrator, you can export the list of all users in XML or CSV formats._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description 5 +* "How to access":#howaccess
  6 +* "Description":#description
7 7
8 -h2(#HowAccess). How to access 8 +h2(#howaccess). How to access
9 9
10 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu-admin.en.png(Top menu)! 10 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu-admin.en.png(Top menu)!
11 # In user menu, click on Administration: !=/images/doc/menu-admin.en.png(Control panel on menu)! 11 # In user menu, click on Administration: !=/images/doc/menu-admin.en.png(Control panel on menu)!
12 # Then, click on "Manage users" link: !=/images/doc/admin-panel-manage-users.en.png(Manage users in admin panel)! 12 # Then, click on "Manage users" link: !=/images/doc/admin-panel-manage-users.en.png(Manage users in admin panel)!
13 13
14 -h2(#Description). Description 14 +h2(#description). Description
15 15
16 p. In "Manage users", choose which format you want to export the list. There are 2 options, "CSV" and "XML". 16 p. In "Manage users", choose which format you want to export the list. There are 2 options, "CSV" and "XML".
17 17
doc/noosfero/admin/send-email-members.textile
@@ -2,16 +2,16 @@ h1(order-10). Sending e-mail to members @@ -2,16 +2,16 @@ h1(order-10). Sending e-mail to members
2 2
3 p. _If you are an environment administrator, you can send e-mail to all members of your environment._ 3 p. _If you are an environment administrator, you can send e-mail to all members of your environment._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description 5 +* "How to access":#howaccess
  6 +* "Description":#description
7 7
8 -h2(#HowAccess). How to access 8 +h2(#howaccess). How to access
9 9
10 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu-admin.en.png(Top menu)! 10 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu-admin.en.png(Top menu)!
11 # In user menu, click on Administration: !=/images/doc/menu-admin.en.png(Control panel on menu)! 11 # In user menu, click on Administration: !=/images/doc/menu-admin.en.png(Control panel on menu)!
12 # Then, click on "Manage users" link: !=/images/doc/admin-panel-manage-users.en.png(Manage users in admin panel)! 12 # Then, click on "Manage users" link: !=/images/doc/admin-panel-manage-users.en.png(Manage users in admin panel)!
13 13
14 -h2(#Description). Description 14 +h2(#description). Description
15 15
16 # In "Manage users", click on "Send e-mail to users" link: !=/images/doc/admin-panel-send-email.en.png(Send e-mail link on manage users)! 16 # In "Manage users", click on "Send e-mail to users" link: !=/images/doc/admin-panel-send-email.en.png(Send e-mail link on manage users)!
17 # Fill in the "Subject" field with the subject of the e-mail and the "Body" field with the content of the e-mail you want to send. Then, click on "Send" !=/images/doc/admin-send-email.en.png(Sending e-mail to environment members)! 17 # Fill in the "Subject" field with the subject of the e-mail and the "Body" field with the content of the e-mail you want to send. Then, click on "Send" !=/images/doc/admin-send-email.en.png(Sending e-mail to environment members)!
doc/noosfero/cms/adding-images-to-gallery.textile
@@ -2,25 +2,25 @@ h1(order-310). Adding pictures to gallery @@ -2,25 +2,25 @@ h1(order-310). Adding pictures to gallery
2 2
3 p. _You can publish pictures on your image gallery_ 3 p. _You can publish pictures on your image gallery_
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # If you don't have an image gallery yet, you can create yours following instructions on "Managing content":/doc/cms/managing-content until item 1 of description. When creating the folder, choose "Image gallery" in "Folder type". 11 # If you don't have an image gallery yet, you can create yours following instructions on "Managing content":/doc/cms/managing-content until item 1 of description. When creating the folder, choose "Image gallery" in "Folder type".
12 # To find your image gallery, first find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 12 # To find your image gallery, first find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
13 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 13 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
14 # Then, click on "Manage content": !=/images/doc/control-panel-content-management.en.png(Manage content in control panel)! 14 # Then, click on "Manage content": !=/images/doc/control-panel-content-management.en.png(Manage content in control panel)!
15 15
16 -h2(#Description). Description 16 +h2(#description). Description
17 17
18 # Find your gallery on the list and click to view it. !=/images/doc/cms-gallery-public-visualization.en.png(Public visualization of gallery in CMS)! 18 # Find your gallery on the list and click to view it. !=/images/doc/cms-gallery-public-visualization.en.png(Public visualization of gallery in CMS)!
19 # You will see your image gallery. Click on "Upload files" button !=/images/doc/gallery-buttons.en.png(Gallery buttons on visualization mode)! 19 # You will see your image gallery. Click on "Upload files" button !=/images/doc/gallery-buttons.en.png(Gallery buttons on visualization mode)!
20 # Select the pictures you want to upload and click on "Upload" button. If you want to upload more than 3 pictures at once, click on "More files"button and more fields will appear. !=/images/doc/uploading-files-to-gallery.en.png(uploading files to gallery)! 20 # Select the pictures you want to upload and click on "Upload" button. If you want to upload more than 3 pictures at once, click on "More files"button and more fields will appear. !=/images/doc/uploading-files-to-gallery.en.png(uploading files to gallery)!
21 21
22 22
23 -h2(#RelatedTopics). Related topics 23 +h2(#relatedtopics). Related topics
24 24
25 * "Managing your content":/doc/cms/managing-content 25 * "Managing your content":/doc/cms/managing-content
26 26
doc/noosfero/cms/creating-blog.textile
@@ -2,11 +2,11 @@ h1(order-320). Creating a blog @@ -2,11 +2,11 @@ h1(order-320). Creating a blog
2 2
3 p. _You can have a blog in your system._ 3 p. _You can have a blog in your system._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find your menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find your menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
@@ -14,7 +14,7 @@ h2(#HowAccess). How to access @@ -14,7 +14,7 @@ h2(#HowAccess). How to access
14 14
15 15
16 16
17 -h2(#Description). Description 17 +h2(#description). Description
18 18
19 Fill in the form and click on Save !=/images/doc/cms-blog-creation.en.png(Creation of a blog)! 19 Fill in the form and click on Save !=/images/doc/cms-blog-creation.en.png(Creation of a blog)!
20 20
@@ -27,7 +27,7 @@ Fill in the form and click on Save !=/images/doc/cms-blog-creation.en.png(Creat @@ -27,7 +27,7 @@ Fill in the form and click on Save !=/images/doc/cms-blog-creation.en.png(Creat
27 # Select this option if you want to import your posts from an external feed. If you selected the option, you should fill in the field with the feed address and choose if you want to import the posts periodically or just once. 27 # Select this option if you want to import your posts from an external feed. If you selected the option, you should fill in the field with the feed address and choose if you want to import the posts periodically or just once.
28 # Fill in with the blog's tags. 28 # Fill in with the blog's tags.
29 29
30 -h2(#RelatedTopics). Related topics 30 +h2(#relatedtopics). Related topics
31 31
32 * "Managing your content":/doc/cms/managing-content 32 * "Managing your content":/doc/cms/managing-content
33 * "Posting on blog":/doc/cms/posting-on-blog 33 * "Posting on blog":/doc/cms/posting-on-blog
doc/noosfero/cms/managing-content.textile
@@ -6,18 +6,18 @@ p. _It is usually used to organize files from the same category, like music, vi @@ -6,18 +6,18 @@ p. _It is usually used to organize files from the same category, like music, vi
6 6
7 p. _To organize your texts/images/files, you should manage your content._ 7 p. _To organize your texts/images/files, you should manage your content._
8 8
9 -* "How to access":#HowAccess  
10 -* "Description":#Description  
11 -* "Related topics":#RelatedTopics 9 +* "How to access":#howaccess
  10 +* "Description":#description
  11 +* "Related topics":#relatedtopics
12 12
13 -h2(#HowAccess). How to access 13 +h2(#howaccess). How to access
14 14
15 # Find your menu on top bar: !=/images/doc/ystem-homepage-top-menu.en.png(Top menu)! 15 # Find your menu on top bar: !=/images/doc/ystem-homepage-top-menu.en.png(Top menu)!
16 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 16 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
17 # Then, click on "Manage content": !=/images/doc/control-panel-content-management.en.png(Manage content in control panel)! 17 # Then, click on "Manage content": !=/images/doc/control-panel-content-management.en.png(Manage content in control panel)!
18 18
19 19
20 -h2(#Description). Description 20 +h2(#description). Description
21 21
22 # You will see some buttons and the list of your content. The folders are listed first and then your files/articles. Clicking on your folders, you will see the files/folders inside them. !=/images/doc/cms.en.png(CMS with marks on buttons)! 22 # You will see some buttons and the list of your content. The folders are listed first and then your files/articles. Clicking on your folders, you will see the files/folders inside them. !=/images/doc/cms.en.png(CMS with marks on buttons)!
23 # Click to create a new folder. To understand categories and tags, read "Writing an article":/doc/cms/writing-article from item 7. !=/images/doc/new-folder.en.png(Creating a new folder)! 23 # Click to create a new folder. To understand categories and tags, read "Writing an article":/doc/cms/writing-article from item 7. !=/images/doc/new-folder.en.png(Creating a new folder)!
@@ -42,7 +42,7 @@ h2(#Description). Description @@ -42,7 +42,7 @@ h2(#Description). Description
42 ## *Use as homepage:* Set the article as your homepage 42 ## *Use as homepage:* Set the article as your homepage
43 ## *Delete:* Delete the article 43 ## *Delete:* Delete the article
44 44
45 -h2(#RelatedTopics). Related topics 45 +h2(#relatedtopics). Related topics
46 46
47 * "Writing an article":/doc/cms/writing-article 47 * "Writing an article":/doc/cms/writing-article
48 48
doc/noosfero/cms/posting-on-blog.textile
@@ -2,24 +2,24 @@ h1(order-330). Posting on blog @@ -2,24 +2,24 @@ h1(order-330). Posting on blog
2 2
3 p. _You can have a blog and publish posts on it._ 3 p. _You can have a blog and publish posts on it._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # If you don't have a blog yet, you can create yours following instructions on "Creating a blog":/doc/cms/creating-blog . 11 # If you don't have a blog yet, you can create yours following instructions on "Creating a blog":/doc/cms/creating-blog .
12 # To find your blog, first find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 12 # To find your blog, first find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
13 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 13 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
14 # Then, click on "Manage content": !=/images/doc/control-panel-content-management.en.png(Manage content in control panel)! 14 # Then, click on "Manage content": !=/images/doc/control-panel-content-management.en.png(Manage content in control panel)!
15 15
16 -h2(#Description). Description 16 +h2(#description). Description
17 17
18 # Find your blog on the list and click to view it. !=/images/doc/cms-blog-public-visualization.en.png(Public visualization of blog in CMS)! 18 # Find your blog on the list and click to view it. !=/images/doc/cms-blog-public-visualization.en.png(Public visualization of blog in CMS)!
19 # You will see your blog. Click on "New post" button: !=/images/doc/blog-buttons.en.png(Blog button on visualization mode)! 19 # You will see your blog. Click on "New post" button: !=/images/doc/blog-buttons.en.png(Blog button on visualization mode)!
20 # Then, write an article following instructions on "Writing an article":/doc/cms/writing-article . 20 # Then, write an article following instructions on "Writing an article":/doc/cms/writing-article .
21 21
22 -h2(#RelatedTopics). Related topics 22 +h2(#relatedtopics). Related topics
23 23
24 * "Creating a blog":/doc/cms/creating-blog 24 * "Creating a blog":/doc/cms/creating-blog
25 * "Managing your content":/doc/cms/managing-content 25 * "Managing your content":/doc/cms/managing-content
doc/noosfero/cms/spreading-articles.textile
@@ -2,11 +2,11 @@ h1(order-305). Spreading articles @@ -2,11 +2,11 @@ h1(order-305). Spreading articles
2 2
3 p. _With an article already created, you can spread it in the communities that you participate._ 3 p. _With an article already created, you can spread it in the communities that you participate._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related Topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related Topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 To spread your articles there are two options that you can follow: 10 To spread your articles there are two options that you can follow:
11 11
12 * Through the Content Manager 12 * Through the Content Manager
@@ -19,14 +19,14 @@ To spread your articles there are two options that you can follow: @@ -19,14 +19,14 @@ To spread your articles there are two options that you can follow:
19 *# Access your article and press the "Spread this" button: !=/images/doc/article-bigger-spread-view.en.png(Spread article)! 19 *# Access your article and press the "Spread this" button: !=/images/doc/article-bigger-spread-view.en.png(Spread article)!
20 !=/images/doc/article-spread-view.en.png(Spread article)! 20 !=/images/doc/article-spread-view.en.png(Spread article)!
21 21
22 -h2(#Description). Description 22 +h2(#description). Description
23 23
24 p. Check the communities where you want to spread your article and fill in the name that you want to spread it. 24 p. Check the communities where you want to spread your article and fill in the name that you want to spread it.
25 !=/images/doc/article-spread.en.png(Choose the communities)! 25 !=/images/doc/article-spread.en.png(Choose the communities)!
26 26
27 p. After choosing the communities and the respective names, you just need to press "Spread this". Note that there are communities where the publication needs the moderation of the administrator. 27 p. After choosing the communities and the respective names, you just need to press "Spread this". Note that there are communities where the publication needs the moderation of the administrator.
28 28
29 -h2(#RelatedTopics). Related topics 29 +h2(#relatedtopics). Related topics
30 30
31 * "Writing an article":/doc/cms/writing-article 31 * "Writing an article":/doc/cms/writing-article
32 * "Writing an advanced article":/doc/cms/writing-advanced-article 32 * "Writing an advanced article":/doc/cms/writing-advanced-article
doc/noosfero/cms/writing-advanced-article.textile
@@ -2,18 +2,18 @@ h1(order-340). Writing an advanced article (inserting images, links, videos and @@ -2,18 +2,18 @@ h1(order-340). Writing an advanced article (inserting images, links, videos and
2 2
3 p. _You can add images and links to the articles created on the system to make it more interesting._ 3 p. _You can add images and links to the articles created on the system to make it more interesting._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description 5 +* "How to access":#howaccess
  6 +* "Description":#description
7 ** "Inserting links":#InsertingLinks 7 ** "Inserting links":#InsertingLinks
8 ** "Inserting images":#InsertingImages 8 ** "Inserting images":#InsertingImages
9 ** "Inserting videos and audio":#InsertingVideosAudio 9 ** "Inserting videos and audio":#InsertingVideosAudio
10 -* "Related topics":#RelatedTopics 10 +* "Related topics":#relatedtopics
11 11
12 -h2(#HowAccess). How to access 12 +h2(#howaccess). How to access
13 13
14 p. Read "Writing an article":/doc/cms/writing-article to learn how to access article edition page. 14 p. Read "Writing an article":/doc/cms/writing-article to learn how to access article edition page.
15 15
16 -h2(#Description). Description 16 +h2(#description). Description
17 17
18 h3(#InsertingLinks). Inserting links 18 h3(#InsertingLinks). Inserting links
19 19
@@ -52,7 +52,7 @@ h3(#InsertingVideosAudio). Inserting videos and audio @@ -52,7 +52,7 @@ h3(#InsertingVideosAudio). Inserting videos and audio
52 # You will see a square with a "play" image on your text !=/images/doc/advanced-article-created-object.en.png(Created object on an article)! 52 # You will see a square with a "play" image on your text !=/images/doc/advanced-article-created-object.en.png(Created object on an article)!
53 # After clicking on "Save" button, the video or audio will be displayed on your text. 53 # After clicking on "Save" button, the video or audio will be displayed on your text.
54 54
55 -h2(#RelatedTopics). Related topics 55 +h2(#relatedtopics). Related topics
56 56
57 * "Spreading an article":/doc/cms/spreading-articles 57 * "Spreading an article":/doc/cms/spreading-articles
58 * "Writing an article":/doc/cms/writing-article 58 * "Writing an article":/doc/cms/writing-article
doc/noosfero/cms/writing-article.textile
@@ -2,17 +2,17 @@ h1(order-300). Writing an article @@ -2,17 +2,17 @@ h1(order-300). Writing an article
2 2
3 p. _To publish your articles you can create an aticle, as explained below._ 3 p. _To publish your articles you can create an aticle, as explained below._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find your menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find your menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
13 # Then, click on "Manage content": !=/images/doc/control-panel-content-management.en.png(Manage content in control panel)! 13 # Then, click on "Manage content": !=/images/doc/control-panel-content-management.en.png(Manage content in control panel)!
14 14
15 -h2(#Description). Description 15 +h2(#description). Description
16 16
17 # Click on "New article" button: !=/images/doc/cms-new-article.en.png(New article on CMS)! 17 # Click on "New article" button: !=/images/doc/cms-new-article.en.png(New article on CMS)!
18 # There are four options of article that you can create after clicking on "New article" button: 18 # There are four options of article that you can create after clicking on "New article" button:
@@ -63,7 +63,7 @@ h2(#Description). Description @@ -63,7 +63,7 @@ h2(#Description). Description
63 ## Display the number of article's visualizations 63 ## Display the number of article's visualizations
64 # Then, click on "Save" button and the article will be created. 64 # Then, click on "Save" button and the article will be created.
65 65
66 -h2(#RelatedTopics). Related topics 66 +h2(#relatedtopics). Related topics
67 67
68 * "Spreading an article":/doc/cms/spreading-articles 68 * "Spreading an article":/doc/cms/spreading-articles
69 * "Writing advanced articles":/doc/cms/writing-advanced-article 69 * "Writing advanced articles":/doc/cms/writing-advanced-article
doc/noosfero/community/accepting-members.textile
@@ -2,25 +2,25 @@ h1(order-130). Accepting new members @@ -2,25 +2,25 @@ h1(order-130). Accepting new members
2 2
3 p. _If a community is moderated, the administrator/moderator needs to approve the requests of new members._ 3 p. _If a community is moderated, the administrator/moderator needs to approve the requests of new members._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
13 # Then, click on "Manage my groups" button: !=/images/doc/control-panel-manage-groups.en.png(Manage groups in control panel)! 13 # Then, click on "Manage my groups" button: !=/images/doc/control-panel-manage-groups.en.png(Manage groups in control panel)!
14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are a community administrator, click on "Manage" link. !=/images/doc/groups-list-with-manage-community.en.png(Groups list with permission to manage enterprise)! 14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are a community administrator, click on "Manage" link. !=/images/doc/groups-list-with-manage-community.en.png(Groups list with permission to manage enterprise)!
15 15
16 -h2(#Description). Description 16 +h2(#description). Description
17 17
18 # If the community has pending requests, you will see a box with the list of pending tasks on your control panel. In order to accept or deny, you should click on "Process requests" button 18 # If the community has pending requests, you will see a box with the list of pending tasks on your control panel. In order to accept or deny, you should click on "Process requests" button
19 !=/images/doc/community-control-panel-with-tasks.en.png(Community control panel with pending tasks)! 19 !=/images/doc/community-control-panel-with-tasks.en.png(Community control panel with pending tasks)!
20 # If you want to accept, choose the option "Accept". You also need to choose wich roles the new member should have. Each role has some permissions, that are defined by the environment administrator. 20 # If you want to accept, choose the option "Accept". You also need to choose wich roles the new member should have. Each role has some permissions, that are defined by the environment administrator.
21 !=/images/doc/tasks-list-membership-request.en.png(Community tasks list)! 21 !=/images/doc/tasks-list-membership-request.en.png(Community tasks list)!
22 22
23 -h2(#RelatedTopics). Related topics 23 +h2(#relatedtopics). Related topics
24 24
25 * "Creating a community":/doc/community/creating-community 25 * "Creating a community":/doc/community/creating-community
26 * "Joining a community":/doc/community/joining-community 26 * "Joining a community":/doc/community/joining-community
doc/noosfero/community/creating-community.textile
@@ -2,17 +2,17 @@ h1(order-110). Creating a community @@ -2,17 +2,17 @@ h1(order-110). Creating a community
2 2
3 p. _You can create communities to interact to others users_ 3 p. _You can create communities to interact to others users_
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
13 # Then, click on "Manage my groups": !=/images/doc/control-panel-manage-groups.en.png(Manage groups in control panel)! 13 # Then, click on "Manage my groups": !=/images/doc/control-panel-manage-groups.en.png(Manage groups in control panel)!
14 14
15 -h2(#Description). Description 15 +h2(#description). Description
16 16
17 # Find the button "Create a new community" and click on it. !=/images/doc/groups-list-with-create-community.en.png(Groups list)! 17 # Find the button "Create a new community" and click on it. !=/images/doc/groups-list-with-create-community.en.png(Groups list)!
18 # You will see a form to be filled with the community information. !=/images/doc/community-creation-form.en.png(Form for creation of a community)! 18 # You will see a form to be filled with the community information. !=/images/doc/community-creation-form.en.png(Form for creation of a community)!
@@ -23,7 +23,7 @@ h2(#Description). Description @@ -23,7 +23,7 @@ h2(#Description). Description
23 ## After filling the fields, click on "Create" button. 23 ## After filling the fields, click on "Create" button.
24 # If allowed by the environment, the community will be already created. Otherwise, the environment administrator will need to approve/deny the new community. 24 # If allowed by the environment, the community will be already created. Otherwise, the environment administrator will need to approve/deny the new community.
25 25
26 -h2(#RelatedTopics). Related topics 26 +h2(#relatedtopics). Related topics
27 27
28 * "Login into the system":/doc/user/login 28 * "Login into the system":/doc/user/login
29 29
doc/noosfero/community/editing-appearance.textile
@@ -2,11 +2,11 @@ h1(order-150). Editing appearance @@ -2,11 +2,11 @@ h1(order-150). Editing appearance
2 2
3 p. _You can customize the page of your community, changing the template of it._ 3 p. _You can customize the page of your community, changing the template of it._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
@@ -14,7 +14,7 @@ h2(#HowAccess). How to access @@ -14,7 +14,7 @@ h2(#HowAccess). How to access
14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are a community administrator, click on "Manage" link. !=/images/doc/groups-list-with-manage-community.en.png(Groups list with permission to manage community)! 14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are a community administrator, click on "Manage" link. !=/images/doc/groups-list-with-manage-community.en.png(Groups list with permission to manage community)!
15 # Then, click on "Edit Appearance: !=/images/doc/control-panel-community-edit-appearance.en.png(Edit appearance on user control panel)! 15 # Then, click on "Edit Appearance: !=/images/doc/control-panel-community-edit-appearance.en.png(Edit appearance on user control panel)!
16 16
17 -h2(#Description). Description 17 +h2(#description). Description
18 18
19 # You will see the available templates: 19 # You will see the available templates:
20 ## *default:* This template uses 3 columns. 20 ## *default:* This template uses 3 columns.
@@ -23,7 +23,7 @@ h2(#Description). Description @@ -23,7 +23,7 @@ h2(#Description). Description
23 # You can change your template clicking on the link "Use this template" 23 # You can change your template clicking on the link "Use this template"
24 !=/images/doc/edit-appearance.en.png(Edit appearance)! 24 !=/images/doc/edit-appearance.en.png(Edit appearance)!
25 25
26 -h2(#RelatedTopics). Related topics 26 +h2(#relatedtopics). Related topics
27 27
28 * "Login into the system":/doc/user/login 28 * "Login into the system":/doc/user/login
29 * "Logout of the system":/doc/user/logout 29 * "Logout of the system":/doc/user/logout
doc/noosfero/community/editing-header-footer.textile
@@ -2,11 +2,11 @@ h1(order-170). Editing header and footer @@ -2,11 +2,11 @@ h1(order-170). Editing header and footer
2 2
3 p. _You can customize the page of your community, adding some text or image on header or footer._ 3 p. _You can customize the page of your community, adding some text or image on header or footer._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
@@ -14,7 +14,7 @@ h2(#HowAccess). How to access @@ -14,7 +14,7 @@ h2(#HowAccess). How to access
14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are a community administrator, click on "Manage" link. !=/images/doc/groups-list-with-manage-community.en.png(Groups list with permission to manage community)! 14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are a community administrator, click on "Manage" link. !=/images/doc/groups-list-with-manage-community.en.png(Groups list with permission to manage community)!
15 # Then, click on "Edit Header and Footer": !=/images/doc/control-panel-community-edit-header-footer.en.png(Edit header and footer on community control panel)! 15 # Then, click on "Edit Header and Footer": !=/images/doc/control-panel-community-edit-header-footer.en.png(Edit header and footer on community control panel)!
16 16
17 -h2(#Description). Description 17 +h2(#description). Description
18 18
19 # You will see 2 boxes. In the first box, add the content of your header, that will be displayed on the top of your page. In the second box, add the content of your footer, that will be displayed on the bottom of your page. 19 # You will see 2 boxes. In the first box, add the content of your header, that will be displayed on the top of your page. In the second box, add the content of your footer, that will be displayed on the bottom of your page.
20 # On the top of both boxes you will see some buttons, that will help you formatting your text. Passing mouse over the button, the name of the button function is displayed. !=/images/doc/wysiwyg-buttons.en.png(WYSIWYG buttons)! 20 # On the top of both boxes you will see some buttons, that will help you formatting your text. Passing mouse over the button, the name of the button function is displayed. !=/images/doc/wysiwyg-buttons.en.png(WYSIWYG buttons)!
@@ -46,7 +46,7 @@ h2(#Description). Description @@ -46,7 +46,7 @@ h2(#Description). Description
46 ### *Edit HTML source:* the text written in this editor is transformed in HTML code, to be viewed on browsers. Use this button to view/edit the HTML code of your header/footer. 46 ### *Edit HTML source:* the text written in this editor is transformed in HTML code, to be viewed on browsers. Use this button to view/edit the HTML code of your header/footer.
47 # After editing your header and footer, click on "Save" button !=/images/doc/edit-header-footer.en.png(Editing header and footer)! 47 # After editing your header and footer, click on "Save" button !=/images/doc/edit-header-footer.en.png(Editing header and footer)!
48 48
49 -h2(#RelatedTopics). Related topics 49 +h2(#relatedtopics). Related topics
50 50
51 * "Login into the system":/doc/user/login 51 * "Login into the system":/doc/user/login
52 * "Logout of the system":/doc/user/logout 52 * "Logout of the system":/doc/user/logout
doc/noosfero/community/editing-sideboxes.textile
@@ -2,11 +2,11 @@ h1(order-160). Editing sideboxes @@ -2,11 +2,11 @@ h1(order-160). Editing sideboxes
2 2
3 p. _You can customize the page of your community, changing the blocks that will be displayed on it._ 3 p. _You can customize the page of your community, changing the blocks that will be displayed on it._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
@@ -14,7 +14,7 @@ h2(#HowAccess). How to access @@ -14,7 +14,7 @@ h2(#HowAccess). How to access
14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are a community administrator, click on "Manage" link. !=/images/doc/groups-list-with-manage-community.en.png(Groups list with permission to manage community)! 14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are a community administrator, click on "Manage" link. !=/images/doc/groups-list-with-manage-community.en.png(Groups list with permission to manage community)!
15 # Then, click on "Edit Sideboxes": !=/images/doc/control-panel-community-edit-sideboxes.en.png(Edit sideboxes on community control panel)! 15 # Then, click on "Edit Sideboxes": !=/images/doc/control-panel-community-edit-sideboxes.en.png(Edit sideboxes on community control panel)!
16 16
17 -h2(#Description). Description 17 +h2(#description). Description
18 18
19 # The model of the page will be displayed, always with 3 columns. If you want to add a new block, click on "Add a block": !=/images/doc/community-edit-sideboxes.en.png(Edit sideboxes)! 19 # The model of the page will be displayed, always with 3 columns. If you want to add a new block, click on "Add a block": !=/images/doc/community-edit-sideboxes.en.png(Edit sideboxes)!
20 # You will see the blocks that you can add to your page: !=/images/doc/community-sideboxes-add-block.en.png(Add a block)! 20 # You will see the blocks that you can add to your page: !=/images/doc/community-sideboxes-add-block.en.png(Add a block)!
@@ -47,7 +47,7 @@ h2(#Description). Description @@ -47,7 +47,7 @@ h2(#Description). Description
47 *** *Remove block:* Remove the block from your page. 47 *** *Remove block:* Remove the block from your page.
48 *** *Help on this block:* Display a message with a small description of the block. 48 *** *Help on this block:* Display a message with a small description of the block.
49 49
50 -h2(#RelatedTopics). Related topics 50 +h2(#relatedtopics). Related topics
51 51
52 * "Editing header and footer":/doc/community/editing-header-footer 52 * "Editing header and footer":/doc/community/editing-header-footer
53 * "Editing appearance":/doc/community/editing-appearance 53 * "Editing appearance":/doc/community/editing-appearance
doc/noosfero/community/invite-contacts.textile
@@ -2,18 +2,18 @@ h1(order-120). Inviting contacts from e-mail @@ -2,18 +2,18 @@ h1(order-120). Inviting contacts from e-mail
2 2
3 p. _If you are a community administrator, you can invite e-mail contacts to join your community. If the e-mail is registered on the system, the user will receive an invitation through the system. If it is not registered, the user will receive an invitation on his e-mail._ 3 p. _If you are a community administrator, you can invite e-mail contacts to join your community. If the e-mail is registered on the system, the user will receive an invitation through the system. If it is not registered, the user will receive an invitation on his e-mail._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
13 # Then, click on "Manage my groups" button: !=/images/doc/control-panel-manage-groups.en.png(Manage groups in control panel)! 13 # Then, click on "Manage my groups" button: !=/images/doc/control-panel-manage-groups.en.png(Manage groups in control panel)!
14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are a community administrator, click on "Manage" link. !=/images/doc/groups-list-with-manage-community.en.png(Groups list with permission to manage enterprise)! 14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are a community administrator, click on "Manage" link. !=/images/doc/groups-list-with-manage-community.en.png(Groups list with permission to manage enterprise)!
15 15
16 -h2(#Description). Description 16 +h2(#description). Description
17 17
18 # In community control panel, click on "Manage members" !=/images/doc/community-control-panel-manage-members.en.png(Manage members in control panel)! 18 # In community control panel, click on "Manage members" !=/images/doc/community-control-panel-manage-members.en.png(Manage members in control panel)!
19 # You will see the members list of community and the invitation button. Click on the button. 19 # You will see the members list of community and the invitation button. Click on the button.
@@ -27,7 +27,7 @@ h2(#Description). Description @@ -27,7 +27,7 @@ h2(#Description). Description
27 *** You will also see your list of e-mails. Check the e-mails that you want to send an invitation. 27 *** You will also see your list of e-mails. Check the e-mails that you want to send an invitation.
28 *** Clicking on "Personalize invitation mail", you can edit the text that will be sent. Then, click on "Invite my friends" !=/images/doc/community-import-invitation-step-2.en.png(Import invitation for community. Step 2)! 28 *** Clicking on "Personalize invitation mail", you can edit the text that will be sent. Then, click on "Invite my friends" !=/images/doc/community-import-invitation-step-2.en.png(Import invitation for community. Step 2)!
29 29
30 -h2(#RelatedTopics). Related topics 30 +h2(#relatedtopics). Related topics
31 31
32 * "Creating a community":/doc/community/creating-community 32 * "Creating a community":/doc/community/creating-community
33 * "Joining a community":/doc/community/joining-community 33 * "Joining a community":/doc/community/joining-community
doc/noosfero/community/joining-community.textile
@@ -2,23 +2,23 @@ h1(order-100). Joining a community @@ -2,23 +2,23 @@ h1(order-100). Joining a community
2 2
3 p. _You can be part of a community and interact with its others members. To do that, you can join a community, as explained below._ 3 p. _You can be part of a community and interact with its others members. To do that, you can join a community, as explained below._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related Topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related Topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 p. To join a community, first you need to access its page. Enter the community address on address bar or search for the community in the system and click to view it. 11 p. To join a community, first you need to access its page. Enter the community address on address bar or search for the community in the system and click to view it.
12 12
13 p. To learn how you can find community in the system, read: "Finding communities":/doc/navigation/searching-communities. 13 p. To learn how you can find community in the system, read: "Finding communities":/doc/navigation/searching-communities.
14 14
15 -h2(#Descriptio). Description 15 +h2(#description). Description
16 16
17 # In community's page, click on "+ Join" button below community's image. !=/images/doc/joining-community-button.en.png(Community with join button)! 17 # In community's page, click on "+ Join" button below community's image. !=/images/doc/joining-community-button.en.png(Community with join button)!
18 # After clicking on "Yes, I want to join" button, you will already be member of the community if it is not moderated. !=/images/doc/join-community-confirmation.en.png(Confirmation after asking to join a community)! 18 # After clicking on "Yes, I want to join" button, you will already be member of the community if it is not moderated. !=/images/doc/join-community-confirmation.en.png(Confirmation after asking to join a community)!
19 # If the community is moderated, the administrator will need to approve your request before you start interacting. 19 # If the community is moderated, the administrator will need to approve your request before you start interacting.
20 20
21 -h2(#RelatedTopics). Related topics 21 +h2(#relatedtopics). Related topics
22 22
23 * "Finding communities":/doc/navigation/searching-communities 23 * "Finding communities":/doc/navigation/searching-communities
24 24
doc/noosfero/community/moderating-articles.textile
@@ -2,18 +2,18 @@ h1(order-140). Moderating articles @@ -2,18 +2,18 @@ h1(order-140). Moderating articles
2 2
3 p. _Community's members can publish articles on community. If the community is moderated, the administrator/moderator needs to approve or deny the publication._ 3 p. _Community's members can publish articles on community. If the community is moderated, the administrator/moderator needs to approve or deny the publication._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
13 # Then, click on "Manage my groups" button: !=/images/doc/control-panel-manage-groups.en.png(Manage groups in control panel)! 13 # Then, click on "Manage my groups" button: !=/images/doc/control-panel-manage-groups.en.png(Manage groups in control panel)!
14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are a community administrator, click on "Manage" link. !=/images/doc/groups-list-with-manage-community.en.png(Groups list with permission to manage enterprise)! 14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are a community administrator, click on "Manage" link. !=/images/doc/groups-list-with-manage-community.en.png(Groups list with permission to manage enterprise)!
15 15
16 -h2(#Description). Description 16 +h2(#description). Description
17 17
18 # If the community has pending requests, you will see a box with the list of pending tasks on your control panel. In order to accept or deny, you should click on "Process requests" button 18 # If the community has pending requests, you will see a box with the list of pending tasks on your control panel. In order to accept or deny, you should click on "Process requests" button
19 !=/images/doc/community-control-panel-with-approval-task.en.png(Community control panel with pending tasks)! 19 !=/images/doc/community-control-panel-with-approval-task.en.png(Community control panel with pending tasks)!
@@ -26,7 +26,7 @@ h2(#Description). Description @@ -26,7 +26,7 @@ h2(#Description). Description
26 26
27 After clicking on button "Ok!", your decision will be processed. If you accepted the article, it will be listed as community's content. 27 After clicking on button "Ok!", your decision will be processed. If you accepted the article, it will be listed as community's content.
28 28
29 -h2(#RelatedTopics). Related topics 29 +h2(#relatedtopics). Related topics
30 30
31 * "Creating a community":/doc/community/creating-community 31 * "Creating a community":/doc/community/creating-community
32 * "Joining a community":/doc/community/joining-community 32 * "Joining a community":/doc/community/joining-community
doc/noosfero/community/send-email-members.textile
@@ -2,25 +2,25 @@ h1(order-122). Sending e-mail to members @@ -2,25 +2,25 @@ h1(order-122). Sending e-mail to members
2 2
3 p. _If you are a community administrator, you can send e-mail to all members of your community._ 3 p. _If you are a community administrator, you can send e-mail to all members of your community._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
13 # Then, click on "Manage my groups" button: !=/images/doc/control-panel-manage-groups.en.png(Manage groups in control panel)! 13 # Then, click on "Manage my groups" button: !=/images/doc/control-panel-manage-groups.en.png(Manage groups in control panel)!
14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are a community administrator, click on "Manage" link. !=/images/doc/groups-list-with-manage-community.en.png(Groups list with permission to manage enterprise)! 14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are a community administrator, click on "Manage" link. !=/images/doc/groups-list-with-manage-community.en.png(Groups list with permission to manage enterprise)!
15 15
16 -h2(#Description). Description 16 +h2(#description). Description
17 17
18 # In community control panel, click on "Manage members" !=/images/doc/community-control-panel-manage-members.en.png(Manage members in control panel)! 18 # In community control panel, click on "Manage members" !=/images/doc/community-control-panel-manage-members.en.png(Manage members in control panel)!
19 # You will see the members list of community and the send e-mail button. Click on the button. 19 # You will see the members list of community and the send e-mail button. Click on the button.
20 !=/images/doc/community-members-with-send-mail-button.en.png(Community's members list)! 20 !=/images/doc/community-members-with-send-mail-button.en.png(Community's members list)!
21 # Fill in the "Subject" field with the subject of the e-mail and the "Body" field with the content of the e-mail you want to send. Then, click on "Send" !=/images/doc/community-send-email.en.png(Sending e-mail to community members)! 21 # Fill in the "Subject" field with the subject of the e-mail and the "Body" field with the content of the e-mail you want to send. Then, click on "Send" !=/images/doc/community-send-email.en.png(Sending e-mail to community members)!
22 22
23 -h2(#RelatedTopics). Related topics 23 +h2(#relatedtopics). Related topics
24 24
25 * "Creating a community":/doc/community/creating-community 25 * "Creating a community":/doc/community/creating-community
26 * "Joining a community":/doc/community/joining-community 26 * "Joining a community":/doc/community/joining-community
doc/noosfero/enterprise/activating-enterprise.textile
@@ -4,16 +4,16 @@ p. _If you have an enterprise that is registered in the system, you might have @@ -4,16 +4,16 @@ p. _If you have an enterprise that is registered in the system, you might have
4 4
5 p. _This article shows how you can activate your enterprise in the system. After that, you can update information, add members, products and much more._ 5 p. _This article shows how you can activate your enterprise in the system. After that, you can update information, add members, products and much more._
6 6
7 -* "How to access":#HowAccess  
8 -* "Description":#Description  
9 -* "Related Topics":#RelatedTopics 7 +* "How to access":#howaccess
  8 +* "Description":#description
  9 +* "Related Topics":#relatedtopics
10 10
11 -h2(#HowAccess). How to access 11 +h2(#howaccess). How to access
12 12
13 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 13 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
14 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 14 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
15 15
16 -h2(#Description). Description 16 +h2(#description). Description
17 17
18 # Below the control panel actions, you will see a box. Fill in the field with the enterprise activation code and click on "Activate". 18 # Below the control panel actions, you will see a box. Fill in the field with the enterprise activation code and click on "Activate".
19 !=/images/doc/enterprise-activation-box.en.png(Control panel and enterprise activation box)! 19 !=/images/doc/enterprise-activation-box.en.png(Control panel and enterprise activation box)!
@@ -23,7 +23,7 @@ h2(#Description). Description @@ -23,7 +23,7 @@ h2(#Description). Description
23 # Then, you will receive a confirmation that your enterprise was activated. In this screen, you can go to enterprise's control panel and update it or go to your control panel. !=/images/doc/activation-conlusion.en.png(Conclusion of enterprise activation)! 23 # Then, you will receive a confirmation that your enterprise was activated. In this screen, you can go to enterprise's control panel and update it or go to your control panel. !=/images/doc/activation-conlusion.en.png(Conclusion of enterprise activation)!
24 24
25 25
26 -h2(#RelatedTopics). Related Topics 26 +h2(#relatedtopics). Related Topics
27 27
28 * "Editing enterprise settings":/doc/enterprise/editing-enterprise-info 28 * "Editing enterprise settings":/doc/enterprise/editing-enterprise-info
29 * "Registering a new user":/doc/user/registering-new-user 29 * "Registering a new user":/doc/user/registering-new-user
doc/noosfero/enterprise/adding-product.textile
@@ -2,15 +2,15 @@ h1(order-212). Adding products to an enterprise @@ -2,15 +2,15 @@ h1(order-212). Adding products to an enterprise
2 2
3 p. _If you are an enterprise administrator, you can add products to the enterprise._ 3 p. _If you are an enterprise administrator, you can add products to the enterprise._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Go to the enterprise's page. Use the "search":/doc/navigation/searching-enterprises and click on the enterprise you want to add a product. 11 # Go to the enterprise's page. Use the "search":/doc/navigation/searching-enterprises and click on the enterprise you want to add a product.
12 12
13 -h2(#Description). Description 13 +h2(#description). Description
14 14
15 # In enterprise's control panel, click on "Manage products and services" !=/images/doc/control-panel-manage-products.en.png(Control panel with manage products)! 15 # In enterprise's control panel, click on "Manage products and services" !=/images/doc/control-panel-manage-products.en.png(Control panel with manage products)!
16 # You will see the list of products already registered. To add a new product/service click on "New product or service" button !=/images/doc/enterprise-product-list-new-product-button.en.png(Product list of enterprise on manage products)! 16 # You will see the list of products already registered. To add a new product/service click on "New product or service" button !=/images/doc/enterprise-product-list-new-product-button.en.png(Product list of enterprise on manage products)!
@@ -27,7 +27,7 @@ h2(#Description). Description @@ -27,7 +27,7 @@ h2(#Description). Description
27 ### Fill in the form with the category of the input you are adding and press the "Save and continue" button !=/images/doc/enterprise-product-add-input-form.en.png(Inputs tab)! 27 ### Fill in the form with the category of the input you are adding and press the "Save and continue" button !=/images/doc/enterprise-product-add-input-form.en.png(Inputs tab)!
28 # Now the product is ready to be displayed !=/images/doc/enterprise-product-complete.en.png(Product created final)! 28 # Now the product is ready to be displayed !=/images/doc/enterprise-product-complete.en.png(Product created final)!
29 29
30 -h2(#RelatedTopics). Related topics 30 +h2(#relatedtopics). Related topics
31 31
32 * "Editing enterprise settings":/doc/enterprise/editing-enterprise-info 32 * "Editing enterprise settings":/doc/enterprise/editing-enterprise-info
33 * "Activating your enterprise":/doc/enterprise/activating-enterprise 33 * "Activating your enterprise":/doc/enterprise/activating-enterprise
doc/noosfero/enterprise/disabling-enterprise.textile
@@ -2,25 +2,25 @@ h1(order-260). Disabling an enterprise @@ -2,25 +2,25 @@ h1(order-260). Disabling an enterprise
2 2
3 p. _If you are an administrator of any enterprise and you don't want that it appears in the system anymore, you can disable it by following this steps._ 3 p. _If you are an administrator of any enterprise and you don't want that it appears in the system anymore, you can disable it by following this steps._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
13 # Then, click on "Manage my groups" button: !=/images/doc/control-panel-manage-groups.en.png(Manage groups in control panel)! 13 # Then, click on "Manage my groups" button: !=/images/doc/control-panel-manage-groups.en.png(Manage groups in control panel)!
14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are administrator of enterprise "My enterprise", click on "Manage" link. !=/images/doc/groups-list-with-manage-enterprise.en.png(Groups list with permission to manage enterprise)! 14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are administrator of enterprise "My enterprise", click on "Manage" link. !=/images/doc/groups-list-with-manage-enterprise.en.png(Groups list with permission to manage enterprise)!
15 15
16 -h2(#Description). Description 16 +h2(#description). Description
17 17
18 # In enterprise's control panel, click on "Disable Enterprise" 18 # In enterprise's control panel, click on "Disable Enterprise"
19 !=/images/doc/control-panel-disable-enterprise.en.png(Control panel with disable enterprise)! 19 !=/images/doc/control-panel-disable-enterprise.en.png(Control panel with disable enterprise)!
20 # You will see the confirmation screen. If you are sure that you want to disable the enterprise, click on "Yes, I want to disable". 20 # You will see the confirmation screen. If you are sure that you want to disable the enterprise, click on "Yes, I want to disable".
21 !=/images/doc/disable-enterprise-confirmation.en.png(Enterprise disabling confirmation)! 21 !=/images/doc/disable-enterprise-confirmation.en.png(Enterprise disabling confirmation)!
22 22
23 -h2(#RelatedTopics). Related Topics 23 +h2(#relatedtopics). Related Topics
24 24
25 * "Login into the system":/doc/user/login 25 * "Login into the system":/doc/user/login
26 * "Activating enterprise":/doc/enterprise/activating-enterprise 26 * "Activating enterprise":/doc/enterprise/activating-enterprise
doc/noosfero/enterprise/editing-appearance.textile
@@ -2,11 +2,11 @@ h1(order-240). Editing appearance @@ -2,11 +2,11 @@ h1(order-240). Editing appearance
2 2
3 p. _You can customize the page of your enterprise, changing the template of it._ 3 p. _You can customize the page of your enterprise, changing the template of it._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
@@ -14,7 +14,7 @@ h2(#HowAccess). How to access @@ -14,7 +14,7 @@ h2(#HowAccess). How to access
14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are a community administrator, click on "Manage" link. !=/images/doc/groups-list-with-manage-enterprise.en.png(Groups list with permission to manage community)! 14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are a community administrator, click on "Manage" link. !=/images/doc/groups-list-with-manage-enterprise.en.png(Groups list with permission to manage community)!
15 # Then, click on "Edit Appearance: !=/images/doc/control-panel-enterprise-edit-appearance.en.png(Edit appearance on user control panel)! 15 # Then, click on "Edit Appearance: !=/images/doc/control-panel-enterprise-edit-appearance.en.png(Edit appearance on user control panel)!
16 16
17 -h2(#Description). Description 17 +h2(#description). Description
18 18
19 # You will see the available templates: 19 # You will see the available templates:
20 ## *default:* This template uses 3 columns. 20 ## *default:* This template uses 3 columns.
@@ -23,7 +23,7 @@ h2(#Description). Description @@ -23,7 +23,7 @@ h2(#Description). Description
23 # You can change your template clicking on the link "Use this template" 23 # You can change your template clicking on the link "Use this template"
24 !=/images/doc/edit-appearance.en.png(Edit appearance)! 24 !=/images/doc/edit-appearance.en.png(Edit appearance)!
25 25
26 -h2(#RelatedTopics). Related topics 26 +h2(#relatedtopics). Related topics
27 27
28 * "Login into the system":/doc/user/login 28 * "Login into the system":/doc/user/login
29 * "Logout of the system":/doc/user/logout 29 * "Logout of the system":/doc/user/logout
doc/noosfero/enterprise/editing-enterprise-info.textile
@@ -2,18 +2,18 @@ h1(order-220). Editing enterprise settings @@ -2,18 +2,18 @@ h1(order-220). Editing enterprise settings
2 2
3 p. _If you are administrator of an enterprise, you can edit its settings._ 3 p. _If you are administrator of an enterprise, you can edit its settings._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
13 # Then, click on "Manage my groups" button: !=/images/doc/control-panel-manage-groups.en.png(Manage groups in control panel)! 13 # Then, click on "Manage my groups" button: !=/images/doc/control-panel-manage-groups.en.png(Manage groups in control panel)!
14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are administrator of enterprise "My enterprise", click on "Manage" link. !=/images/doc/groups-list-with-manage-enterprise.en.png(Groups list with permission to manage enterprise)! 14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are administrator of enterprise "My enterprise", click on "Manage" link. !=/images/doc/groups-list-with-manage-enterprise.en.png(Groups list with permission to manage enterprise)!
15 15
16 -h2(#Description). Description 16 +h2(#description). Description
17 17
18 # In enterprise's control panel, click on "Enterprise Info and settings" 18 # In enterprise's control panel, click on "Enterprise Info and settings"
19 !=/images/doc/control-panel-enterprise-edit-profile-info.en.png(Control panel with edit profile info)! 19 !=/images/doc/control-panel-enterprise-edit-profile-info.en.png(Control panel with edit profile info)!
@@ -32,7 +32,7 @@ h2(#Description). Description @@ -32,7 +32,7 @@ h2(#Description). Description
32 # Then, click on "Save" button" and the profile will be updated. 32 # Then, click on "Save" button" and the profile will be updated.
33 33
34 34
35 -h2(#RelatedTopics). Related topics 35 +h2(#relatedtopics). Related topics
36 36
37 * "Login into the system":/doc/user/login 37 * "Login into the system":/doc/user/login
38 * "Activating enterprise":/doc/enterprise/activating-enterprise 38 * "Activating enterprise":/doc/enterprise/activating-enterprise
doc/noosfero/enterprise/editing-header-footer.textile
@@ -2,11 +2,11 @@ h1(order-250). Editing header and footer @@ -2,11 +2,11 @@ h1(order-250). Editing header and footer
2 2
3 p. _You can customize the page of your enterprise, adding some text or image on header or footer._ 3 p. _You can customize the page of your enterprise, adding some text or image on header or footer._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
@@ -14,7 +14,7 @@ h2(#HowAccess). How to access @@ -14,7 +14,7 @@ h2(#HowAccess). How to access
14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are a community administrator, click on "Manage" link. !=/images/doc/groups-list-with-manage-enterprise.en.png(Groups list with permission to manage enterprise)! 14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are a community administrator, click on "Manage" link. !=/images/doc/groups-list-with-manage-enterprise.en.png(Groups list with permission to manage enterprise)!
15 # Then, click on "Edit Header and Footer": !=/images/doc/control-panel-enterprise-edit-header-footer.en.png(Edit header and footer on enterprise control panel)! 15 # Then, click on "Edit Header and Footer": !=/images/doc/control-panel-enterprise-edit-header-footer.en.png(Edit header and footer on enterprise control panel)!
16 16
17 -h2(#Description). Description 17 +h2(#description). Description
18 18
19 # You will see 2 boxes. In the first box, add the content of your header, that will be displayed on the top of your page. In the second box, add the content of your footer, that will be displayed on the bottom of your page. 19 # You will see 2 boxes. In the first box, add the content of your header, that will be displayed on the top of your page. In the second box, add the content of your footer, that will be displayed on the bottom of your page.
20 # On the top of both boxes you will see some buttons, that will help you formatting your text. Passing mouse over the button, the name of the button function is displayed. !=/images/doc/wysiwyg-buttons.en.png(WYSIWYG buttons)! 20 # On the top of both boxes you will see some buttons, that will help you formatting your text. Passing mouse over the button, the name of the button function is displayed. !=/images/doc/wysiwyg-buttons.en.png(WYSIWYG buttons)!
@@ -46,7 +46,7 @@ h2(#Description). Description @@ -46,7 +46,7 @@ h2(#Description). Description
46 ### *Edit HTML source:* the text written in this editor is transformed in HTML code, to be viewed on browsers. Use this button to view/edit the HTML code of your header/footer. 46 ### *Edit HTML source:* the text written in this editor is transformed in HTML code, to be viewed on browsers. Use this button to view/edit the HTML code of your header/footer.
47 # After editing your header and footer, click on "Save" button !=/images/doc/edit-header-footer.en.png(Editing header and footer)! 47 # After editing your header and footer, click on "Save" button !=/images/doc/edit-header-footer.en.png(Editing header and footer)!
48 48
49 -h2(#RelatedTopics). Related topics 49 +h2(#relatedtopics). Related topics
50 50
51 * "Login into the system":/doc/user/login 51 * "Login into the system":/doc/user/login
52 * "Logout of the system":/doc/user/logout 52 * "Logout of the system":/doc/user/logout
doc/noosfero/enterprise/editing-sideboxes.textile
@@ -2,11 +2,11 @@ h1(order-230). Editing sideboxes @@ -2,11 +2,11 @@ h1(order-230). Editing sideboxes
2 2
3 p. _You can customize the page of your enterprise, changing the blocks that will be displayed on it._ 3 p. _You can customize the page of your enterprise, changing the blocks that will be displayed on it._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
@@ -14,7 +14,7 @@ h2(#HowAccess). How to access @@ -14,7 +14,7 @@ h2(#HowAccess). How to access
14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are an enterprise administrator, click on "Manage" link. !=/images/doc/groups-list-with-manage-enterprise.en.png(Groups list with permission to manage enterprise)! 14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are an enterprise administrator, click on "Manage" link. !=/images/doc/groups-list-with-manage-enterprise.en.png(Groups list with permission to manage enterprise)!
15 # Then, click on "Edit Sideboxes": !=/images/doc/control-panel-enterprise-edit-sideboxes.en.png(Edit sideboxes on enterprise control panel)! 15 # Then, click on "Edit Sideboxes": !=/images/doc/control-panel-enterprise-edit-sideboxes.en.png(Edit sideboxes on enterprise control panel)!
16 16
17 -h2(#Description). Description 17 +h2(#description). Description
18 18
19 # The model of the page will be displayed, always with 3 columns. If you want to add a new block, click on "Add a block": !=/images/doc/enterprise-edit-sideboxes.en.png(Edit sideboxes)! 19 # The model of the page will be displayed, always with 3 columns. If you want to add a new block, click on "Add a block": !=/images/doc/enterprise-edit-sideboxes.en.png(Edit sideboxes)!
20 # You will see the blocks that you can add to your page: !=/images/doc/enterprise-sideboxes-add-block.en.png(Add a block)! 20 # You will see the blocks that you can add to your page: !=/images/doc/enterprise-sideboxes-add-block.en.png(Add a block)!
@@ -49,7 +49,7 @@ h2(#Description). Description @@ -49,7 +49,7 @@ h2(#Description). Description
49 *** *Remove block:* Remove the block from your page. 49 *** *Remove block:* Remove the block from your page.
50 *** *Help on this block:* Display a message with a small description of the block. 50 *** *Help on this block:* Display a message with a small description of the block.
51 51
52 -h2(#RelatedTopics). Related topics 52 +h2(#relatedtopics). Related topics
53 53
54 * "Editing header and footer":/doc/enterprise/editing-header-footer 54 * "Editing header and footer":/doc/enterprise/editing-header-footer
55 * "Editing appearance":/doc/enterprise/editing-appearance 55 * "Editing appearance":/doc/enterprise/editing-appearance
doc/noosfero/enterprise/managing-enterprise-members.textile
@@ -2,18 +2,18 @@ h1(order-210). Managing and adding members to an enterprise @@ -2,18 +2,18 @@ h1(order-210). Managing and adding members to an enterprise
2 2
3 p. _If you are an enterprise administrator, you can add or remove members from enterprise and also define which permissions each member will have_ 3 p. _If you are an enterprise administrator, you can add or remove members from enterprise and also define which permissions each member will have_
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
13 # Then, click on "Manage my groups": !=/images/doc/control-panel-manage-groups.en.png(Manage groups in control panel)! 13 # Then, click on "Manage my groups": !=/images/doc/control-panel-manage-groups.en.png(Manage groups in control panel)!
14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are administrator of an enterprise", click on "Manage" link. !=/images/doc/groups-list-with-manage-enterprise.en.png(Groups list with permission to manage enterprise)! 14 # You will see the list of groups (communities/enterprises) that you are a member. The groups that you can manage are listed with a link "Manage". Assuming that you are administrator of an enterprise", click on "Manage" link. !=/images/doc/groups-list-with-manage-enterprise.en.png(Groups list with permission to manage enterprise)!
15 15
16 -h2(#Description). Description 16 +h2(#description). Description
17 17
18 # In enterprise's control panel, click on "Manage members" 18 # In enterprise's control panel, click on "Manage members"
19 !=/images/doc/control-panel-manage-members.en.png(Control panel with manage members)! 19 !=/images/doc/control-panel-manage-members.en.png(Control panel with manage members)!
@@ -25,7 +25,7 @@ h2(#Description). Description @@ -25,7 +25,7 @@ h2(#Description). Description
25 ### Click on "+" button to add the user. After clicking the button, the table on the right side ("Current members") will be updated with the new member. 25 ### Click on "+" button to add the user. After clicking the button, the table on the right side ("Current members") will be updated with the new member.
26 !=/images/doc/add-member-enterprise.en.png(Add member on manage member)! 26 !=/images/doc/add-member-enterprise.en.png(Add member on manage member)!
27 27
28 -h2(#RelatedTopics). Related topics 28 +h2(#relatedtopics). Related topics
29 29
30 * "Editing enterprise settings":/doc/enterprise/editing-enterprise-info 30 * "Editing enterprise settings":/doc/enterprise/editing-enterprise-info
31 * "Activating your enterprise":/doc/enterprise/activating-enterprise 31 * "Activating your enterprise":/doc/enterprise/activating-enterprise
doc/noosfero/navigation/advanced-search.textile
@@ -2,15 +2,15 @@ h1(order-620). Advanced search @@ -2,15 +2,15 @@ h1(order-620). Advanced search
2 2
3 p. _When an user is navigating on the system, he can do a search to find articles, communities, people, enterprises or products._ 3 p. _When an user is navigating on the system, he can do a search to find articles, communities, people, enterprises or products._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 p. Do a search as explained in "Searching":/doc/navigation/searching 11 p. Do a search as explained in "Searching":/doc/navigation/searching
12 12
13 -h2(#Description). Description 13 +h2(#description). Description
14 14
15 # Click on "More options" to specify the search !=/images/doc/search-more-options.en.png(More options button on search)! 15 # Click on "More options" to specify the search !=/images/doc/search-more-options.en.png(More options button on search)!
16 # Type what you want to search on the system !=/images/doc/search-more-options-open.en.png(More options on search)! 16 # Type what you want to search on the system !=/images/doc/search-more-options-open.en.png(More options on search)!
@@ -21,7 +21,7 @@ h2(#Description). Description @@ -21,7 +21,7 @@ h2(#Description). Description
21 ## Click on "Search" button to do the search. 21 ## Click on "Search" button to do the search.
22 # In this example, we searched for "free software" in articles/people/communities/events/enterprises/products. Then you will see a screen with the search result. Each box brings one kind of information with a limited number of results. To see more results of a box, click on "See all" link below the box. !=/images/doc/search-results-with-example.en.png(Advanced search results with example)! 22 # In this example, we searched for "free software" in articles/people/communities/events/enterprises/products. Then you will see a screen with the search result. Each box brings one kind of information with a limited number of results. To see more results of a box, click on "See all" link below the box. !=/images/doc/search-results-with-example.en.png(Advanced search results with example)!
23 23
24 -h2(#RelatedTopics). Related topics 24 +h2(#relatedtopics). Related topics
25 25
26 * "Searching":/doc/navigation/searching 26 * "Searching":/doc/navigation/searching
27 * "Findind people":/doc/navigation/searching-people 27 * "Findind people":/doc/navigation/searching-people
doc/noosfero/navigation/community-balloon.textile
@@ -2,16 +2,16 @@ h1(order-619). Community balloon @@ -2,16 +2,16 @@ h1(order-619). Community balloon
2 2
3 p. _When an user is navigating on the system, he can see details of a community and become a member quickly._ 3 p. _When an user is navigating on the system, he can see details of a community and become a member quickly._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 p. If enabled on environment, wherever a community appears you can click on the top-left corner to see the community balloon !=/images/doc/community-balloon-closed-en.png(Community balloon link)! 11 p. If enabled on environment, wherever a community appears you can click on the top-left corner to see the community balloon !=/images/doc/community-balloon-closed-en.png(Community balloon link)!
12 12
13 13
14 -h2(#Description). Description 14 +h2(#description). Description
15 15
16 p. The community balloon has links to allow direct access to some community's pages !=/images/doc/community-balloon-en.png(Community balloon links)! 16 p. The community balloon has links to allow direct access to some community's pages !=/images/doc/community-balloon-en.png(Community balloon links)!
17 # Wall: lists scraps sent to this community 17 # Wall: lists scraps sent to this community
@@ -21,7 +21,7 @@ p. The community balloon has links to allow direct access to some community&#39;s pa @@ -21,7 +21,7 @@ p. The community balloon has links to allow direct access to some community&#39;s pa
21 # Leave: if you are a member of community, you can quickly leave it clicking on this link 21 # Leave: if you are a member of community, you can quickly leave it clicking on this link
22 # Send an e-mail: if you are a member of community, you can send an e-mail to the community admins clicking on this link 22 # Send an e-mail: if you are a member of community, you can send an e-mail to the community admins clicking on this link
23 23
24 -h2(#RelatedTopics). Related topics 24 +h2(#relatedtopics). Related topics
25 25
26 * "Finding communities":/doc/navigation/searching-communities 26 * "Finding communities":/doc/navigation/searching-communities
27 27
doc/noosfero/navigation/finding-more-active-communities.textile
@@ -2,22 +2,22 @@ h1(order-615). Finding more active communities @@ -2,22 +2,22 @@ h1(order-615). Finding more active communities
2 2
3 p. _To find the communities who create more content._ 3 p. _To find the communities who create more content._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 p. Find on top of page the term "communities" and click on the arrow below it: 11 p. Find on top of page the term "communities" and click on the arrow below it:
12 !=/images/doc/menu-more-active-communities.en.png(More active communities on top menu)! 12 !=/images/doc/menu-more-active-communities.en.png(More active communities on top menu)!
13 13
14 -h2(#Description). Description 14 +h2(#description). Description
15 # The communities will be listed ordered by number of content created with most active first. Below the profile's picture, you will see the number of articles created by the community !=/images/doc/more-active-communities-detail.en.png(Profile with number of articles)! 15 # The communities will be listed ordered by number of content created with most active first. Below the profile's picture, you will see the number of articles created by the community !=/images/doc/more-active-communities-detail.en.png(Profile with number of articles)!
16 # Fill in the search field with what you want to look for and click on "Search" !=/images/doc/more-active-communities.en.png(More active communities search field)! 16 # Fill in the search field with what you want to look for and click on "Search" !=/images/doc/more-active-communities.en.png(More active communities search field)!
17 # Then you will see the search results ordered by the number of content created by the community !=/images/doc/more-active-communities-with-example.en.png(More active communities search results with example)! 17 # Then you will see the search results ordered by the number of content created by the community !=/images/doc/more-active-communities-with-example.en.png(More active communities search results with example)!
18 # Clicking on one of the search results, you will be redirected to the homepage of choosen community. 18 # Clicking on one of the search results, you will be redirected to the homepage of choosen community.
19 19
20 -h2(#RelatedTopics). Related topics 20 +h2(#relatedtopics). Related topics
21 21
22 * "Searching":/doc/navigation/searching 22 * "Searching":/doc/navigation/searching
23 * "Finding more recent communities":/doc/navigation/finding-more-recent-communities 23 * "Finding more recent communities":/doc/navigation/finding-more-recent-communities
doc/noosfero/navigation/finding-more-active-people.textile
@@ -2,22 +2,22 @@ h1(order-614). Finding more active people @@ -2,22 +2,22 @@ h1(order-614). Finding more active people
2 2
3 p. _To find the people who create more content._ 3 p. _To find the people who create more content._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 p. Find on top of page the term "People" and click on the arrow below it: 11 p. Find on top of page the term "People" and click on the arrow below it:
12 !=/images/doc/menu-more-active-people.en.png(More active people on top menu)! 12 !=/images/doc/menu-more-active-people.en.png(More active people on top menu)!
13 13
14 -h2(#Description). Description 14 +h2(#description). Description
15 # The people will be listed ordered by number of content created with most active first. Below the profile's picture, you will see the number of articles created by the person !=/images/doc/more-active-people-detail.en.png(Profile with number of articles)! 15 # The people will be listed ordered by number of content created with most active first. Below the profile's picture, you will see the number of articles created by the person !=/images/doc/more-active-people-detail.en.png(Profile with number of articles)!
16 # Fill in the search field with what you want to look for and click on "Search" !=/images/doc/more-active-people.en.png(More active people search field)! 16 # Fill in the search field with what you want to look for and click on "Search" !=/images/doc/more-active-people.en.png(More active people search field)!
17 # Then you will see the search results ordered by the number of content created by the person !=/images/doc/more-active-people-with-example.en.png(More active people search results with example)! 17 # Then you will see the search results ordered by the number of content created by the person !=/images/doc/more-active-people-with-example.en.png(More active people search results with example)!
18 # Clicking on one of the search results, you will be redirected to the homepage of choosen person. 18 # Clicking on one of the search results, you will be redirected to the homepage of choosen person.
19 19
20 -h2(#RelatedTopics). Related topics 20 +h2(#relatedtopics). Related topics
21 21
22 * "Searching":/doc/navigation/searching 22 * "Searching":/doc/navigation/searching
23 * "Finding more recent people":/doc/navigation/finding-more-recent-people 23 * "Finding more recent people":/doc/navigation/finding-more-recent-people
doc/noosfero/navigation/finding-more-popular-communities.textile
@@ -2,22 +2,22 @@ h1(order-617). Finding more popular communities @@ -2,22 +2,22 @@ h1(order-617). Finding more popular communities
2 2
3 p. _To find the communities who has more members._ 3 p. _To find the communities who has more members._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 p. Find on top of page the term "communities" and click on the arrow below it: 11 p. Find on top of page the term "communities" and click on the arrow below it:
12 !=/images/doc/menu-more-popular-communities.en.png(More popular communities on top menu)! 12 !=/images/doc/menu-more-popular-communities.en.png(More popular communities on top menu)!
13 13
14 -h2(#Description). Description 14 +h2(#description). Description
15 # The communities will be listed ordered by number of members with most popular first. Below the profile's picture, you will see the number of members the community has !=/images/doc/more-popular-communities-detail.en.png(Profile with number of members)! 15 # The communities will be listed ordered by number of members with most popular first. Below the profile's picture, you will see the number of members the community has !=/images/doc/more-popular-communities-detail.en.png(Profile with number of members)!
16 # Fill in the search field with what you want to look for and click on "Search" !=/images/doc/more-popular-communities.en.png(More popular communities search field)! 16 # Fill in the search field with what you want to look for and click on "Search" !=/images/doc/more-popular-communities.en.png(More popular communities search field)!
17 # Then you will see the search results ordered by the number of members the community has !=/images/doc/more-popular-communities-with-example.en.png(More popular communities search results with example)! 17 # Then you will see the search results ordered by the number of members the community has !=/images/doc/more-popular-communities-with-example.en.png(More popular communities search results with example)!
18 # Clicking on one of the search results, you will be redirected to the homepage of choosen community. 18 # Clicking on one of the search results, you will be redirected to the homepage of choosen community.
19 19
20 -h2(#RelatedTopics). Related topics 20 +h2(#relatedtopics). Related topics
21 21
22 * "Searching":/doc/navigation/searching 22 * "Searching":/doc/navigation/searching
23 * "Finding more recent communities":/doc/navigation/finding-more-recent-communities 23 * "Finding more recent communities":/doc/navigation/finding-more-recent-communities
doc/noosfero/navigation/finding-more-popular-people.textile
@@ -2,22 +2,22 @@ h1(order-616). Finding more popular people @@ -2,22 +2,22 @@ h1(order-616). Finding more popular people
2 2
3 p. _To find the people who has more friends._ 3 p. _To find the people who has more friends._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 p. Find on top of page the term "People" and click on the arrow below it: 11 p. Find on top of page the term "People" and click on the arrow below it:
12 !=/images/doc/menu-more-popular-people.en.png(More popular people on top menu)! 12 !=/images/doc/menu-more-popular-people.en.png(More popular people on top menu)!
13 13
14 -h2(#Description). Description 14 +h2(#description). Description
15 # The people will be listed ordered by number of friends with most popular first. Below the profile's picture, you will see the number of friends the person has !=/images/doc/more-popular-people-detail.en.png(Profile with number of friends)! 15 # The people will be listed ordered by number of friends with most popular first. Below the profile's picture, you will see the number of friends the person has !=/images/doc/more-popular-people-detail.en.png(Profile with number of friends)!
16 # Fill in the search field with what you want to look for and click on "Search" !=/images/doc/more-popular-people.en.png(More popular people search field)! 16 # Fill in the search field with what you want to look for and click on "Search" !=/images/doc/more-popular-people.en.png(More popular people search field)!
17 # Then you will see the search results ordered by the number of friends the person has on environment !=/images/doc/more-popular-people-with-example.en.png(More popular people search results with example)! 17 # Then you will see the search results ordered by the number of friends the person has on environment !=/images/doc/more-popular-people-with-example.en.png(More popular people search results with example)!
18 # Clicking on one of the search results, you will be redirected to the homepage of choosen person. 18 # Clicking on one of the search results, you will be redirected to the homepage of choosen person.
19 19
20 -h2(#RelatedTopics). Related topics 20 +h2(#relatedtopics). Related topics
21 21
22 * "Searching":/doc/navigation/searching 22 * "Searching":/doc/navigation/searching
23 * "Finding more recent people":/doc/navigation/finding-more-recent-people 23 * "Finding more recent people":/doc/navigation/finding-more-recent-people
doc/noosfero/navigation/finding-more-recent-communities.textile
@@ -2,22 +2,22 @@ h1(order-613). Finding more recent communities @@ -2,22 +2,22 @@ h1(order-613). Finding more recent communities
2 2
3 p. _To find the communities created on the system in recent times._ 3 p. _To find the communities created on the system in recent times._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 p. Find on top of page the term "communities" and click on the arrow below it: 11 p. Find on top of page the term "communities" and click on the arrow below it:
12 !=/images/doc/menu-more-recent-communities.en.png(More recent communities on top menu)! 12 !=/images/doc/menu-more-recent-communities.en.png(More recent communities on top menu)!
13 13
14 -h2(#Description). Description 14 +h2(#description). Description
15 # The communities will be listed ordered by creation date with most recent first. Below the profile's picture, you will see the date that the community was created !=/images/doc/more-recent-communities-detail.en.png(Profile with creation date)! 15 # The communities will be listed ordered by creation date with most recent first. Below the profile's picture, you will see the date that the community was created !=/images/doc/more-recent-communities-detail.en.png(Profile with creation date)!
16 # Fill in the search field with what you want to look for and click on "Search" !=/images/doc/more-recent-communities.en.png(More recent communities search field)! 16 # Fill in the search field with what you want to look for and click on "Search" !=/images/doc/more-recent-communities.en.png(More recent communities search field)!
17 # Then you will see the search results ordered by creation date !=/images/doc/more-recent-communities-with-example.en.png(More recent communities search results with example)! 17 # Then you will see the search results ordered by creation date !=/images/doc/more-recent-communities-with-example.en.png(More recent communities search results with example)!
18 # Clicking on one of the search results, you will be redirected to the homepage of choosen community. 18 # Clicking on one of the search results, you will be redirected to the homepage of choosen community.
19 19
20 -h2(#RelatedTopics). Related topics 20 +h2(#relatedtopics). Related topics
21 21
22 * "Searching":/doc/navigation/searching 22 * "Searching":/doc/navigation/searching
23 * "Finding more recent communities":/doc/navigation/finding-more-active-communities 23 * "Finding more recent communities":/doc/navigation/finding-more-active-communities
doc/noosfero/navigation/finding-more-recent-people.textile
@@ -2,22 +2,22 @@ h1(order-612). Finding more recent people @@ -2,22 +2,22 @@ h1(order-612). Finding more recent people
2 2
3 p. _To find the people who joined the system in recent times._ 3 p. _To find the people who joined the system in recent times._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 p. Find on top of page the term "People" and click on the arrow below it: 11 p. Find on top of page the term "People" and click on the arrow below it:
12 !=/images/doc/menu-more-recent-people.en.png(More recent people on top menu)! 12 !=/images/doc/menu-more-recent-people.en.png(More recent people on top menu)!
13 13
14 -h2(#Description). Description 14 +h2(#description). Description
15 # The people will be listed ordered by creation date with most recent first. Below the profile's picture, you will see the date that the person joined the network !=/images/doc/more-recent-people-detail.en.png(Profile with creation date)! 15 # The people will be listed ordered by creation date with most recent first. Below the profile's picture, you will see the date that the person joined the network !=/images/doc/more-recent-people-detail.en.png(Profile with creation date)!
16 # Fill in the search field with what you want to look for and click on "Search" !=/images/doc/more-recent-people.en.png(More recent people search field)! 16 # Fill in the search field with what you want to look for and click on "Search" !=/images/doc/more-recent-people.en.png(More recent people search field)!
17 # Then you will see the search results ordered by creation date !=/images/doc/more-recent-people-with-example.en.png(More recent people search results with example)! 17 # Then you will see the search results ordered by creation date !=/images/doc/more-recent-people-with-example.en.png(More recent people search results with example)!
18 # Clicking on one of the search results, you will be redirected to the homepage of choosen person. 18 # Clicking on one of the search results, you will be redirected to the homepage of choosen person.
19 19
20 -h2(#RelatedTopics). Related topics 20 +h2(#relatedtopics). Related topics
21 21
22 * "Searching":/doc/navigation/searching 22 * "Searching":/doc/navigation/searching
23 * "Finding more recent people":/doc/navigation/finding-more-active-people 23 * "Finding more recent people":/doc/navigation/finding-more-active-people
doc/noosfero/navigation/person-balloon.textile
@@ -2,15 +2,15 @@ h1(order-618). Person balloon @@ -2,15 +2,15 @@ h1(order-618). Person balloon
2 2
3 p. _When an user is navigating on the system, he can see details of a person and become a friend quickly._ 3 p. _When an user is navigating on the system, he can see details of a person and become a friend quickly._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 p. If enabled on environment, wherever a person appears you can click on the top-left corner to see the person balloon !=/images/doc/person-balloon-closed-en.png(Person balloon link)! 11 p. If enabled on environment, wherever a person appears you can click on the top-left corner to see the person balloon !=/images/doc/person-balloon-closed-en.png(Person balloon link)!
12 12
13 -h2(#Description). Description 13 +h2(#description). Description
14 14
15 p. The person balloon has links to allow direct access to some person's pages !=/images/doc/person-balloon-en.png(person balloon links)! 15 p. The person balloon has links to allow direct access to some person's pages !=/images/doc/person-balloon-en.png(person balloon links)!
16 # Wall: lists scraps sent to this person 16 # Wall: lists scraps sent to this person
@@ -19,7 +19,7 @@ p. The person balloon has links to allow direct access to some person&#39;s pages != @@ -19,7 +19,7 @@ p. The person balloon has links to allow direct access to some person&#39;s pages !=
19 # Add: if you are not friend of the person, you can quickly ask to add her clicking on this link 19 # Add: if you are not friend of the person, you can quickly ask to add her clicking on this link
20 # Send an e-mail: if you are a friend of the person, you can send an e-mail to the her clicking on this link 20 # Send an e-mail: if you are a friend of the person, you can send an e-mail to the her clicking on this link
21 21
22 -h2(#RelatedTopics). Related topics 22 +h2(#relatedtopics). Related topics
23 23
24 * "Finding people":/doc/navigation/searching-people 24 * "Finding people":/doc/navigation/searching-people
25 25
doc/noosfero/navigation/searching-communities.textile
@@ -2,16 +2,16 @@ h1(order-600). Finding communities @@ -2,16 +2,16 @@ h1(order-600). Finding communities
2 2
3 p. _To find a community in the system, you can use the search specific for communities._ 3 p. _To find a community in the system, you can use the search specific for communities._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 p. Find on top of page the term "Communities" and click on it: 11 p. Find on top of page the term "Communities" and click on it:
12 !=/images/doc/menu-communities.en.png(Communities on top menu)! 12 !=/images/doc/menu-communities.en.png(Communities on top menu)!
13 13
14 -h2(#Description). Description 14 +h2(#description). Description
15 15
16 # Fill in the search field with what you want to look for and click on "Search" !=/images/doc/communities-search-field.en.png(Communities search field)! 16 # Fill in the search field with what you want to look for and click on "Search" !=/images/doc/communities-search-field.en.png(Communities search field)!
17 # Then you will see the search results. To see more results, click on the pages below the search results. !=/images/doc/communities-search-results-with-example.en.png(Communities search results with example)! 17 # Then you will see the search results. To see more results, click on the pages below the search results. !=/images/doc/communities-search-results-with-example.en.png(Communities search results with example)!
@@ -21,7 +21,7 @@ h3. More options @@ -21,7 +21,7 @@ h3. More options
21 21
22 p. In all kind of search you can specify the search clicking on "More options" link. The options displayed are explained in "Advanced search":/doc/navigation/advanced-search 22 p. In all kind of search you can specify the search clicking on "More options" link. The options displayed are explained in "Advanced search":/doc/navigation/advanced-search
23 23
24 -h2(#RelatedTopics). Related topics 24 +h2(#relatedtopics). Related topics
25 25
26 * "Searching":/doc/navigation/searching 26 * "Searching":/doc/navigation/searching
27 * "Finding people":/doc/navigation/searching-people 27 * "Finding people":/doc/navigation/searching-people
doc/noosfero/navigation/searching-enterprises.textile
@@ -2,16 +2,16 @@ h1(order-650). Finding enterprises @@ -2,16 +2,16 @@ h1(order-650). Finding enterprises
2 2
3 p. _To find an enterprise in the system, you can use the search specific for enterprises._ 3 p. _To find an enterprise in the system, you can use the search specific for enterprises._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 p. Find on top of page the term "Enterprises" and click on it: 11 p. Find on top of page the term "Enterprises" and click on it:
12 !=/images/doc/menu-enterprises.en.png(Enterprises on top menu)! 12 !=/images/doc/menu-enterprises.en.png(Enterprises on top menu)!
13 13
14 -h2(#Description). Description 14 +h2(#description). Description
15 15
16 # Fill in the search field with what you want to look for and click on "Search" !=/images/doc/enterprises-search-field.en.png(Enterprises search field)! 16 # Fill in the search field with what you want to look for and click on "Search" !=/images/doc/enterprises-search-field.en.png(Enterprises search field)!
17 # Then you will see the search results. To see more results, click on the pages below the search results. !=/images/doc/enterprises-search-results-with-example.en.png(Enteprises search results with example)! 17 # Then you will see the search results. To see more results, click on the pages below the search results. !=/images/doc/enterprises-search-results-with-example.en.png(Enteprises search results with example)!
@@ -25,7 +25,7 @@ h3. Display on map @@ -25,7 +25,7 @@ h3. Display on map
25 25
26 p. If available on the system, when you are searching for products, services or enterprises and the system allows, you will see the "Display on map" button. Clicking on this button, the search results will be displayed on a map, with house icons indicating the location of enterprises. 26 p. If available on the system, when you are searching for products, services or enterprises and the system allows, you will see the "Display on map" button. Clicking on this button, the search results will be displayed on a map, with house icons indicating the location of enterprises.
27 27
28 -h2(#RelatedTopics). Related topics 28 +h2(#relatedtopics). Related topics
29 29
30 * "Searching":/doc/navigation/searching 30 * "Searching":/doc/navigation/searching
31 * "Finding people":/doc/navigation/searching-people 31 * "Finding people":/doc/navigation/searching-people
doc/noosfero/navigation/searching-people.textile
@@ -2,16 +2,16 @@ h1(order-610). Finding people @@ -2,16 +2,16 @@ h1(order-610). Finding people
2 2
3 p. _To find an user in the system, you can use the search specific for people._ 3 p. _To find an user in the system, you can use the search specific for people._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 p. Find on top of page the term "People" and click on it: 11 p. Find on top of page the term "People" and click on it:
12 !=/images/doc/menu-people.en.png(People on top menu)! 12 !=/images/doc/menu-people.en.png(People on top menu)!
13 13
14 -h2(#Description). Description 14 +h2(#description). Description
15 15
16 # Fill in the search field with what you want to look for and click on "Search" !=/images/doc/people-search-field.en.png(People search field)! 16 # Fill in the search field with what you want to look for and click on "Search" !=/images/doc/people-search-field.en.png(People search field)!
17 # Then you will see the search results. To see more results, click on the pages below the search results. !=/images/doc/people-search-results-with-example.en.png(Communities search results with example)! 17 # Then you will see the search results. To see more results, click on the pages below the search results. !=/images/doc/people-search-results-with-example.en.png(Communities search results with example)!
@@ -22,7 +22,7 @@ h3. More options @@ -22,7 +22,7 @@ h3. More options
22 22
23 p. In all kind of search you can specify the search clicking on "More options" link. The options displayed are explained in "Advanced search":/doc/navigation/advanced-search 23 p. In all kind of search you can specify the search clicking on "More options" link. The options displayed are explained in "Advanced search":/doc/navigation/advanced-search
24 24
25 -h2(#RelatedTopics). Related topics 25 +h2(#relatedtopics). Related topics
26 26
27 * "Searching":/doc/navigation/searching 27 * "Searching":/doc/navigation/searching
28 * "Finding communities":/doc/navigation/searching-communities 28 * "Finding communities":/doc/navigation/searching-communities
doc/noosfero/navigation/searching-products-services.textile
@@ -2,16 +2,16 @@ h1(order-640). Finding products and services @@ -2,16 +2,16 @@ h1(order-640). Finding products and services
2 2
3 p. _To find a product or service in the system, you can use the search specific for products and services._ 3 p. _To find a product or service in the system, you can use the search specific for products and services._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 p. Find on top of page the term "Products" and click on it 11 p. Find on top of page the term "Products" and click on it
12 !=/images/doc/menu-products.en.png(Products on top menu)! 12 !=/images/doc/menu-products.en.png(Products on top menu)!
13 13
14 -h2(#Description). Description 14 +h2(#description). Description
15 15
16 # Fill in the search field with what you want to look for and click on "Search" !=/images/doc/products-search-field.en.png(Products search field)! 16 # Fill in the search field with what you want to look for and click on "Search" !=/images/doc/products-search-field.en.png(Products search field)!
17 # Then you will see the search results. To see more results, click on the pages below the search results. !=/images/doc/products-search-results-with-example.en.png(Products search results with example)! 17 # Then you will see the search results. To see more results, click on the pages below the search results. !=/images/doc/products-search-results-with-example.en.png(Products search results with example)!
@@ -25,7 +25,7 @@ h3. Display on map @@ -25,7 +25,7 @@ h3. Display on map
25 25
26 p. If available on the system, when you are searching for products, services or enterprises and the system allows, you will see the "Display on map" button. Clicking on this button, the search results will be displayed on a map, with house icons indicating the location of enterprises. 26 p. If available on the system, when you are searching for products, services or enterprises and the system allows, you will see the "Display on map" button. Clicking on this button, the search results will be displayed on a map, with house icons indicating the location of enterprises.
27 27
28 -h2(#RelatedTopics). Related topics 28 +h2(#relatedtopics). Related topics
29 29
30 * "Searching":/doc/navigation/searching 30 * "Searching":/doc/navigation/searching
31 * "Finding people":/doc/navigation/searching-people 31 * "Finding people":/doc/navigation/searching-people
doc/noosfero/navigation/searching.textile
@@ -2,22 +2,22 @@ h1(order-630). Searching on the system @@ -2,22 +2,22 @@ h1(order-630). Searching on the system
2 2
3 p. _To find articles, communities, people, enterprises or products and services, an user in the system, can do a search._ 3 p. _To find articles, communities, people, enterprises or products and services, an user in the system, can do a search._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 p. Find on top bar the term "Search" and click on it: 11 p. Find on top bar the term "Search" and click on it:
12 !=/images/doc/menu-search.en.png(Search on top menu)! 12 !=/images/doc/menu-search.en.png(Search on top menu)!
13 13
14 -h2(#Description). Description 14 +h2(#description). Description
15 15
16 # Fill in the search field with what you want to look for and press "Enter" on keyboard 16 # Fill in the search field with what you want to look for and press "Enter" on keyboard
17 # Then you will see a screen with the search result. Each box brings one kind of information with a limited number of results. To see more results of a box, click on "See all" link below the box. !=/images/doc/search-results-with-example.en.png(Search results with example)! 17 # Then you will see a screen with the search result. Each box brings one kind of information with a limited number of results. To see more results of a box, click on "See all" link below the box. !=/images/doc/search-results-with-example.en.png(Search results with example)!
18 # Clicking on "See all" link of community's box, then you will see all the articles found on search. !=/images/doc/search-view-all-results-with-example.en.png(View all results on search with example)! 18 # Clicking on "See all" link of community's box, then you will see all the articles found on search. !=/images/doc/search-view-all-results-with-example.en.png(View all results on search with example)!
19 19
20 -h2(#RelatedTopics). Related topics 20 +h2(#relatedtopics). Related topics
21 21
22 * "Finding people":/doc/navigation/searching-people 22 * "Finding people":/doc/navigation/searching-people
23 * "Finding communities":/doc/navigation/searching-communities 23 * "Finding communities":/doc/navigation/searching-communities
doc/noosfero/user/accepting-friends.textile
@@ -2,25 +2,25 @@ h1(order-460). Accepting friends @@ -2,25 +2,25 @@ h1(order-460). Accepting friends
2 2
3 p. _When one person asks to be your friend, you should accept or reject the request. This is what will be explained._ 3 p. _When one person asks to be your friend, you should accept or reject the request. This is what will be explained._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related Topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related Topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
13 13
14 14
15 15
16 -h2(#Description). Description 16 +h2(#description). Description
17 17
18 # If you have pending requests, you will see a box with the list of pending tasks on your control panel. In order to accept or deny, you should click on "Process requests" button 18 # If you have pending requests, you will see a box with the list of pending tasks on your control panel. In order to accept or deny, you should click on "Process requests" button
19 !=/images/doc/control-panel-with-tasks.en.png(Control panel with pending tasks)! 19 !=/images/doc/control-panel-with-tasks.en.png(Control panel with pending tasks)!
20 # If you want to accept, choose the option "Accept" and you also can classify your new friend according to your relationship type you two have. to confirm, click in "OK". After that, your new friend will be listed in your contact list. 20 # If you want to accept, choose the option "Accept" and you also can classify your new friend according to your relationship type you two have. to confirm, click in "OK". After that, your new friend will be listed in your contact list.
21 !=/images/doc/tasks-list-friendship-request.en.png(Tasks list)! 21 !=/images/doc/tasks-list-friendship-request.en.png(Tasks list)!
22 22
23 -h2(#RelatedTopics). Related Topics 23 +h2(#relatedtopics). Related Topics
24 24
25 * "Adding friends":/doc/user/adding-friends 25 * "Adding friends":/doc/user/adding-friends
26 * "Removing friends":/doc/user/removing-friends 26 * "Removing friends":/doc/user/removing-friends
doc/noosfero/user/adding-friends.textile
@@ -2,20 +2,20 @@ h1(order-450). Adding friends @@ -2,20 +2,20 @@ h1(order-450). Adding friends
2 2
3 p. _To interact with others system users, you can include them in your contact list, adding them as friends._ 3 p. _To interact with others system users, you can include them in your contact list, adding them as friends._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related Topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related Topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 p. If you have a friend in this system, you can find her/him with the system search. Use the "search":/doc/navigation/searching-people and click on your friend picture to visite her/his page. 11 p. If you have a friend in this system, you can find her/him with the system search. Use the "search":/doc/navigation/searching-people and click on your friend picture to visite her/his page.
12 12
13 -h2(#Description). Description 13 +h2(#description). Description
14 14
15 # In the users page, click on "Add friend" button that you will see below the user picture !=/images/doc/profile-with-button-to-add-friends.en.png(Button to add a profile as friend)! 15 # In the users page, click on "Add friend" button that you will see below the user picture !=/images/doc/profile-with-button-to-add-friends.en.png(Button to add a profile as friend)!
16 # After clicking the button, confirm that you want to add this user as a friend. On this screen you can also classify your friend with your relationship type. !=/images/doc/confirmation-adding-friend.en.png(Confirmation when adding a friend)! 16 # After clicking the button, confirm that you want to add this user as a friend. On this screen you can also classify your friend with your relationship type. !=/images/doc/confirmation-adding-friend.en.png(Confirmation when adding a friend)!
17 17
18 -h2(#RelatedTopics). Related topics 18 +h2(#relatedtopics). Related topics
19 19
20 * "Removing friends":/doc/user/removing-friends 20 * "Removing friends":/doc/user/removing-friends
21 * "Accepting friends":/doc/user/accepting-friends 21 * "Accepting friends":/doc/user/accepting-friends
doc/noosfero/user/answering-scraps.textile
@@ -2,22 +2,22 @@ h1(order-456). Answering scraps sent by friends @@ -2,22 +2,22 @@ h1(order-456). Answering scraps sent by friends
2 2
3 p. _When a friend sends a scrap to you, you can answer it._ 3 p. _When a friend sends a scrap to you, you can answer it._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related Topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related Topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Visit your profile to see the scraps that your friends sent to you. !=/images/doc/other-person-view-profile-link.en.png(Link to view profile)! 11 # Visit your profile to see the scraps that your friends sent to you. !=/images/doc/other-person-view-profile-link.en.png(Link to view profile)!
12 12
13 -h2(#Description). Description 13 +h2(#description). Description
14 14
15 # On you profile, when you click on "Wall" tab, the scraps sent to you will be listed. !=/images/doc/person-wall-scrap-sent.en.png(Wall tab)! 15 # On you profile, when you click on "Wall" tab, the scraps sent to you will be listed. !=/images/doc/person-wall-scrap-sent.en.png(Wall tab)!
16 # When you hover the mouse on the scrap, click on the "Reply" button that will be displayed !=/images/doc/person-wall-scrap-reply-button.en.png(Wall tab)! 16 # When you hover the mouse on the scrap, click on the "Reply" button that will be displayed !=/images/doc/person-wall-scrap-reply-button.en.png(Wall tab)!
17 # To answer the scrap, fill in the field and press the "Leave a scrap" button !=/images/doc/person-wall-scrap-reply-form.en.png(Wall tab)! 17 # To answer the scrap, fill in the field and press the "Leave a scrap" button !=/images/doc/person-wall-scrap-reply-form.en.png(Wall tab)!
18 # Then, your reply will be listed on your profile's wall !=/images/doc/person-wall-scrap-reply-sent.en.png(Wall tab)! 18 # Then, your reply will be listed on your profile's wall !=/images/doc/person-wall-scrap-reply-sent.en.png(Wall tab)!
19 19
20 -h2(#RelatedTopics). Related topics 20 +h2(#relatedtopics). Related topics
21 21
22 * "Sending scraps to friends":/doc/user/sending-scraps 22 * "Sending scraps to friends":/doc/user/sending-scraps
23 * "Removing friends":/doc/user/removing-friends 23 * "Removing friends":/doc/user/removing-friends
doc/noosfero/user/changing-password.textile
@@ -2,17 +2,17 @@ h1(order-510). Changing password @@ -2,17 +2,17 @@ h1(order-510). Changing password
2 2
3 p. _Whenever you want, you can change your password._ 3 p. _Whenever you want, you can change your password._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
13 # Then, click on "Change Password": !=/images/doc/control-panel-change-password.en.png(Change password in control panel)! 13 # Then, click on "Change Password": !=/images/doc/control-panel-change-password.en.png(Change password in control panel)!
14 14
15 -h2(#Description). Description 15 +h2(#description). Description
16 16
17 !=/images/doc/change-password.en.png(Changing password)! 17 !=/images/doc/change-password.en.png(Changing password)!
18 # Fill in with your password. 18 # Fill in with your password.
@@ -20,7 +20,7 @@ h2(#Description). Description @@ -20,7 +20,7 @@ h2(#Description). Description
20 # Retype your new password, to confirm it. 20 # Retype your new password, to confirm it.
21 Then, click on "Change password". 21 Then, click on "Change password".
22 22
23 -h2(#RelatedTopics). Related topics 23 +h2(#relatedtopics). Related topics
24 24
25 * "Login into the system":/doc/user/login 25 * "Login into the system":/doc/user/login
26 * "Logout of the system":/doc/user/logout 26 * "Logout of the system":/doc/user/logout
doc/noosfero/user/commenting.textile
@@ -4,11 +4,11 @@ p. _Articles, pictures and events of the system can be commented. When a person @@ -4,11 +4,11 @@ p. _Articles, pictures and events of the system can be commented. When a person
4 4
5 p. _If comments are available, the option to comment will be displayed to everyone who access the article or picture, authenticated or not. Now you will learn how to comment pictures and articles._ 5 p. _If comments are available, the option to comment will be displayed to everyone who access the article or picture, authenticated or not. Now you will learn how to comment pictures and articles._
6 6
7 -* "How to access":#HowAccess  
8 -* "Description":#Description  
9 -* "Related Topics":#RelatedTopics 7 +* "How to access":#howaccess
  8 +* "Description":#description
  9 +* "Related Topics":#relatedtopics
10 10
11 -h2(#HowAccess). How to access 11 +h2(#howaccess). How to access
12 12
13 # When a person is viewing an article, picture or event, you will see a button to send comments after the content: !=/images/doc/closed-comment-box.en.png(Box for comments closed)! 13 # When a person is viewing an article, picture or event, you will see a button to send comments after the content: !=/images/doc/closed-comment-box.en.png(Box for comments closed)!
14 14
@@ -19,7 +19,7 @@ h2(Description). Description @@ -19,7 +19,7 @@ h2(Description). Description
19 * After filling the fields and clicking the "Send comment" button, the comment will be displayed below the article. 19 * After filling the fields and clicking the "Send comment" button, the comment will be displayed below the article.
20 !=/images/doc/comments-of-logged-in-out-person.en.png(Comment of a logged in person)! 20 !=/images/doc/comments-of-logged-in-out-person.en.png(Comment of a logged in person)!
21 21
22 -h2(#RelatedTopics). Related topics 22 +h2(#relatedtopics). Related topics
23 23
24 * "Login into the system":/doc/user/login 24 * "Login into the system":/doc/user/login
25 25
doc/noosfero/user/deleting-profile.textile
@@ -2,22 +2,22 @@ h1(order-405). Deleting a profile @@ -2,22 +2,22 @@ h1(order-405). Deleting a profile
2 2
3 p. _You can delete your profile if you don't want to be a member of the environment anymore._ 3 p. _You can delete your profile if you don't want to be a member of the environment anymore._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
13 13
14 -h2(#Description). Description 14 +h2(#description). Description
15 15
16 # In your control panel, click on "Profile Info and settings" !=/images/doc/control-panel-person-edit-profile-info.en.png(Control panel with edit profile info of person)! 16 # In your control panel, click on "Profile Info and settings" !=/images/doc/control-panel-person-edit-profile-info.en.png(Control panel with edit profile info of person)!
17 # You will see a form with your information and settings. Click on the "Delete profile" button below the privacy options !=/images/doc/control-panel-person-delete-profile.en.png(Delete profile link)! 17 # You will see a form with your information and settings. Click on the "Delete profile" button below the privacy options !=/images/doc/control-panel-person-delete-profile.en.png(Delete profile link)!
18 # You will see a confirmation page. If you are sure that you want to delete the profile, click on "Yes, I am sure" !=/images/doc/person-delete-profile-confirmation.en.png(Delete profile confirmation)! 18 # You will see a confirmation page. If you are sure that you want to delete the profile, click on "Yes, I am sure" !=/images/doc/person-delete-profile-confirmation.en.png(Delete profile confirmation)!
19 19
20 -h2(#RelatedTopics). Related topics 20 +h2(#relatedtopics). Related topics
21 21
22 * "Registering a new user":/doc/user/registering-new-user 22 * "Registering a new user":/doc/user/registering-new-user
23 * "Login into the system":/doc/user/login 23 * "Login into the system":/doc/user/login
doc/noosfero/user/editing-appearance.textile
@@ -2,17 +2,17 @@ h1(order-530). Editing appearance @@ -2,17 +2,17 @@ h1(order-530). Editing appearance
2 2
3 p. _You can customize your page, changing the template of it._ 3 p. _You can customize your page, changing the template of it._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
13 # Then, click on "Edit Appearance: !=/images/doc/control-panel-user-edit-appearance.en.png(Edit appearance on user control panel)! 13 # Then, click on "Edit Appearance: !=/images/doc/control-panel-user-edit-appearance.en.png(Edit appearance on user control panel)!
14 14
15 -h2(#Description). Description 15 +h2(#description). Description
16 16
17 # You will see the available templates: 17 # You will see the available templates:
18 ## *default:* This template uses 3 columns. 18 ## *default:* This template uses 3 columns.
@@ -21,7 +21,7 @@ h2(#Description). Description @@ -21,7 +21,7 @@ h2(#Description). Description
21 # You can change your template clicking on the link "Use this template" 21 # You can change your template clicking on the link "Use this template"
22 !=/images/doc/edit-appearance.en.png(Edit appearance)! 22 !=/images/doc/edit-appearance.en.png(Edit appearance)!
23 23
24 -h2(#RelatedTopics). Related topics 24 +h2(#relatedtopics). Related topics
25 25
26 * "Login into the system":/doc/user/login 26 * "Login into the system":/doc/user/login
27 * "Logout of the system":/doc/user/logout 27 * "Logout of the system":/doc/user/logout
doc/noosfero/user/editing-header-footer.textile
@@ -2,17 +2,17 @@ h1(order-540). Editing header and footer @@ -2,17 +2,17 @@ h1(order-540). Editing header and footer
2 2
3 p. _You can customize your page, adding some text or image on header or footer._ 3 p. _You can customize your page, adding some text or image on header or footer._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
13 # Then, click on "Edit Header and Footer": !=/images/doc/control-panel-user-edit-header-footer.en.png(Edit header and footer on user control panel)! 13 # Then, click on "Edit Header and Footer": !=/images/doc/control-panel-user-edit-header-footer.en.png(Edit header and footer on user control panel)!
14 14
15 -h2(#Description). Description 15 +h2(#description). Description
16 16
17 # You will see 2 boxes. In the first box, add the content of your header, that will be displayed on the top of your page. In the second box, add the content of your footer, that will be displayed on the bottom of your page. 17 # You will see 2 boxes. In the first box, add the content of your header, that will be displayed on the top of your page. In the second box, add the content of your footer, that will be displayed on the bottom of your page.
18 # On the top of both boxes you will see some buttons, that will help you formatting your text. Passing mouse over the button, the name of the button function is displayed. !=/images/doc/wysiwyg-buttons.en.png(WYSIWYG buttons)! 18 # On the top of both boxes you will see some buttons, that will help you formatting your text. Passing mouse over the button, the name of the button function is displayed. !=/images/doc/wysiwyg-buttons.en.png(WYSIWYG buttons)!
@@ -45,7 +45,7 @@ h2(#Description). Description @@ -45,7 +45,7 @@ h2(#Description). Description
45 ### *Edit HTML source:* the text written in this editor is transformed in HTML code, to be viewed on browsers. Use this button to view/edit the HTML code of your header/footer. 45 ### *Edit HTML source:* the text written in this editor is transformed in HTML code, to be viewed on browsers. Use this button to view/edit the HTML code of your header/footer.
46 # After editing your header and footer, click on "Save" button !=/images/doc/edit-header-footer.en.png(Editing header and footer)! 46 # After editing your header and footer, click on "Save" button !=/images/doc/edit-header-footer.en.png(Editing header and footer)!
47 47
48 -h2(#RelatedTopics). Related topics 48 +h2(#relatedtopics). Related topics
49 49
50 * "Login into the system":/doc/user/login 50 * "Login into the system":/doc/user/login
51 * "Logout of the system":/doc/user/logout 51 * "Logout of the system":/doc/user/logout
doc/noosfero/user/editing-person-info.textile
@@ -2,16 +2,16 @@ h1(order-420). Editing user settings @@ -2,16 +2,16 @@ h1(order-420). Editing user settings
2 2
3 p. _You can change your profile information and settings in the system._ 3 p. _You can change your profile information and settings in the system._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
13 13
14 -h2(#Description). Description 14 +h2(#description). Description
15 15
16 # In your control panel, click on "Profile Info and settings" !=/images/doc/control-panel-person-edit-profile-info.en.png(Control panel with edit profile info of person)! 16 # In your control panel, click on "Profile Info and settings" !=/images/doc/control-panel-person-edit-profile-info.en.png(Control panel with edit profile info of person)!
17 # You will see a form with your information and settings. This will be explained in parts 17 # You will see a form with your information and settings. This will be explained in parts
@@ -22,7 +22,7 @@ not friends and that tries to view the profile or some of its contents will be r @@ -22,7 +22,7 @@ not friends and that tries to view the profile or some of its contents will be r
22 ## *Categories:* If enabled in the system, you can choose the categories that the person will have. !=/images/doc/person-edit-profile-categories.en.png(Categories when editing person profile info)! 22 ## *Categories:* If enabled in the system, you can choose the categories that the person will have. !=/images/doc/person-edit-profile-categories.en.png(Categories when editing person profile info)!
23 # Then, click on "Save" button an the profile will be updated. 23 # Then, click on "Save" button an the profile will be updated.
24 24
25 -h2(#RelatedTopics). Related topics 25 +h2(#relatedtopics). Related topics
26 26
27 * "Login into the system":/doc/user/login 27 * "Login into the system":/doc/user/login
28 28
doc/noosfero/user/editing-sideboxes.textile
@@ -2,17 +2,17 @@ h1(order-500). Editing sideboxes @@ -2,17 +2,17 @@ h1(order-500). Editing sideboxes
2 2
3 p. _You can customize your page, changing the blocks that will be displayed on it._ 3 p. _You can customize your page, changing the blocks that will be displayed on it._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find you user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)! 12 # In user menu, click on Control Panel: !=/images/doc/menu-control-panel.en.png(Control panel on menu)!
13 # Then, click on "Edit Sideboxes": !=/images/doc/control-panel-user-edit-sideboxes.en.png(Edit sideboxes on user control panel)! 13 # Then, click on "Edit Sideboxes": !=/images/doc/control-panel-user-edit-sideboxes.en.png(Edit sideboxes on user control panel)!
14 14
15 -h2(#Description). Description 15 +h2(#description). Description
16 16
17 # The model of the page will be displayed, always with 3 columns. If you want to add a new block, click on "Add a block": !=/images/doc/user-edit-sideboxes.en.png(Edit sideboxes)! 17 # The model of the page will be displayed, always with 3 columns. If you want to add a new block, click on "Add a block": !=/images/doc/user-edit-sideboxes.en.png(Edit sideboxes)!
18 # You will see the blocks that you can add to your page: !=/images/doc/user-sideboxes-add-block.en.png(Add a block)! 18 # You will see the blocks that you can add to your page: !=/images/doc/user-sideboxes-add-block.en.png(Add a block)!
@@ -48,7 +48,7 @@ h2(#Description). Description @@ -48,7 +48,7 @@ h2(#Description). Description
48 *** *Remove block:* Remove the block from your page. 48 *** *Remove block:* Remove the block from your page.
49 *** *Help on this block:* Display a message with a small description of the block. 49 *** *Help on this block:* Display a message with a small description of the block.
50 50
51 -h2(#RelatedTopics). Related topics 51 +h2(#relatedtopics). Related topics
52 52
53 * "Editing header and footer":/doc/user/editing-header-footer 53 * "Editing header and footer":/doc/user/editing-header-footer
54 * "Editing appearance":/doc/user/editing-appearance 54 * "Editing appearance":/doc/user/editing-appearance
doc/noosfero/user/invite-contacts.textile
@@ -2,17 +2,17 @@ h1(order-440). Inviting contacts from e-mail @@ -2,17 +2,17 @@ h1(order-440). Inviting contacts from e-mail
2 2
3 p. _You can invite e-mail contacts to be your friend on the system. If the e-mail is registered on the system, the user will receive an invitation through the system. If it is not registered, the user will receive an invitation on his e-mail._ 3 p. _You can invite e-mail contacts to be your friend on the system. If the e-mail is registered on the system, the user will receive an invitation through the system. If it is not registered, the user will receive an invitation on his e-mail._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/control-panel-menu.en.png(Control panel menu)! 12 # In user menu, click on Control Panel: !=/images/doc/control-panel-menu.en.png(Control panel menu)!
13 # Then, click on "Manage friends" !=/images/doc/manage-friends.en.png(Manage Friends)! 13 # Then, click on "Manage friends" !=/images/doc/manage-friends.en.png(Manage Friends)!
14 14
15 -h2(#Description). Description 15 +h2(#description). Description
16 16
17 # You will your list of friends and the invitation button. Click on the button. 17 # You will your list of friends and the invitation button. Click on the button.
18 !=/images/doc/user-friends-with-invitation-button.en.png(User's friends list)! 18 !=/images/doc/user-friends-with-invitation-button.en.png(User's friends list)!
@@ -25,7 +25,7 @@ h2(#Description). Description @@ -25,7 +25,7 @@ h2(#Description). Description
25 *** You will also see your list of e-mails. Check the e-mails that you want to send an invitation. 25 *** You will also see your list of e-mails. Check the e-mails that you want to send an invitation.
26 *** Clicking on "Personalize invitation mail", you can edit the text that will be sent. Then, click on "Invite my friends" !=/images/doc/user-import-invitation-step-2.en.png(Import invitation for user. Step 2)! 26 *** Clicking on "Personalize invitation mail", you can edit the text that will be sent. Then, click on "Invite my friends" !=/images/doc/user-import-invitation-step-2.en.png(Import invitation for user. Step 2)!
27 27
28 -h2(#RelatedTopics). Related topics 28 +h2(#relatedtopics). Related topics
29 29
30 * "Accepting friends":/doc/user/accepting-friends 30 * "Accepting friends":/doc/user/accepting-friends
31 * "Removing friends":/doc/user/removing-friends 31 * "Removing friends":/doc/user/removing-friends
doc/noosfero/user/login.textile
@@ -2,20 +2,20 @@ h1(order-410). Login into the system @@ -2,20 +2,20 @@ h1(order-410). Login into the system
2 2
3 p. _Some system features only can be used when the user is logged in._ 3 p. _Some system features only can be used when the user is logged in._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related Topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related Topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 p. In the system homepage you will see a box to get into the system. 11 p. In the system homepage you will see a box to get into the system.
12 12
13 -h2(#Description). Description 13 +h2(#description). Description
14 14
15 # Fill in the fields with the 'login' and 'password' you choosed in your registration and click on "Log in" button. !=/images/doc/environment-homepage-with-login-button.en.png(Environment homepage with login button)! 15 # Fill in the fields with the 'login' and 'password' you choosed in your registration and click on "Log in" button. !=/images/doc/environment-homepage-with-login-button.en.png(Environment homepage with login button)!
16 # After clicking on "Log in" button you will be authenticated in the system. You can verify that you are logged in because your menu will be displayed in the top of page. !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 16 # After clicking on "Log in" button you will be authenticated in the system. You can verify that you are logged in because your menu will be displayed in the top of page. !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
17 17
18 -h2(#RelatedTopics). Related topics 18 +h2(#relatedtopics). Related topics
19 19
20 * "Registering new user":/doc/user/registering-new-user 20 * "Registering new user":/doc/user/registering-new-user
21 * "Logout of the system":/doc/user/logout 21 * "Logout of the system":/doc/user/logout
doc/noosfero/user/logout.textile
@@ -2,20 +2,20 @@ h1(order-430). Leaving the system @@ -2,20 +2,20 @@ h1(order-430). Leaving the system
2 2
3 p. _After finishing your navigation, we recommend leaving the system._ 3 p. _After finishing your navigation, we recommend leaving the system._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related Topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related Topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on "Logout" !=/images/doc/menu-logout.en.png(Menu with logout)! 12 # In user menu, click on "Logout" !=/images/doc/menu-logout.en.png(Menu with logout)!
13 13
14 -h2(#Description). Description 14 +h2(#description). Description
15 15
16 p. After clicking the button, you will be logged out of the system 16 p. After clicking the button, you will be logged out of the system
17 17
18 -h2(#RelatedTopics). Related topics 18 +h2(#relatedtopics). Related topics
19 19
20 * "Login into the system":/doc/user/login 20 * "Login into the system":/doc/user/login
21 21
doc/noosfero/user/registering-new-user.textile
@@ -2,16 +2,16 @@ h1(order-400). Registering a new user @@ -2,16 +2,16 @@ h1(order-400). Registering a new user
2 2
3 p. _To be part of the system, you need to register yourself. After registering, you will be able to join communities, enterprises, add friends and much more._ 3 p. _To be part of the system, you need to register yourself. After registering, you will be able to join communities, enterprises, add friends and much more._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related Topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related Topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # In the system homepage you will see a box to get into the system. 11 # In the system homepage you will see a box to get into the system.
12 # Click on "New user": !=/images/doc/box-register.en.png(Register on box)! 12 # Click on "New user": !=/images/doc/box-register.en.png(Register on box)!
13 13
14 -h2(#Description). Description 14 +h2(#description). Description
15 15
16 # You will see registration form. Fill it with you information and read and accept the system terms of use. 16 # You will see registration form. Fill it with you information and read and accept the system terms of use.
17 ** The fields with red names are mandatory, so your registration won't be done if they are not filled in. 17 ** The fields with red names are mandatory, so your registration won't be done if they are not filled in.
@@ -20,7 +20,7 @@ h2(#Description). Description @@ -20,7 +20,7 @@ h2(#Description). Description
20 !/images/doc/signup-form.en.png(Signup form)! 20 !/images/doc/signup-form.en.png(Signup form)!
21 21
22 22
23 -h2(#RelatedTopics). Related topics 23 +h2(#relatedtopics). Related topics
24 24
25 * "Adding friends":/doc/user/adding-friends 25 * "Adding friends":/doc/user/adding-friends
26 * "Removing friends":/doc/user/removing-friends 26 * "Removing friends":/doc/user/removing-friends
doc/noosfero/user/removing-comments.textile
@@ -2,20 +2,20 @@ h1(order-480). Removing comments @@ -2,20 +2,20 @@ h1(order-480). Removing comments
2 2
3 p. _If you are the author of an article or if you have permission to moderate the comments of a profile (community/enterprise), you can remove the unwanted comments posted on it._ 3 p. _If you are the author of an article or if you have permission to moderate the comments of a profile (community/enterprise), you can remove the unwanted comments posted on it._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related Topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related Topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 p. Visit an article that you created or that you have permission to moderate the comments. The comments are listed below the article/picture/event 11 p. Visit an article that you created or that you have permission to moderate the comments. The comments are listed below the article/picture/event
12 12
13 -h2(#Description). Description 13 +h2(#description). Description
14 14
15 # Next to each comment of the article, photo or event you will see a trash icon. To delete one, click on the trash icon. !=/images/doc/comments.en.png(Comments)! 15 # Next to each comment of the article, photo or event you will see a trash icon. To delete one, click on the trash icon. !=/images/doc/comments.en.png(Comments)!
16 # You will be asked to confirm exclusion. Clickiing on "Ok" button, the comment will be removed !=/images/doc/remove-comment-confirmation.en.png(Remove comment confirmation)! 16 # You will be asked to confirm exclusion. Clickiing on "Ok" button, the comment will be removed !=/images/doc/remove-comment-confirmation.en.png(Remove comment confirmation)!
17 17
18 -h2(#RelatedTopics). Related topics 18 +h2(#relatedtopics). Related topics
19 19
20 * "Login into the system":/doc/user/login 20 * "Login into the system":/doc/user/login
21 * "Commenting articles, pictures and events":/doc/user/commenting 21 * "Commenting articles, pictures and events":/doc/user/commenting
doc/noosfero/user/removing-friends.textile
@@ -2,17 +2,17 @@ h1(order-520). Removing friends @@ -2,17 +2,17 @@ h1(order-520). Removing friends
2 2
3 p. _How you can remove one friend from your contact list._ 3 p. _How you can remove one friend from your contact list._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related Topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related Topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)! 11 # Find your user menu on top bar: !=/images/doc/system-homepage-top-menu.en.png(Top menu)!
12 # In user menu, click on Control Panel: !=/images/doc/control-panel-menu.en.png(Control panel menu)! 12 # In user menu, click on Control Panel: !=/images/doc/control-panel-menu.en.png(Control panel menu)!
13 # Then, click on "Manage friends" !=/images/doc/manage-friends.en.png(Manage Friends)! 13 # Then, click on "Manage friends" !=/images/doc/manage-friends.en.png(Manage Friends)!
14 14
15 -h2(#Description). Description 15 +h2(#description). Description
16 16
17 # In manage friends screen, you will see your friends list. Find the friend you want to remove from your contact list and click on trash icon next to the picture of the person you want to remove. 17 # In manage friends screen, you will see your friends list. Find the friend you want to remove from your contact list and click on trash icon next to the picture of the person you want to remove.
18 !=/images/doc/remove-friend.en.png(Remove Friend)! 18 !=/images/doc/remove-friend.en.png(Remove Friend)!
@@ -20,7 +20,7 @@ h2(#Description). Description @@ -20,7 +20,7 @@ h2(#Description). Description
20 !=/images/doc/remove-friend-confirmation.en.png(Remove friend confirmation)! 20 !=/images/doc/remove-friend-confirmation.en.png(Remove friend confirmation)!
21 # After confirmation, the user will not be listed on your friends list anymore. 21 # After confirmation, the user will not be listed on your friends list anymore.
22 22
23 -h2(#RelatedTopics). Related topics 23 +h2(#relatedtopics). Related topics
24 24
25 * "Adding friends":/doc/user/adding-friends 25 * "Adding friends":/doc/user/adding-friends
26 * "Accepting friends":/doc/user/accepting-friends 26 * "Accepting friends":/doc/user/accepting-friends
doc/noosfero/user/sending-messages.textile
@@ -2,24 +2,24 @@ h1(order-490). Sending messages @@ -2,24 +2,24 @@ h1(order-490). Sending messages
2 2
3 p. _To interact with other system users, you can send messages through the system. The messages will be received by email._ 3 p. _To interact with other system users, you can send messages through the system. The messages will be received by email._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related Topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related Topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # Find the user you want to send a message using the "search":/doc/navigation/searching-people and click to view his/her profile. 11 # Find the user you want to send a message using the "search":/doc/navigation/searching-people and click to view his/her profile.
12 # In the person page you will see the "Contact" button below her picture if you are logged in and you are friend of the person in the system. 12 # In the person page you will see the "Contact" button below her picture if you are logged in and you are friend of the person in the system.
13 !=/images/doc/contact-button.en.png(Contact button)! 13 !=/images/doc/contact-button.en.png(Contact button)!
14 14
15 -h2(#Description). Description 15 +h2(#description). Description
16 16
17 p. Fill in the form. Note that the fields "Subject" and "Message" are mandatory, so the message will not be sent if you don't fill them. 17 p. Fill in the form. Note that the fields "Subject" and "Message" are mandatory, so the message will not be sent if you don't fill them.
18 18
19 p. After clicking on "Send" button, the message will be sent to the user e-mail and, if you want to receive a copy of the message, select the option "I want to receive a copy of the message in my e-mail.". 19 p. After clicking on "Send" button, the message will be sent to the user e-mail and, if you want to receive a copy of the message, select the option "I want to receive a copy of the message in my e-mail.".
20 !=/images/doc/send-message.en.png(Send message)! 20 !=/images/doc/send-message.en.png(Send message)!
21 21
22 -h2(#RelatedTopics). Related topics 22 +h2(#relatedtopics). Related topics
23 23
24 * "Finding people":/doc/navigation/searching-people 24 * "Finding people":/doc/navigation/searching-people
25 * "Adding friends":/doc/user/adding-friends 25 * "Adding friends":/doc/user/adding-friends
doc/noosfero/user/sending-scraps.textile
@@ -2,21 +2,21 @@ h1(order-454). Sending scraps to friends @@ -2,21 +2,21 @@ h1(order-454). Sending scraps to friends
2 2
3 p. _To keep in touch with your friends you can send scraps to them._ 3 p. _To keep in touch with your friends you can send scraps to them._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related Topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related Topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # If you have a friend in this system, you can find her/him with the system search. Use the "search":/doc/navigation/searching-people and click on your friend picture to visite her/his page. 11 # If you have a friend in this system, you can find her/him with the system search. Use the "search":/doc/navigation/searching-people and click on your friend picture to visite her/his page.
12 # In the person page you will see the "View profile" link near her picture. !=/images/doc/other-person-view-profile-link.en.png(Link to view profile)! 12 # In the person page you will see the "View profile" link near her picture. !=/images/doc/other-person-view-profile-link.en.png(Link to view profile)!
13 13
14 -h2(#Description). Description 14 +h2(#description). Description
15 15
16 # On profile's page, when you click on "Wall" tab, the scraps sent to the user will be listed. To leave your scrap, fill in the field and press the "Leave a scrap" button !=/images/doc/person-wall-writing-scrap.en.png(Wall tab)! 16 # On profile's page, when you click on "Wall" tab, the scraps sent to the user will be listed. To leave your scrap, fill in the field and press the "Leave a scrap" button !=/images/doc/person-wall-writing-scrap.en.png(Wall tab)!
17 # Then, your scrap will be listed on profile's wall !=/images/doc/person-wall-scrap-sent.en.png(Wall tab)! 17 # Then, your scrap will be listed on profile's wall !=/images/doc/person-wall-scrap-sent.en.png(Wall tab)!
18 18
19 -h2(#RelatedTopics). Related topics 19 +h2(#relatedtopics). Related topics
20 20
21 * "Answering scraps sent by friends":/doc/user/answering-scraps 21 * "Answering scraps sent by friends":/doc/user/answering-scraps
22 * "Removing friends":/doc/user/removing-friends 22 * "Removing friends":/doc/user/removing-friends
doc/noosfero/user/viewing-profiles-activity.textile
@@ -2,20 +2,20 @@ h1(order-462). Viewing profile&#39;s activities @@ -2,20 +2,20 @@ h1(order-462). Viewing profile&#39;s activities
2 2
3 p. _Whenever you want to see what a profile is doing you can visit the profile and view his activities._ 3 p. _Whenever you want to see what a profile is doing you can visit the profile and view his activities._
4 4
5 -* "How to access":#HowAccess  
6 -* "Description":#Description  
7 -* "Related Topics":#RelatedTopics 5 +* "How to access":#howaccess
  6 +* "Description":#description
  7 +* "Related Topics":#relatedtopics
8 8
9 -h2(#HowAccess). How to access 9 +h2(#howaccess). How to access
10 10
11 # If you have a friend in this system, you can find her/him with the system search. Use the "search":/doc/navigation/searching-people and click on your friend picture to visite her/his page. 11 # If you have a friend in this system, you can find her/him with the system search. Use the "search":/doc/navigation/searching-people and click on your friend picture to visite her/his page.
12 # In the person page you will see the "View profile" link near her picture. !=/images/doc/person-view-profile-link.en.png(Link to view profile)! 12 # In the person page you will see the "View profile" link near her picture. !=/images/doc/person-view-profile-link.en.png(Link to view profile)!
13 13
14 -h2(#Description). Description 14 +h2(#description). Description
15 15
16 On profile's page, when you click on "Activity" tab, the most recent activities of the user will be listed !=/images/doc/person-activities-list.pt.png(Activity tab)! 16 On profile's page, when you click on "Activity" tab, the most recent activities of the user will be listed !=/images/doc/person-activities-list.pt.png(Activity tab)!
17 17
18 -h2(#RelatedTopics). Related topics 18 +h2(#relatedtopics). Related topics
19 19
20 * "Removing friends":/doc/user/removing-friends 20 * "Removing friends":/doc/user/removing-friends
21 * "Accepting friends":/doc/user/accepting-friends 21 * "Accepting friends":/doc/user/accepting-friends
features/caching.feature 0 → 100644
@@ -0,0 +1,30 @@ @@ -0,0 +1,30 @@
  1 +Feature: caching
  2 + As a user
  3 + I want to see the contents according with my language
  4 + Even with the contents being cached
  5 +
  6 + Background:
  7 + Given the cache is turned on
  8 + And the following user
  9 + | login | name |
  10 + | mario | Mario |
  11 + And I am logged in as "mario"
  12 +
  13 + Scenario: blog view page
  14 + Given the following blogs
  15 + | owner | name | display_posts_in_current_language | visualization_format |
  16 + | mario | Sample Blog | false | short |
  17 + And the following articles
  18 + | owner | name | parent |
  19 + | mario | Post1 | Sample Blog |
  20 + | mario | Post2 | Sample Blog |
  21 + When I go to article "Sample Blog"
  22 + Then I should see "No comments yet"
  23 + When I follow "Português"
  24 + Then I should see "Sem comentários ainda"
  25 +
  26 + Scenario: blocks
  27 + Given I am on Mario's homepage
  28 + Then I should see "Recent content"
  29 + When I follow "Português"
  30 + Then I should see "Conteúdo recente"
features/roles.feature 0 → 100644
@@ -0,0 +1,30 @@ @@ -0,0 +1,30 @@
  1 +Feature: manage roles
  2 + As an environment admin
  3 + I want to create and edit roles
  4 +
  5 + Scenario: create new role
  6 + Given I am logged in as admin
  7 + And I go to the environment control panel
  8 + And I follow "Manage User roles"
  9 + Then I should not see "My new role"
  10 + And I follow "Create a new role"
  11 + And I fill in "Name" with "My new role"
  12 + And I check "Publish content"
  13 + And I press "Create role"
  14 + And I go to the environment control panel
  15 + And I follow "Manage User roles"
  16 + Then I should see "My new role"
  17 +
  18 + Scenario: edit a role
  19 + Given I am logged in as admin
  20 + And I go to the environment control panel
  21 + And I follow "Manage User roles"
  22 + Then I should not see "My new role"
  23 + And I follow "Profile Administrator"
  24 + And I follow "Edit"
  25 + And I fill in "Name" with "My new role"
  26 + And I press "Save changes"
  27 + And I go to the environment control panel
  28 + And I follow "Manage User roles"
  29 + Then I should see "My new role"
  30 + And I should not see "Profile Administrator"
features/step_definitions/noosfero_steps.rb
@@ -572,3 +572,7 @@ When /^I edit my profile$/ do @@ -572,3 +572,7 @@ When /^I edit my profile$/ do
572 visit "/myprofile/#{@current_user}" 572 visit "/myprofile/#{@current_user}"
573 click_link "Edit Profile" 573 click_link "Edit Profile"
574 end 574 end
  575 +
  576 +Given /^the cache is turned (on|off)$/ do |state|
  577 + ActionController::Base.perform_caching = (state == 'on')
  578 +end
lib/noosfero.rb
@@ -2,7 +2,7 @@ require &#39;fast_gettext&#39; @@ -2,7 +2,7 @@ require &#39;fast_gettext&#39;
2 2
3 module Noosfero 3 module Noosfero
4 PROJECT = 'noosfero' 4 PROJECT = 'noosfero'
5 - VERSION = '0.36.1' 5 + VERSION = '0.36.5'
6 6
7 def self.pattern_for_controllers_in_directory(dir) 7 def self.pattern_for_controllers_in_directory(dir)
8 disjunction = controllers_in_directory(dir).join('|') 8 disjunction = controllers_in_directory(dir).join('|')
@@ -20,7 +20,8 @@ module Noosfero @@ -20,7 +20,8 @@ module Noosfero
20 'de' => 'Deutsch', 20 'de' => 'Deutsch',
21 'ru' => 'русский язык', 21 'ru' => 'русский язык',
22 'es' => 'Español', 22 'es' => 'Español',
23 - 'eo' => 'Esperanto' 23 + 'eo' => 'Esperanto',
  24 + 'it' => 'Italiano'
24 } 25 }
25 end 26 end
26 attr_writer :locales 27 attr_writer :locales
lib/tasks/release.rake
@@ -55,6 +55,10 @@ Raphael Rousseau &lt;raph@r4f.org&gt; @@ -55,6 +55,10 @@ Raphael Rousseau &lt;raph@r4f.org&gt;
55 Théo Bondolfi <move@cooperation.net> 55 Théo Bondolfi <move@cooperation.net>
56 Vicente Aguiar <vicenteaguiar@colivre.coop.br> 56 Vicente Aguiar <vicenteaguiar@colivre.coop.br>
57 57
  58 +Arts
  59 +===================================
  60 +Nara Oliveira <narananet@gmail.com>
  61 +
58 EOF 62 EOF
59 63
60 desc 'updates the AUTHORS file' 64 desc 'updates the AUTHORS file'
plugins/require_auth_to_comment/public/hide_comment_form.js
@@ -3,6 +3,7 @@ @@ -3,6 +3,7 @@
3 if (data.login || $('meta[name=profile.allow_unauthenticated_comments]').length > 0) { 3 if (data.login || $('meta[name=profile.allow_unauthenticated_comments]').length > 0) {
4 $('.post-comment-button').show(); 4 $('.post-comment-button').show();
5 $('#page-comment-form').show(); 5 $('#page-comment-form').show();
  6 + $('.comment-footer').show();
6 } 7 }
7 }); 8 });
8 })(jQuery); 9 })(jQuery);
plugins/require_auth_to_comment/public/style.css
1 -.post-comment-button, #page-comment-form { 1 +.post-comment-button, #page-comment-form, .comment-footer {
2 display: none; 2 display: none;
3 } 3 }
plugins/shopping_cart/lib/shopping_cart_plugin/cart_helper.rb
@@ -55,6 +55,6 @@ module ShoppingCartPlugin::CartHelper @@ -55,6 +55,6 @@ module ShoppingCartPlugin::CartHelper
55 end 55 end
56 56
57 def float_to_currency_cart(value, environment) 57 def float_to_currency_cart(value, environment)
58 - number_to_currency(value, :unit => environment.currency_unit, :separator => environment.currency_separator, :delimiter => environment.currency_delimiter, :format => "%u %n") 58 + number_to_currency(value, :unit => environment.currency_unit, :separator => environment.currency_separator, :delimiter => environment.currency_delimiter, :precision => 2, :format => "%u %n")
59 end 59 end
60 end 60 end
plugins/shopping_cart/public/style.css
1 @import url(colorbox/colorbox.css); 1 @import url(colorbox/colorbox.css);
2 2
3 .cart-add-item .ui-icon-cart { 3 .cart-add-item .ui-icon-cart {
4 - background: url("images/button-icon.png") no-repeat scroll left center transparent;  
5 - width: 22px;  
6 - }  
7 - .cart-buy .ui-icon-cart {  
8 - background: url("images/button-icon.png") no-repeat scroll left center transparent;  
9 - width: 22px;  
10 - } 4 + background: url("/plugins/shopping_cart/images/button-icon.png") no-repeat scroll left center transparent;
  5 + width: 22px;
  6 +}
  7 +.cart-buy .ui-icon-cart {
  8 + background: url("/plugins/shopping_cart/images/button-icon.png") no-repeat scroll left center transparent;
  9 + width: 22px;
  10 +}
11 .cart-add-item .ui-button-text { 11 .cart-add-item .ui-button-text {
12 padding-left: 2.6em; 12 padding-left: 2.6em;
13 } 13 }
@@ -183,10 +183,10 @@ label.error { @@ -183,10 +183,10 @@ label.error {
183 vertical-align: top; 183 vertical-align: top;
184 } 184 }
185 185
186 -.controller-profile_editor a.control-panel-shopping-cart-purchase-report {background-image: url(images/control-panel/purchase-report.png)}  
187 -.controller-profile_editor .msie6 a.control-panel-shopping-cart-purchase-report {background-image: url(images/control-panel/purchase-report.gif)}  
188 -.controller-profile_editor a.control-panel-shopping-cart-icon {background-image: url(images/control-panel/icon.png)}  
189 -.controller-profile_editor .msie6 a.control-panel-shopping-cart-icon {background-image: url(images/control-panel/icon.gif)} 186 +.controller-profile_editor a.control-panel-shopping-cart-purchase-report {background-image: url("/plugins/shopping_cart/images/control-panel/purchase-report.png")}
  187 +.controller-profile_editor .msie6 a.control-panel-shopping-cart-purchase-report {background-image: url("/plugins/shopping_cart/images/control-panel/purchase-report.gif")}
  188 +.controller-profile_editor a.control-panel-shopping-cart-icon {background-image: url("/plugins/shopping_cart/images/control-panel/icon.png")}
  189 +.controller-profile_editor .msie6 a.control-panel-shopping-cart-icon {background-image: url("/plugins/shopping_cart/images/control-panel/icon.gif")}
190 190
191 .action-shopping_cart_plugin_myprofile-reports td.order-info { 191 .action-shopping_cart_plugin_myprofile-reports td.order-info {
192 padding: 0px; 192 padding: 0px;
plugins/shopping_cart/test/unit/shopping_cart_plugin/cart_helper_test.rb
@@ -34,5 +34,12 @@ class ShoppingCartPlugin::CartHelperTest &lt; ActiveSupport::TestCase @@ -34,5 +34,12 @@ class ShoppingCartPlugin::CartHelperTest &lt; ActiveSupport::TestCase
34 assert_equal price-discount, sell_price(product) 34 assert_equal price-discount, sell_price(product)
35 end 35 end
36 36
  37 + should 'return the correct formated string with float_to_currency_cart' do
  38 + value = 13.7
  39 + environment = Environment.default
  40 +
  41 + assert_equal "#{environment.currency_unit} 13#{environment.currency_separator}70", float_to_currency_cart(value,environment)
  42 + end
  43 +
37 end 44 end
38 45