diff --git a/app/views/news/_project_show.html.erb b/app/views/news/_project_show.html.erb
index c83d9133f..e2b58e683 100644
--- a/app/views/news/_project_show.html.erb
+++ b/app/views/news/_project_show.html.erb
@@ -1,129 +1,69 @@
+<%
+ btn_tips = l(:label_news_new)
+ label_tips = l(:label_news)
+%>
+ <% if @newss.empty? %>
+
+ <%= l(:label_no_data) %>
+
+ <% else %>
+ <% @newss.each do |news| %>
+
+ <%= link_to image_tag(url_to_avatar(news.author),:width => 42,:height => 42), user_path(news.author), :class => "problem_pic fl" %>
+
+ <%= link_to_user_header(news.author,false,{:class=> 'problem_name c_orange fl'}) if news.respond_to?(:author) %>
+
<%= l(:label_release_news) %>:<%= link_to h(news.title), news_path(news),:class => 'problem_tit fl fb c_dblue' %>
+
+
<%= news.description %>
<%= l(:label_create_time) %> :<%= format_time(news.created_on) %>
+
+
+
+
-<% if authorize_for('news', 'edit') %>
-
- <%= labelled_form_for :news, @news, :url => news_path(@news),
- :html => { :id => 'news-form', :multipart => true, :method => :put } do |f| %>
- <%= render :partial => 'project_form', :locals => { :f => f, :is_new => false } %>
<% end %>
-
-
-<% end %>
+ <% end %>
+
+
+
- <%= link_to image_tag(url_to_avatar(@news.author),:width => 42,:height => 42), user_path(@news.author), :class => "problem_pic fl" %>
-
-
<%=h @news.title %>
- <%#= watcher_link(@news, User.current) %>
- <%= link_to(l(:button_edit),
- edit_news_path(@news),
- :class => 'talk_edit fr',
- :accesskey => accesskey(:edit),
- :onclick => '$("#edit-news").show(); return false;') if User.current.allowed_to?(:manage_news, @project) %>
- <%= delete_link news_path(@news),:class => 'talk_edit fr' if User.current.allowed_to?(:manage_news, @project) %>
-
-
<%= textAreailizable(@news, :description) %>
<%= l(:label_create_time) %> : <%= format_time(@news.created_on) %>
- <%= link_to_attachments_course @news %>
-
-
-
-
-
-<% if @news.commentable? %>
-
- <%= toggle_link l(:label_comment_add), "add_comment_form", :focus => "comment_comments" %>
-
- <%= form_tag({:controller => 'comments', :action => 'create', :id => @news}, :id => "add_comment_form") do %>
-
- <%= text_area 'comment', 'comments', :rows => 5, :style => "width:98%" %>
+<% other_formats_links do |f| %>
+ <%= f.link_to 'Atom', :url => {:project_id => @project, :key => User.current.rss_key} %>
+<% end %>
-
-
<%= l(:label_comment_add) %>
- <% end %>
- <% end %>
-
-<% comments = @comments.reverse %>
-<% comments.each do |comment| %>
- <% next if comment.new_record? %>
-
-
<%= link_to image_tag(url_to_avatar(comment.author),:width => 42,:height => 42), user_path(comment.author), :class => "ping_dispic" %>
-
-
- <%= link_to_user_header(comment.author,false,:class => 'c_blue fb fl mb10 ') if comment.respond_to?(:author) %>
<%= format_time(comment.created_on) %>
-
-
<%= textAreailizable(comment.comments) %>
-
-
-
-
-
- <% end if @comments.any? %>
-
<% content_for :header_tags do %>
+ <%= auto_discovery_link_tag(:atom, params.merge({:format => 'atom', :page => nil, :key => User.current.rss_key})) %>
<%= stylesheet_link_tag 'scm' %>
<% end %>
-<% html_title @news.title -%>
+
+<% html_title(l(:label_news_plural)) -%>
+
+
diff --git a/app/views/projects/settings.html.erb b/app/views/projects/settings.html.erb
index 68f49689b..f57b62465 100644
--- a/app/views/projects/settings.html.erb
+++ b/app/views/projects/settings.html.erb
@@ -1,9 +1,490 @@