2015-04-07 12:48:47 +08:00
|
|
|
|
//验证搜索时输入字
|
2015-04-16 04:12:26 +08:00
|
|
|
|
function regexName(content) {
|
2015-04-07 12:48:47 +08:00
|
|
|
|
var name = $.trim($("#name").val());
|
|
|
|
|
if (name.length == 0) {
|
2015-04-16 04:12:26 +08:00
|
|
|
|
$("#project_name_span").text(content);
|
2015-04-07 12:48:47 +08:00
|
|
|
|
$("#project_name_span").css('color', '#ff0000');
|
|
|
|
|
$("#project_name_span").focus();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$("#project_name_span").text("");
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-16 20:11:33 +08:00
|
|
|
|
function submitSerch(content) {
|
|
|
|
|
if (regexName(content)) {
|
|
|
|
|
$("#project_search_form").submit();
|
|
|
|
|
}
|
2015-04-16 04:12:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2015-04-07 12:48:47 +08:00
|
|
|
|
// 项目描述超过展开
|
2015-04-14 10:46:31 +08:00
|
|
|
|
//$(function(){
|
|
|
|
|
// $(".subNav").click(function(){
|
|
|
|
|
//
|
|
|
|
|
// })
|
|
|
|
|
//})
|
2015-04-16 20:11:33 +08:00
|
|
|
|
function expand_tools_expand(content) {
|
|
|
|
|
if (content == "invit") {
|
2015-04-16 14:25:02 +08:00
|
|
|
|
$("#expand_tools_expand_invit").toggleClass("currentDd").siblings(".subNav").removeClass("currentDd");
|
|
|
|
|
$("#expand_tools_expand_invit").toggleClass("currentDt").siblings(".subNav").removeClass("currentDt");
|
|
|
|
|
$("#expand_tools_expand_invit").next(".navContent").slideToggle(500).siblings(".navContent").slideUp(500);
|
|
|
|
|
}
|
2015-04-16 20:11:33 +08:00
|
|
|
|
else {
|
2015-04-16 14:25:02 +08:00
|
|
|
|
$("#expand_tools_expand").toggleClass("currentDd").siblings(".subNav").removeClass("currentDd");
|
|
|
|
|
$("#expand_tools_expand").toggleClass("currentDt").siblings(".subNav").removeClass("currentDt");
|
|
|
|
|
$("#expand_tools_expand").next(".navContent").slideToggle(500).siblings(".navContent").slideUp(500);
|
|
|
|
|
}
|
2015-04-07 12:48:47 +08:00
|
|
|
|
|
2015-04-14 10:46:31 +08:00
|
|
|
|
// 修改数字控制速度, slideUp(500)控制卷起速度
|
|
|
|
|
}
|
2015-04-07 12:48:47 +08:00
|
|
|
|
|
|
|
|
|
// 描述显示更多信息
|
2015-04-16 20:11:33 +08:00
|
|
|
|
function show_more_msg() {
|
|
|
|
|
$("#course_description").toggleClass("course_description_none");
|
|
|
|
|
var information = $("#expend_more_information");
|
|
|
|
|
var arrow = $("#arrow");
|
|
|
|
|
var val = information.attr("value");
|
2015-04-20 14:45:46 +08:00
|
|
|
|
if (val == "show_more") {
|
2015-04-16 04:53:09 +08:00
|
|
|
|
$("#expend_more_information").text("收起描述信息");
|
2015-04-20 14:45:46 +08:00
|
|
|
|
information.attr("value", "hide_more");
|
2015-04-16 20:11:33 +08:00
|
|
|
|
arrow.attr("src", "/images/jiantouup.jpg")
|
2015-04-16 04:53:09 +08:00
|
|
|
|
}
|
2015-04-16 20:11:33 +08:00
|
|
|
|
else {
|
2015-04-16 04:53:09 +08:00
|
|
|
|
$("#expend_more_information").text("展开更多信息");
|
2015-04-20 14:45:46 +08:00
|
|
|
|
information.attr("value", "show_more");
|
2015-04-16 20:11:33 +08:00
|
|
|
|
arrow.attr("src", "/images/jiantou.jpg")
|
2015-04-16 04:53:09 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-04-07 12:48:47 +08:00
|
|
|
|
|
2015-04-27 17:15:21 +08:00
|
|
|
|
|
|
|
|
|
//项目版本库git帮助文档显示
|
2015-05-05 17:08:46 +08:00
|
|
|
|
function showhelpAndScrollTo(id) {
|
|
|
|
|
$('#' + id).toggle();
|
|
|
|
|
if(cookieget("repositories_visiable") == "true")
|
|
|
|
|
{
|
|
|
|
|
cookiesave("repositories_visiable", false,'','','');
|
2015-04-27 16:58:16 +08:00
|
|
|
|
}
|
2015-05-05 17:08:46 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
cookiesave("repositories_visiable", true,'','','');
|
2015-04-27 16:58:16 +08:00
|
|
|
|
}
|
2015-05-06 17:41:18 +08:00
|
|
|
|
var information = $("#showgithelp");
|
|
|
|
|
var val = information.attr("value");
|
|
|
|
|
if(val=="show_help")
|
|
|
|
|
{
|
|
|
|
|
$("#showgithelp").text("收起Git操作指南");
|
|
|
|
|
information.attr("value", "hide_help");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
$("#showgithelp").text("展开Git操作指南");
|
|
|
|
|
information.attr("value", "show_help");
|
|
|
|
|
}
|
2015-04-27 16:58:16 +08:00
|
|
|
|
}
|
|
|
|
|
|
2015-05-06 17:41:18 +08:00
|
|
|
|
|
|
|
|
|
|
2015-05-05 17:08:46 +08:00
|
|
|
|
$(function(){
|
2015-05-06 17:41:18 +08:00
|
|
|
|
var information = $("#showgithelp");
|
|
|
|
|
var val = information.attr("value");
|
2015-05-05 17:08:46 +08:00
|
|
|
|
if(cookieget("repositories_visiable") == "true")
|
|
|
|
|
{
|
|
|
|
|
$('#repos_git_more').hide();
|
|
|
|
|
}
|
2015-05-06 17:41:18 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
$('#repos_git_more').show();
|
|
|
|
|
$("#showgithelp").text("收起Git操作指南");
|
|
|
|
|
information.attr("value", "hide_help");
|
|
|
|
|
}
|
2015-05-05 17:08:46 +08:00
|
|
|
|
});
|
|
|
|
|
|
2015-04-27 16:58:16 +08:00
|
|
|
|
|
|
|
|
|
|
2015-04-07 12:48:47 +08:00
|
|
|
|
///////////////////////////////////////////////////////////////
|
|
|
|
|
//////////////////////////////////////////////////////////////项目讨论区
|
2015-04-16 20:11:33 +08:00
|
|
|
|
function regexSubject() {
|
2015-04-07 12:48:47 +08:00
|
|
|
|
var content = $.trim($("#message_subject").val());
|
2015-04-16 20:11:33 +08:00
|
|
|
|
if (content.length == 0) {
|
2015-04-07 12:48:47 +08:00
|
|
|
|
$("#subject_span").text("主题不能为空");
|
2015-04-16 20:11:33 +08:00
|
|
|
|
$("#subject_span").css('color', '#ff0000');
|
2015-04-07 12:48:47 +08:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-04-16 20:11:33 +08:00
|
|
|
|
else {
|
2015-04-07 12:48:47 +08:00
|
|
|
|
$("#subject_span").text("填写正确");
|
2015-04-16 20:11:33 +08:00
|
|
|
|
$("#subject_span").css('color', '#008000');
|
2015-04-07 12:48:47 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-04-16 20:11:33 +08:00
|
|
|
|
function regexContent() {
|
2015-04-07 12:48:47 +08:00
|
|
|
|
var content = $.trim($("#message_content").val());
|
2015-04-16 20:11:33 +08:00
|
|
|
|
if (content.length == 0) {
|
2015-04-07 12:48:47 +08:00
|
|
|
|
$("#message_content_span").text("描述不能为空");
|
2015-04-16 20:11:33 +08:00
|
|
|
|
$("#message_content_span").css('color', '#ff0000');
|
2015-04-07 12:48:47 +08:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-04-16 20:11:33 +08:00
|
|
|
|
else {
|
2015-04-07 12:48:47 +08:00
|
|
|
|
$("#message_content_span").text("填写正确");
|
2015-04-16 20:11:33 +08:00
|
|
|
|
$("#message_content_span").css('color', '#008000');
|
2015-04-07 12:48:47 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-20 14:54:04 +08:00
|
|
|
|
// 项目讨论区编辑和提交
|
2015-04-16 20:11:33 +08:00
|
|
|
|
function submitProjectsBoard() {
|
|
|
|
|
if (regexSubject() && regexContent()) {
|
|
|
|
|
$("#message-form").submit();
|
|
|
|
|
}
|
2015-04-07 12:48:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 提交新闻
|
2015-04-16 20:11:33 +08:00
|
|
|
|
function regexTitle() {
|
2015-04-07 12:48:47 +08:00
|
|
|
|
var name = $("#news_title").val();
|
2015-04-16 20:11:33 +08:00
|
|
|
|
if (name.length == 0) {
|
2015-04-07 12:48:47 +08:00
|
|
|
|
$("#title_notice_span").text("标题不能为空");
|
2015-04-16 20:11:33 +08:00
|
|
|
|
$("#title_notice_span").css('color', '#ff0000');
|
2015-04-07 12:48:47 +08:00
|
|
|
|
$("#title_notice_span").focus();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-04-16 20:11:33 +08:00
|
|
|
|
else if (name.length <= 60) {
|
2015-04-07 12:48:47 +08:00
|
|
|
|
$("#title_notice_span").text("填写正确");
|
2015-04-16 20:11:33 +08:00
|
|
|
|
$("#title_notice_span").css('color', '#008000');
|
2015-04-07 12:48:47 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2015-04-16 20:11:33 +08:00
|
|
|
|
else {
|
2015-04-07 12:48:47 +08:00
|
|
|
|
$("#title_notice_span").text("标题超过60个字符");
|
2015-04-16 20:11:33 +08:00
|
|
|
|
$("#title_notice_span").css('color', '#ff0000');
|
2015-04-07 12:48:47 +08:00
|
|
|
|
$("#title_notice_span").focus();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-16 20:11:33 +08:00
|
|
|
|
function regexDescription() {
|
2015-04-07 12:48:47 +08:00
|
|
|
|
var name = $("#news_description").val();
|
2015-04-16 20:11:33 +08:00
|
|
|
|
if (name.length == 0) {
|
2015-04-07 12:48:47 +08:00
|
|
|
|
$("#description_notice_span").text("描述不能为空");
|
2015-04-16 20:11:33 +08:00
|
|
|
|
$("#description_notice_span").css('color', '#ff0000');
|
2015-04-07 12:48:47 +08:00
|
|
|
|
$("#description_notice_span").focus();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-04-16 20:11:33 +08:00
|
|
|
|
else {
|
2015-04-07 12:48:47 +08:00
|
|
|
|
$("#description_notice_span").text("填写正确");
|
2015-04-16 20:11:33 +08:00
|
|
|
|
$("#description_notice_span").css('color', '#008000');
|
2015-04-07 12:48:47 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-16 20:11:33 +08:00
|
|
|
|
function submitNews() {
|
|
|
|
|
if (regexTitle() && regexDescription()) {
|
2015-04-07 12:48:47 +08:00
|
|
|
|
$("#news-form").submit();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-16 20:11:33 +08:00
|
|
|
|
function submitFocus(obj) {
|
2015-04-07 12:48:47 +08:00
|
|
|
|
$(obj).focus();
|
|
|
|
|
}
|
2015-04-09 08:43:51 +08:00
|
|
|
|
|
|
|
|
|
//当项目描述长度小于112px时,不显示更多按钮
|
2015-04-16 20:11:33 +08:00
|
|
|
|
$(function () {
|
2015-04-09 19:18:04 +08:00
|
|
|
|
// alert($("#course_description_content").height());
|
2015-04-16 20:11:33 +08:00
|
|
|
|
if ($("#course_description_content").height() > 112) {
|
2015-04-09 08:43:51 +08:00
|
|
|
|
$("#lg-foot").show();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//配置项目信息
|
2015-04-16 20:11:33 +08:00
|
|
|
|
function course_setting(id) {
|
2015-04-09 08:43:51 +08:00
|
|
|
|
//alert(id);
|
2015-04-16 20:11:33 +08:00
|
|
|
|
$('#tb_' + id).removeClass().addClass("hwork_hovertab");
|
|
|
|
|
$('#tbc_0' + id).removeClass().addClass("dis");
|
|
|
|
|
$('#tb_' + (3 - id)).removeClass().addClass("hwork_normaltab");
|
|
|
|
|
$('#tbc_0' + (3 - id)).removeClass().addClass("undis");
|
2015-04-09 19:18:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-20 14:54:04 +08:00
|
|
|
|
//项目类型(朋友圈、开发组、科研组)
|
2015-04-16 20:11:33 +08:00
|
|
|
|
function show_window() {
|
|
|
|
|
$('#light').css('display', 'block');
|
|
|
|
|
$('#fade').css('display', 'block');
|
2015-04-09 19:18:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-16 20:11:33 +08:00
|
|
|
|
function close_window(type) {
|
|
|
|
|
$('#light').css('display', 'none');
|
|
|
|
|
$('#fade').css('display', 'none');
|
2015-04-09 19:18:04 +08:00
|
|
|
|
|
2015-04-16 20:11:33 +08:00
|
|
|
|
$("#" + type).attr("checked", "checked");
|
2015-04-09 19:18:04 +08:00
|
|
|
|
}
|
2015-04-11 14:19:52 +08:00
|
|
|
|
//弹框l
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////
|
2015-04-11 16:17:36 +08:00
|
|
|
|
//项目配置
|
2015-04-16 20:11:33 +08:00
|
|
|
|
function project_setting(n) {
|
|
|
|
|
for (var i = 1; i < 9; i++) {
|
|
|
|
|
if (i == n) {
|
|
|
|
|
$("#pro_st_tb_" + i).removeClass().addClass("pro_st_hovertab");
|
|
|
|
|
$("#pro_st_tbc_0" + i).removeClass().addClass("pro_st_dis");
|
2015-04-11 16:17:36 +08:00
|
|
|
|
}
|
2015-04-16 20:11:33 +08:00
|
|
|
|
else {
|
|
|
|
|
$("#pro_st_tb_" + i).removeClass().addClass("pro_st_normaltab");
|
|
|
|
|
$("#pro_st_tbc_0" + i).removeClass().addClass("pro_st_undis");
|
2015-04-11 16:17:36 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-04-13 21:08:26 +08:00
|
|
|
|
}
|
2015-04-20 14:54:04 +08:00
|
|
|
|
|
|
|
|
|
//配置-验证项目名称
|
2015-04-27 16:58:16 +08:00
|
|
|
|
function regex_project_name() {
|
2015-04-20 14:54:04 +08:00
|
|
|
|
var name = $.trim($("#project_name").val());
|
2015-04-27 16:58:16 +08:00
|
|
|
|
if (name.length == 0) {
|
2015-04-20 14:54:04 +08:00
|
|
|
|
$("#project_name_notice").show();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-04-27 16:58:16 +08:00
|
|
|
|
else {
|
2015-04-20 14:54:04 +08:00
|
|
|
|
$("#project_name_notice").hide();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//配置-信息提交
|
2015-04-27 16:58:16 +08:00
|
|
|
|
function submit_edit_project(id) {
|
|
|
|
|
if (regex_project_name()) {
|
|
|
|
|
$("#edit_project_" + id).submit();
|
2015-04-20 14:54:04 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-14 19:34:01 +08:00
|
|
|
|
//配置--成员---申请列表--拒绝
|
2015-04-16 20:11:33 +08:00
|
|
|
|
function refusal_applied_member() {
|
2015-04-14 19:34:01 +08:00
|
|
|
|
$('#new_membership').append("<input name = 'refusal_button' style='display: none;'>");
|
|
|
|
|
$('#new_membership').submit();
|
2015-04-14 23:58:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//新闻描述显示更多信息
|
2015-04-16 20:11:33 +08:00
|
|
|
|
function news_show_more_des(id) {
|
2015-04-14 23:58:27 +08:00
|
|
|
|
$('#news_description_' + id).toggleClass("news_description_none");
|
2015-04-15 16:34:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-16 20:11:33 +08:00
|
|
|
|
$(document).ready(function () {
|
|
|
|
|
$("#issue_project_id").css("width", "100%");
|
|
|
|
|
$("#issue_project_id").css("overflow ", "hidden");
|
2015-04-15 16:34:34 +08:00
|
|
|
|
// $(".jstEditor").css("margin-left ","80px");
|
|
|
|
|
//issue_project_id
|
|
|
|
|
});
|
2015-04-16 04:12:26 +08:00
|
|
|
|
|
2015-04-27 16:58:16 +08:00
|
|
|
|
function showAndScrollTo(id, focus) {
|
|
|
|
|
$('#' + id).show();
|
|
|
|
|
if (focus !== null) {
|
2015-04-16 20:11:33 +08:00
|
|
|
|
$('#' + focus).focus();
|
2015-04-27 16:58:16 +08:00
|
|
|
|
}
|
|
|
|
|
$('html, body').animate({scrollTop: $('#' + id).offset().top}, 400);
|
2015-04-16 17:56:19 +08:00
|
|
|
|
}
|
2015-04-16 20:11:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*缺陷完成度决定缺陷状态*/
|
|
|
|
|
function PrecentChange(obj) {
|
|
|
|
|
var _v = obj;
|
|
|
|
|
if (_v == 100) {
|
|
|
|
|
//var select=$("select[id='issue_status_id']");
|
|
|
|
|
$("select[id='issue_status_id']").find("option[value='3']").attr("selected", "selected");
|
|
|
|
|
}
|
|
|
|
|
else if (_v == 0) {
|
|
|
|
|
//alert(1);
|
|
|
|
|
$("select[id='issue_status_id']").find("option[value='1']").attr("selected", "selected");
|
|
|
|
|
}
|
|
|
|
|
else if (_v != 100 && _v != 0) {
|
|
|
|
|
// alert(2);
|
|
|
|
|
$("select[id='issue_status_id']").find("option[value='2']").attr("selected", "selected");
|
|
|
|
|
}
|
2015-04-16 17:56:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Can't use Rails' remote select because we need the form data
|
|
|
|
|
// 根据缺陷状态值改变完成度状态
|
2015-04-16 20:11:33 +08:00
|
|
|
|
function updateIssueFrom(url) {
|
|
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
|
url: url,
|
|
|
|
|
type: 'post',
|
|
|
|
|
data: $('#issue-form').serialize()
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// firefox pre标签换行
|
|
|
|
|
$(document).ready(function () {
|
|
|
|
|
var userAgent = navigator.userAgent.toLowerCase();
|
|
|
|
|
var browser = {
|
|
|
|
|
version: (userAgent.match(/.+(?:rv|it|ra|ie)[/: ]([d.]+)/) || [])[1],
|
|
|
|
|
safari: /webkit/.test(userAgent),
|
|
|
|
|
opera: /opera/.test(userAgent),
|
|
|
|
|
msie: /msie/.test(userAgent) && !/opera/.test(userAgent),
|
|
|
|
|
mozilla: /mozilla/.test(userAgent) && !/(compatible|webkit)/.test(userAgent)
|
|
|
|
|
};
|
|
|
|
|
if (browser.mozilla || browser.opera) {
|
|
|
|
|
$("pre").addClass("break_word_firefox");
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$("pre").addClass("break_word");
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-29 14:29:03 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//论坛提交
|
|
|
|
|
function submitProjectBoard()
|
|
|
|
|
{
|
|
|
|
|
if(regexSubject()&®exContent())
|
|
|
|
|
{
|
|
|
|
|
$("#message-form").submit();
|
|
|
|
|
}
|
|
|
|
|
}
|