From 91d61502a2da38cac9f83221e9eafa587a64f990 Mon Sep 17 00:00:00 2001
From: fanqiang <316257774@qq.com>
Date: Thu, 29 May 2014 19:49:33 +0800
Subject: [PATCH 1/2] =?UTF-8?q?=E5=B0=86=E8=BD=AF=E4=BB=B6=E6=BC=8F?=
=?UTF-8?q?=E6=B4=9E=E6=94=B9=E4=B8=BA=E8=BD=AF=E4=BB=B6=E6=80=81=E5=8A=BF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
app/views/open_source_projects/index.html.erb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/views/open_source_projects/index.html.erb b/app/views/open_source_projects/index.html.erb
index 45ac4fa95..1c488fe82 100644
--- a/app/views/open_source_projects/index.html.erb
+++ b/app/views/open_source_projects/index.html.erb
@@ -144,7 +144,7 @@ li {
-
+
From d17ce35596fdef4ee01b52da00895da1d1e824fa Mon Sep 17 00:00:00 2001
From: fanqiang <316257774@qq.com>
Date: Thu, 29 May 2014 19:54:38 +0800
Subject: [PATCH 2/2] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=A1=B9=E7=9B=AE?=
=?UTF-8?q?=E5=B1=95=E7=A4=BA=E7=95=8C=E9=9D=A2=E4=B8=ADbug=E7=9A=84?=
=?UTF-8?q?=E9=93=BE=E6=8E=A5=E9=97=AE=E9=A2=98=EF=BC=8C=E5=B0=86=E4=BC=9A?=
=?UTF-8?q?=E9=87=8D=E6=96=B0=E6=89=93=E5=BC=80=E9=A1=B5=E9=9D=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
app/views/open_source_projects/_show_bug.html.erb | 2 +-
app/views/open_source_projects/_show_topics.html.erb | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/app/views/open_source_projects/_show_bug.html.erb b/app/views/open_source_projects/_show_bug.html.erb
index 678209813..adccff837 100644
--- a/app/views/open_source_projects/_show_bug.html.erb
+++ b/app/views/open_source_projects/_show_bug.html.erb
@@ -18,7 +18,7 @@
<% if topic.url.nil? || topic.url == '' %>
<%= link_to h(topic.subject), open_source_project_relative_memo_path(open_source_project, topic) %>
<% else %>
- <%= link_to h(topic.subject), topic.url %>
+ <%= link_to h(topic.subject), topic.url, :target => '_blank' %>
<% end %>
diff --git a/app/views/open_source_projects/_show_topics.html.erb b/app/views/open_source_projects/_show_topics.html.erb
index 1a16f5282..db25b444d 100644
--- a/app/views/open_source_projects/_show_topics.html.erb
+++ b/app/views/open_source_projects/_show_topics.html.erb
@@ -26,7 +26,7 @@
<% @bugs.each do |bug| %>
- - >[<%= show_description(bug, open_source_project) %>]<%= link_to bug.subject, bug.url %>
+ - >[<%= show_description(bug, open_source_project) %>]<%= link_to bug.subject, bug.url, :target => '_blank' %>
<% end %>
|