Merge remote-tracking branch 'origin/szzh' into guange_dev
This commit is contained in:
commit
1975df63d4
|
@ -107,7 +107,7 @@ module Mobile
|
||||||
present :status,0
|
present :status,0
|
||||||
end
|
end
|
||||||
|
|
||||||
desc "给用户留言或回复用户留言"
|
desc "回复用户留言"
|
||||||
params do
|
params do
|
||||||
requires :token, type: String
|
requires :token, type: String
|
||||||
requires :user_id, type: Integer,desc: '被留言的用户id'
|
requires :user_id, type: Integer,desc: '被留言的用户id'
|
||||||
|
@ -116,12 +116,23 @@ module Mobile
|
||||||
requires :parent_id,type:Integer,desc:'留言父id'
|
requires :parent_id,type:Integer,desc:'留言父id'
|
||||||
requires :ref_message_id,type:Integer,desc:'引用消息id'
|
requires :ref_message_id,type:Integer,desc:'引用消息id'
|
||||||
end
|
end
|
||||||
post ':user_id/leave_message' do
|
post ':user_id/reply_message' do
|
||||||
us = UsersService.new
|
us = UsersService.new
|
||||||
jours = us.reply_user_messages params,current_user
|
jours = us.reply_user_messages params,current_user
|
||||||
present :status,0
|
present :status,0
|
||||||
end
|
end
|
||||||
|
|
||||||
|
desc "给用户留言"
|
||||||
|
params do
|
||||||
|
requires :token, type: String
|
||||||
|
requires :user_id, type: Integer,desc:'被留言的用户id'
|
||||||
|
requires :content, type: String,desc:'留言内容'
|
||||||
|
end
|
||||||
|
post ':user_id/leave_message' do
|
||||||
|
us = UsersService.new
|
||||||
|
us.leave_message params,current_user
|
||||||
|
present :data,0
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -184,7 +184,11 @@ class UsersService
|
||||||
user.add_jour(nil, nil,nil,options)
|
user.add_jour(nil, nil,nil,options)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# 给用户留言
|
||||||
|
def leave_message params,current_user
|
||||||
|
obj = User.find(params[:user_id]).add_jour(current_user, params[:content], 0)
|
||||||
|
obj
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
#关注列表
|
#关注列表
|
||||||
|
|
|
@ -5,12 +5,10 @@
|
||||||
<li>
|
<li>
|
||||||
<% if @issue.safe_attribute? 'tracker_id' %>
|
<% if @issue.safe_attribute? 'tracker_id' %>
|
||||||
<label class="label"><span class="c_red f12">*</span> 类型 : </label>
|
<label class="label"><span class="c_red f12">*</span> 类型 : </label>
|
||||||
<%= f.select :tracker_id,
|
<%= f.select :tracker_id, @issue.project.trackers.collect { |t| [t.name, t.id] },
|
||||||
@issue.project.trackers.collect { |t| [t.name, t.id] },
|
|
||||||
{:required => true, :no_label => true},
|
{:required => true, :no_label => true},
|
||||||
:onchange => "updateIssueFrom('#{escape_javascript project_issue_form_path(@project, :id => @issue, :format => 'js')}')",
|
:onchange => "updateIssueFrom('#{escape_javascript project_issue_form_path(@project, :id => @issue, :format => 'js')}')",
|
||||||
:class => "w90"
|
:class => "w90" %>
|
||||||
%>
|
|
||||||
<% end %>
|
<% end %>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
|
@ -31,11 +29,10 @@
|
||||||
<% if @issue.safe_attribute? 'subject' %>
|
<% if @issue.safe_attribute? 'subject' %>
|
||||||
<label class="label"><span class="c_red f12">*</span> 主题 : </label>
|
<label class="label"><span class="c_red f12">*</span> 主题 : </label>
|
||||||
<%= f.text_field :subject,
|
<%= f.text_field :subject,
|
||||||
:class => "w583",
|
:class => "w576",
|
||||||
:maxlength => 255,
|
:maxlength => 255,
|
||||||
:style => "font-size:small",
|
:style => "font-size:small",
|
||||||
:no_label => true
|
:no_label => true %>
|
||||||
%>
|
|
||||||
<!--Added by young-->
|
<!--Added by young-->
|
||||||
<%= javascript_tag do %>
|
<%= javascript_tag do %>
|
||||||
observeAutocompleteField('issue_subject',
|
observeAutocompleteField('issue_subject',
|
||||||
|
@ -55,15 +52,16 @@
|
||||||
<label class="label"> 描述 : </label>
|
<label class="label"> 描述 : </label>
|
||||||
<%= f.label_for_field :description, :required => @issue.required_attribute?('description'), :no_label => true, :class => "label" %>
|
<%= f.label_for_field :description, :required => @issue.required_attribute?('description'), :no_label => true, :class => "label" %>
|
||||||
<%= link_to_function image_tag('edit.png'), '$(this).hide(); $("#issue_description_and_toolbar").show()' unless @issue.new_record? %>
|
<%= link_to_function image_tag('edit.png'), '$(this).hide(); $("#issue_description_and_toolbar").show()' unless @issue.new_record? %>
|
||||||
<%= content_tag 'span', :id => "issue_description_and_toolbar", :style => (@issue.new_record? ? nil : 'display:none') do %>
|
<%= content_tag 'span', :id => "issue_description_and_toolbar" do %>
|
||||||
<%= f.text_area :description,
|
<%= f.kindeditor :description,:editor_id => "issue_desc_editor",
|
||||||
:rows => (@issue.description.blank? ? 10 : [[10, @issue.description.length / 50].max, 100].min),
|
# :rows => (@issue.description.blank? ? 10 : [[10, @issue.description.length / 50].max, 100].min),
|
||||||
:accesskey => accesskey(:edit),
|
# :accesskey => accesskey(:edit),
|
||||||
:class => "w583",
|
# :class => "w583",
|
||||||
|
:width=>'87%',
|
||||||
|
:resizeType => 0,
|
||||||
:no_label => true %>
|
:no_label => true %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
<%#= wikitoolbar_for 'issue_description' %>
|
||||||
<%= wikitoolbar_for 'issue_description' %>
|
|
||||||
<% end %>
|
<% end %>
|
||||||
</li>
|
</li>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
<%= javascript_include_tag "/assets/kindeditor/kindeditor" %>
|
||||||
<div class="project_r_h" xmlns="http://www.w3.org/1999/html">
|
<div class="project_r_h" xmlns="http://www.w3.org/1999/html">
|
||||||
<h2 class="project_h2"><%= l(:label_issue_new) %></h2>
|
<h2 class="project_h2"><%= l(:label_issue_new) %></h2>
|
||||||
</div>
|
</div>
|
||||||
|
@ -10,7 +11,7 @@
|
||||||
<%= render :partial => 'issues/form', :locals => {:f => f} %>
|
<%= render :partial => 'issues/form', :locals => {:f => f} %>
|
||||||
</div>
|
</div>
|
||||||
<!--<%= javascript_tag "$('#issue_subject').focus();" %>-->
|
<!--<%= javascript_tag "$('#issue_subject').focus();" %>-->
|
||||||
<a href="#" class="blue_btn fl ml80" onclick="$('#issue-form').submit();">
|
<a href="#" class="blue_btn fl ml80" onclick="issue_desc_editor.sync();$('#issue-form').submit();">
|
||||||
<%= l(:button_create) %>
|
<%= l(:button_create) %>
|
||||||
</a>
|
</a>
|
||||||
<%#= preview_link preview_new_issue_path(:project_id => @project), 'issue-form', 'preview', {:class => "blue_btn fl ml10"} %>
|
<%#= preview_link preview_new_issue_path(:project_id => @project), 'issue-form', 'preview', {:class => "blue_btn fl ml10"} %>
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
<%= javascript_include_tag "/assets/kindeditor/kindeditor" %>
|
||||||
<div class="project_r_h">
|
<div class="project_r_h">
|
||||||
<h2 class="project_h2"><%= l(:label_issue_edit) %></h2>
|
<h2 class="project_h2"><%= l(:label_issue_edit) %></h2>
|
||||||
</div>
|
</div>
|
||||||
|
@ -32,7 +33,7 @@
|
||||||
<% if @issue.description? || @issue.attachments.any? -%>
|
<% if @issue.description? || @issue.attachments.any? -%>
|
||||||
<% if @issue.description? %>
|
<% if @issue.description? %>
|
||||||
<%#= link_to l(:button_quote), quoted_issue_path(@issue.id), :remote => true, :method => 'post', :class => 'icon icon-comment' if authorize_for('issues', 'edit') %>
|
<%#= link_to l(:button_quote), quoted_issue_path(@issue.id), :remote => true, :method => 'post', :class => 'icon icon-comment' if authorize_for('issues', 'edit') %>
|
||||||
<%= textilizable @issue, :description, :attachments => @issue.attachments %>
|
<%= textAreailizable @issue, :description, :attachments => @issue.attachments %>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
<div class="pro_pic_box mb10">
|
<div class="pro_pic_box mb10">
|
||||||
|
@ -108,7 +109,7 @@
|
||||||
</div>
|
</div>
|
||||||
<!--留言-->
|
<!--留言-->
|
||||||
<p style="padding-top: 5px"></p>
|
<p style="padding-top: 5px"></p>
|
||||||
<a remote="true" href="javascript:void(0)" class="blue_btn fr mr80" onclick="$('#issue-form').submit();">
|
<a remote="true" href="javascript:void(0)" class="blue_btn fr mr80" onclick="issue_desc_editor.sync();$('#issue-form').submit();">
|
||||||
<%= l(:button_submit) %>
|
<%= l(:button_submit) %>
|
||||||
</a>
|
</a>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -144,10 +144,12 @@
|
||||||
<%= l(:label_member) %>(<%= link_to "#{@project.members.count}", project_member_path(@project), :class => 'info_foot_num c_blue' %>)
|
<%= l(:label_member) %>(<%= link_to "#{@project.members.count}", project_member_path(@project), :class => 'info_foot_num c_blue' %>)
|
||||||
<span>| </span>
|
<span>| </span>
|
||||||
<%= l(:label_user_watcher) %>(<%= link_to "#{@project.watcher_users.count}", {:controller=>"projects", :action=>"watcherlist", :id => @project.id}, :class => 'info_foot_num c_blue' %>)
|
<%= l(:label_user_watcher) %>(<%= link_to "#{@project.watcher_users.count}", {:controller=>"projects", :action=>"watcherlist", :id => @project.id}, :class => 'info_foot_num c_blue' %>)
|
||||||
|
<% unless @project.enabled_modules.where("name = 'files'").empty? %>
|
||||||
<span>| </span>
|
<span>| </span>
|
||||||
<%= l(:project_module_attachments) %>(
|
<%= l(:project_module_attachments) %>(
|
||||||
<% attaments_num = @project.attachments.count+Attachment.where(["`container_type` = 'Version' and `container_id` in (?)",@project.versions.map{ |v| v.id}]).all.count %>
|
<% attaments_num = @project.attachments.count+Attachment.where(["`container_type` = 'Version' and `container_id` in (?)",@project.versions.map{ |v| v.id}]).all.count %>
|
||||||
<%= link_to "#{attaments_num}", project_files_path(@project), :class => 'info_foot_num c_blue' %></span>)
|
<%= link_to "#{attaments_num}", project_files_path(@project), :class => 'info_foot_num c_blue' %></span>)
|
||||||
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</div><!--参数 end-->
|
</div><!--参数 end-->
|
||||||
|
|
|
@ -1,47 +0,0 @@
|
||||||
<% @nav_dispaly_project_label = 1
|
|
||||||
@nav_dispaly_forum_label = 1 %>
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="<%= current_language %>">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<title><%=h html_title %></title>
|
|
||||||
<meta name="description" content="<%= Redmine::Info.app_name %>" />
|
|
||||||
<meta name="keywords" content="issue,bug,tracker" />
|
|
||||||
<%= csrf_meta_tag %>
|
|
||||||
<%= favicon %>
|
|
||||||
<%= stylesheet_link_tag 'jquery/jquery-ui-1.9.2', 'application', 'nyan', :media => 'all' %>
|
|
||||||
<%= stylesheet_link_tag 'rtl', :media => 'all' if l(:direction) == 'rtl' %>
|
|
||||||
<%= javascript_heads %>
|
|
||||||
<%= javascript_include_tag "jquery.leanModal.min" %>
|
|
||||||
<%= javascript_include_tag 'seems_rateable/jRating', 'seems_rateable/rateable'%>
|
|
||||||
<%= heads_for_theme %>
|
|
||||||
<%= call_hook :view_layouts_base_html_head %>
|
|
||||||
<!-- page specific tags -->
|
|
||||||
<%= yield :header_tags -%>
|
|
||||||
</head>
|
|
||||||
<body class="<%=h body_css_classes %>">
|
|
||||||
<div id="wrapper">
|
|
||||||
<div id="wrapper2">
|
|
||||||
<div id="wrapper3">
|
|
||||||
<%=render :partial => 'layouts/base_header'%>
|
|
||||||
<div id="main" class="nosidebar">
|
|
||||||
<div id="content_">
|
|
||||||
<%= render_flash_messages %>
|
|
||||||
<%= yield %>
|
|
||||||
<%= call_hook :view_layouts_base_content %>
|
|
||||||
<div style="clear:both;"></div>
|
|
||||||
<%=render :partial => 'layouts/base_footer'%>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="ajax-indicator" style="display:none;"><span><%= l(:label_loading) %></span></div>
|
|
||||||
<div id="ajax-modal" style="display:none;"></div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<%= call_hook :view_layouts_base_body_bottom %>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
10
db/schema.rb
10
db/schema.rb
|
@ -659,6 +659,16 @@ ActiveRecord::Schema.define(:version => 20150514133640) do
|
||||||
|
|
||||||
add_index "journal_details", ["journal_id"], :name => "journal_details_journal_id"
|
add_index "journal_details", ["journal_id"], :name => "journal_details_journal_id"
|
||||||
|
|
||||||
|
create_table "journal_details_copy", :force => true do |t|
|
||||||
|
t.integer "journal_id", :default => 0, :null => false
|
||||||
|
t.string "property", :limit => 30, :default => "", :null => false
|
||||||
|
t.string "prop_key", :limit => 30, :default => "", :null => false
|
||||||
|
t.text "old_value"
|
||||||
|
t.text "value"
|
||||||
|
end
|
||||||
|
|
||||||
|
add_index "journal_details_copy", ["journal_id"], :name => "journal_details_journal_id"
|
||||||
|
|
||||||
create_table "journal_replies", :id => false, :force => true do |t|
|
create_table "journal_replies", :id => false, :force => true do |t|
|
||||||
t.integer "journal_id"
|
t.integer "journal_id"
|
||||||
t.integer "user_id"
|
t.integer "user_id"
|
||||||
|
|
|
@ -93,6 +93,7 @@ h4{ font-size:14px; color:#3b3b3b;}
|
||||||
.w520{ width:520px;}
|
.w520{ width:520px;}
|
||||||
.w543{ width:543px;}
|
.w543{ width:543px;}
|
||||||
.w557{ width:557px;}
|
.w557{ width:557px;}
|
||||||
|
.w576{ width:576px;}
|
||||||
.w583{ width:583px;}
|
.w583{ width:583px;}
|
||||||
.w350{ width:350px;}
|
.w350{ width:350px;}
|
||||||
.w610{ width:610px;}
|
.w610{ width:610px;}
|
||||||
|
|
Loading…
Reference in New Issue