From e0922e9b19f347893281e2d40c4a00ed5140af9c Mon Sep 17 00:00:00 2001
From: luoquan <545501972@qq.com>
Date: Fri, 11 Mar 2016 16:25:05 +0800
Subject: [PATCH 1/4] =?UTF-8?q?=E8=B0=83=E6=95=B4=E8=A7=86=E9=A2=91?=
=?UTF-8?q?=E6=92=AD=E6=94=BE=E9=BB=98=E8=AE=A4=E5=9B=BE=E5=A4=A7=E5=B0=8F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
public/stylesheets/new_user.css | 2 +-
public/stylesheets/public.css | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/public/stylesheets/new_user.css b/public/stylesheets/new_user.css
index 2b1caefce..af3829706 100644
--- a/public/stylesheets/new_user.css
+++ b/public/stylesheets/new_user.css
@@ -1481,4 +1481,4 @@ a.choose-active {background-color:#269ac9; color:#ffffff;}
.subject-list-from {width:105px; text-align:center;}
/*视频播放默认图标*/
-.mediaIco{margin: 30px 0 30px 20px;}
+.mediaIco{margin: 30px 0 30px 20px;width: 200px;}
diff --git a/public/stylesheets/public.css b/public/stylesheets/public.css
index 9ea718295..77c32e587 100644
--- a/public/stylesheets/public.css
+++ b/public/stylesheets/public.css
@@ -1132,4 +1132,4 @@ a.group-btn{ background: url(../images/course/hwork_icon.png) -2px -58px no-rep
a.program-btn{background: url(../images/homepage_icon.png) -86px -393px no-repeat; width:30px; height:20px; display:block; padding-left:23px; color:#888888;}
/*视频播放默认图标*/
-.mediaIco{margin: 30px 0 30px 20px;}
+.mediaIco{margin: 30px 0 30px 20px;width: 200px;}
From 270a290df9cd0e261678811f351df75f8510d742 Mon Sep 17 00:00:00 2001
From: luoquan <545501972@qq.com>
Date: Mon, 14 Mar 2016 15:18:56 +0800
Subject: [PATCH 2/4] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=A7=86=E9=A2=91?=
=?UTF-8?q?=E4=B8=8D=E8=83=BD=E6=92=AD=E6=94=BE=E9=97=AE=E9=A2=98=E3=80=82?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
public/javascripts/application.js | 2312 +++++++++++++++--------------
1 file changed, 1158 insertions(+), 1154 deletions(-)
diff --git a/public/javascripts/application.js b/public/javascripts/application.js
index fe829f7a8..709bd5a36 100644
--- a/public/javascripts/application.js
+++ b/public/javascripts/application.js
@@ -1,1154 +1,1158 @@
-//= require_directory ./rateable
-//= require jquery.min
-//= require jquery.infinitescroll
-
-/* Redmine - project management software
- Copyright (C) 2006-2013 Jean-Philippe Lang */
-
-//动态高度控制
-function description_show_hide(id){
- showNormalImage('activity_description_'+id);
- if($("#intro_content_"+id).height() > 810) {
- $("#intro_content_show_"+id).show();
- }
- $("#intro_content_show_"+id).click(function(){
- $("#activity_description_"+id).toggleClass("maxh360");
- $("#intro_content_show_"+id).hide();
- $("#intro_content_hide_"+id).show();
- });
- $("#intro_content_hide_"+id).click(function(){
- $("#activity_description_"+id).toggleClass("maxh360");
- $("#intro_content_hide_"+id).hide();
- $("#intro_content_show_"+id).show();
- });
-}
-
-function cleanArray (actual){
- var newArray = new Array();
- for (var i = 0; i< actual.length; i++){
- if (actual[i]){
- newArray.push(actual[i]);
- }
- }
- return newArray;
-}
-
-function checkAll(id, checked) {
- if (checked) {
- $('#'+id).find('input[type=checkbox]').attr('checked', true);
- } else {
- $('#'+id).find('input[type=checkbox]').removeAttr('checked');
- }
-}
-
-function toggleCheckboxesBySelector(selector) {
- var all_checked = true;
- $(selector).each(function(index) {
- if (!$(this).is(':checked')) { all_checked = false; }
- });
- $(selector).attr('checked', !all_checked);
-}
-
-function showAndScrollTo(id, focus) {
- $('#'+id).show();
- if (focus !== null) {
- $('#'+focus).focus();
- }
- $('html, body').animate({scrollTop: $('#'+id).offset().top}, 400);
-}
-
-function toggleRowGroup(el) {
- var tr = $(el).parents('tr').first();
- var n = tr.next();
- tr.toggleClass('open');
- while (n.length && !n.hasClass('group')) {
- n.toggle();
- n = n.next('tr');
- }
-}
-
-function collapseAllRowGroups(el) {
- var tbody = $(el).parents('tbody').first();
- tbody.children('tr').each(function(index) {
- if ($(this).hasClass('group')) {
- $(this).removeClass('open');
- } else {
- $(this).hide();
- }
- });
-}
-
-function expandAllRowGroups(el) {
- var tbody = $(el).parents('tbody').first();
- tbody.children('tr').each(function(index) {
- if ($(this).hasClass('group')) {
- $(this).addClass('open');
- } else {
- $(this).show();
- }
- });
-}
-
-function toggleAllRowGroups(el) {
- var tr = $(el).parents('tr').first();
- if (tr.hasClass('open')) {
- collapseAllRowGroups(el);
- } else {
- expandAllRowGroups(el);
- }
-}
-
-function toggleFieldset(el) {
- var fieldset = $(el).parents('fieldset').first();
- fieldset.toggleClass('collapsed');
- fieldset.children('div').toggle();
-}
-
-function hideFieldset(el) {
- var fieldset = $(el).parents('fieldset').first();
- fieldset.toggleClass('collapsed');
- fieldset.children('div').hide();
-}
-
-function initFilters(){
- $('#add_filter_select').change(function(){
- addFilter($(this).val(), '', []);
- });
- $('#filters-table td.field input[type=checkbox]').each(function(){
- toggleFilter($(this).val());
- });
- $('#filters-table td.field input[type=checkbox]').on('click',function(){
- toggleFilter($(this).val());
- });
- $('#filters-table .toggle-multiselect').on('click',function(){
- toggleMultiSelect($(this).siblings('select'));
- });
- $('#filters-table input[type=text]').on('keypress', function(e){
- if (e.keyCode == 13) submit_query_form("query_form");
- });
-}
-
-function addFilter(field, operator, values) {
- var fieldId = field.replace('.', '_');
- var tr = $('#tr_'+fieldId);
- if (tr.length > 0) {
- tr.show();
- } else {
- buildFilterRow(field, operator, values);
- }
- $('#cb_'+fieldId).attr('checked', true);
- toggleFilter(field);
- $('#add_filter_select').val('').children('option').each(function(){
- if ($(this).attr('value') == field) {
- $(this).attr('disabled', true);
- }
- });
-}
-
-function buildFilterRow(field, operator, values) {
- var fieldId = field.replace('.', '_');
- var filterTable = $("#filters-table");
- var filterOptions = availableFilters[field];
- var operators = operatorByType[filterOptions['type']];
- var filterValues = filterOptions['values'];
- var i, select;
-
- var tr = $('
').attr('id', 'tr_'+fieldId).html(
- ' | ' +
- ' | ' +
- ' | '
- );
- filterTable.append(tr);
-
- select = tr.find('td.operator select');
- for (i=0;i').val(operators[i]).text(operatorLabels[operators[i]]);
- if (operators[i] == operator) { option.attr('selected', true); }
- select.append(option);
- }
- select.change(function(){ toggleOperator(field); });
-
- switch (filterOptions['type']){
- case "list":
- case "list_optional":
- case "list_status":
- case "list_subprojects":
- tr.find('td.values').append(
- '' +
- ' 复选/multi-select'
- );
- select = tr.find('td.values select');
- if (values.length > 1) { select.attr('multiple', true); }
- for (i=0;i');
- if ($.isArray(filterValue)) {
- option.val(filterValue[1]).text(filterValue[0]);
- if ($.inArray(filterValue[1], values) > -1) {option.attr('selected', true);}
- } else {
- option.val(filterValue).text(filterValue);
- if ($.inArray(filterValue, values) > -1) {option.attr('selected', true);}
- }
- select.append(option);
- }
- break;
- case "date":
- case "date_past":
- tr.find('td.values').append(
- '' +
- ' ' +
- ' '+labelDayPlural+''
- );
- $('#values_'+fieldId+'_1').val(values[0]).datepicker(datepickerOptions);
- $('#values_'+fieldId+'_2').val(values[1]).datepicker(datepickerOptions);
- $('#values_'+fieldId).val(values[0]);
- break;
- case "string":
- case "text":
- tr.find('td.values').append(
- ''
- );
- $('#values_'+fieldId).val(values[0]);
- break;
- case "relation":
- tr.find('td.values').append(
- '' +
- ''
- );
- $('#values_'+fieldId).val(values[0]);
- select = tr.find('td.values select');
- for (i=0;i');
- option.val(filterValue[1]).text(filterValue[0]);
- if (values[0] == filterValue[1]) { option.attr('selected', true); }
- select.append(option);
- }
- case "integer":
- case "float":
- tr.find('td.values').append(
- '' +
- ' '
- );
- $('#values_'+fieldId+'_1').val(values[0]);
- $('#values_'+fieldId+'_2').val(values[1]);
- break;
- }
-}
-
-function toggleFilter(field) {
- var fieldId = field.replace('.', '_');
- if ($('#cb_' + fieldId).is(':checked')) {
- $("#operators_" + fieldId).show().removeAttr('disabled');
- toggleOperator(field);
- } else {
- $("#operators_" + fieldId).hide().attr('disabled', true);
- enableValues(field, []);
- }
-}
-
-function enableValues(field, indexes) {
- var fieldId = field.replace('.', '_');
- $('#tr_'+fieldId+' td.values .value').each(function(index) {
- if ($.inArray(index, indexes) >= 0) {
- $(this).removeAttr('disabled');
- $(this).parents('span').first().show();
- } else {
- $(this).val('');
- $(this).attr('disabled', true);
- $(this).parents('span').first().hide();
- }
-
- if ($(this).hasClass('group')) {
- $(this).addClass('open');
- } else {
- $(this).show();
- }
- });
-}
-
-function toggleOperator(field) {
- var fieldId = field.replace('.', '_');
- var operator = $("#operators_" + fieldId);
- switch (operator.val()) {
- case "!*":
- case "*":
- case "t":
- case "ld":
- case "w":
- case "lw":
- case "l2w":
- case "m":
- case "lm":
- case "y":
- case "o":
- case "c":
- enableValues(field, []);
- break;
- case "><":
- enableValues(field, [0,1]);
- break;
- case "t+":
- case ">t-":
- case "0) {
- lis.eq(i-1).show();
- }
-}
-
-function displayTabsButtons() {
- var lis;
- var tabsWidth = 0;
- var el;
- $('div.tabs').each(function() {
- el = $(this);
- lis = el.find('ul').children();
- lis.each(function(){
- if ($(this).is(':visible')) {
- tabsWidth += $(this).width() + 6;
- }
- });
- if ((tabsWidth < el.width() - 60) && (lis.first().is(':visible'))) {
- el.find('div.tabs-buttons').hide();
- } else {
- el.find('div.tabs-buttons').show();
- }
- });
-}
-
-function setPredecessorFieldsVisibility() {
- var relationType = $('#relation_relation_type');
- if (relationType.val() == "precedes" || relationType.val() == "follows") {
- $('#predecessor_fields').show();
- } else {
- $('#predecessor_fields').hide();
- }
-}
-
-function showModal(id, width) {
- var el = $('#'+id).first();
- if (el.length === 0 || el.is(':visible')) {return;}
- var title = el.find('h3.title').text();
- el.dialog({
- width: width,
- modal: true,
- resizable: false,
- dialogClass: 'modal',
- title: title
- });
- el.find("input[type=text], input[type=submit]").first().focus();
-}
-
-function hideModal(el) {
- var modal;
- if (el) {
- modal = $(el).parents('.ui-dialog-content');
- } else {
- modal = $('#ajax-modal');
- }
- modal.dialog("close");
-}
-
-function submitPreview(url, form, target) {
- $.ajax({
- url: url,
- type: 'post',
- data: $('#'+form).serialize(),
- success: function(data){
- $('#'+target).html(data);
- }
- });
-}
-
-function collapseScmEntry(id) {
- $('.'+id).each(function() {
- if ($(this).hasClass('open')) {
- collapseScmEntry($(this).attr('id'));
- }
- $(this).hide();
- });
- $('#'+id).removeClass('open');
-}
-
-function expandScmEntry(id) {
- $('.'+id).each(function() {
- $(this).show();
- if ($(this).hasClass('loaded') && !$(this).hasClass('collapsed')) {
- expandScmEntry($(this).attr('id'));
- }
- });
- $('#'+id).addClass('open');
-}
-
-function scmEntryClick(id, url) {
- el = $('#'+id);
- if (el.hasClass('open')) {
- collapseScmEntry(id);
- el.addClass('collapsed');
- return false;
- } else if (el.hasClass('loaded')) {
- expandScmEntry(id);
- el.removeClass('collapsed');
- return false;
- }
- if (el.hasClass('loading')) {
- return false;
- }
- el.addClass('loading');
- $.ajax({
- url: url,
- success: function(data){
- el.after(data);
- el.addClass('open').addClass('loaded').removeClass('loading');
- }
- });
- return true;
-}
-
-function randomKey(size) {
- var chars = new Array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z');
- var key = '';
- for (i = 0; i < size; i++) {
- key += chars[Math.floor(Math.random() * chars.length)];
- }
- return key;
-}
-
-// Can't use Rails' remote select because we need the form data
-function updateIssueFrom(url) {
- $.ajax({
- url: url,
- type: 'post',
- data: $('#issue-form').serialize()
- });
-}
-
-function updateBulkEditFrom(url) {
- $.ajax({
- url: url,
- type: 'post',
- data: $('#bulk_edit_form').serialize()
- });
-}
-
-function clearMessage(id) {
- $('#'+id).val("");
-}
-
-
-function observeAutocompleteField(fieldId, url, options) {
- $(document).ready(function() {
- $('#'+fieldId).autocomplete($.extend({
- source: url,
- select: function(e,ui){self.location="/issues/"+ui.item.value;},
- minLength: 1,
- search: function(){$('#'+fieldId).addClass('ajax-loading');},
- response: function(){$('#'+fieldId).removeClass('ajax-loading');
- }
- }, options));
- $('#'+fieldId).addClass('autocomplete');
-
- });
-
-}
-
-function observeSearchfield(fieldId, targetId, url) {
- $('#'+fieldId).each(function() {
- var $this = $(this);
- $this.addClass('autocomplete');
- $this.attr('data-value-was', $this.val());
- var check = function() {
- var val = $this.val();
- if ($this.attr('data-value-was') != val){
- $this.attr('data-value-was', val);
- $.ajax({
- url: url,
- type: 'get',
- data: {q: $this.val()},
- success: function(data){ if(targetId) $('#'+targetId).html(data); },
- beforeSend: function(){ $this.addClass('ajax-loading'); },
- complete: function(){ $this.removeClass('ajax-loading'); }
- });
- }
- };
- var reset = function() {
- if (timer) {
- clearInterval(timer);
- timer = setInterval(check, 300);
- }
- };
- var timer = setInterval(check, 300);
- $this.bind('keyup click mousemove', reset);
- });
-}
-
-function observeProjectModules() {
- var f = function() {
- /* Hides trackers and issues custom fields on the new project form when issue_tracking module is disabled */
- if ($('#project_enabled_module_names_issue_tracking').attr('checked')) {
- $('#project_trackers').show();
- }else{
- $('#project_trackers').hide();
- }
- };
-
- $(window).load(f);
- $('#project_enabled_module_names_issue_tracking').change(f);
-}
-
-function initMyPageSortable(list, url) {
- $('#list-'+list).sortable({
- connectWith: '.block-receiver',
- tolerance: 'pointer',
- update: function(){
- $.ajax({
- url: url,
- type: 'post',
- data: {'blocks': $.map($('#list-'+list).children(), function(el){return $(el).attr('id');})}
- });
- }
- });
- $("#list-top, #list-left, #list-right").disableSelection();
-}
-
-var warnLeavingUnsavedMessage;
-function warnLeavingUnsaved(message) {
- warnLeavingUnsavedMessage = message;
-
- $('form').submit(function(){
- $('textarea').removeData('changed');
- });
- $('textarea').change(function(){
- $(this).data('changed', 'changed');
- });
- window.onbeforeunload = function(){
- var warn = false;
- $('textarea').blur().each(function(){
- if ($(this).data('changed')) {
- warn = true;
- }
- });
- if (warn) {return warnLeavingUnsavedMessage;}
- };
-}
-
-function setupHeartBeat(){
- var time = 60*1000*30; // 30 mins
- setInterval(function(){$.getJSON('/account/heartbeat');},time);
-}
-
-function setupAjaxIndicator() {
- $('#ajax-indicator').bind('ajaxSend', function(event, xhr, settings) {
- if(settings && settings.url && settings.url.match(/account\/heartbeat$/)){
- return;
- }
- if ($('.ajax-loading').length === 0 && settings.contentType != 'application/octet-stream') {
- $('#ajax-indicator').show();
- }
- });
-
- $('#ajax-indicator').bind('ajaxStop', function() {
- $('#ajax-indicator').hide();
- if(MathJax && MathJax.Hub)
- MathJax.Hub.Queue(['Typeset', MathJax.Hub]); //如果是ajax刷新页面的话,手动执行MathJax的公式显示
- try{
- prettyPrint(); //如果刷新出来的页面如果存在代码行的话,也需要美化
- }catch (e){
-
- }
- });
-}
-
-function hideOnLoad() {
- $('.hol').hide();
-}
-
-function addFormObserversForDoubleSubmit() {
- $('form[method=post]').each(function() {
- if (!$(this).hasClass('multiple-submit')) {
- $(this).submit(function(form_submission) {
- if ($(form_submission.target).attr('data-submitted')) {
- form_submission.preventDefault();
- } else {
- $(form_submission.target).attr('data-submitted', true);
- }
- });
- }
- });
-}
-
-function blockEventPropagation(event) {
- event.stopPropagation();
- event.preventDefault();
-}
-
-function toggleAndSettingWordsVal(parent_widget, text_widget, value){
- text_widget.val(value)
- parent_widget.slideToggle(400)
-}
-function transpotUrl (scope) {
- $(scope).each(function(){
- var tmpContent = $(this).html();
- tmpContent = tmpContent.replace(/(^|[^\"\'])(http|ftp|mms|rstp|news|https)(\:\/\/[^<\s\+,,]+)/gi,"$1$2$3<\/a>");
- // tmpContent = tmpContent.replace(/(^|[^\/])(www\.[^<\s\+,,]+)/gi,"$1$2");
- $(this).html(tmpContent);
- });
-}
-
-$(document).ready(setupAjaxIndicator);
-$(document).ready(setupHeartBeat);
-$(document).ready(hideOnLoad);
-$(document).ready(addFormObserversForDoubleSubmit);
-
-function img_thumbnails() {
- $('.thumbnails a').colorbox({rel:'nofollow'});
- $('.attachments').find('a').each(function(index, element) {
- var href_value = $(element).attr('href');
- if (/\.(jpg|png|gif|bmp|jpeg|PNG|BMP|GIF|JPG|JPEG)$/.test(href_value)) {
- $(element).colorbox({rel:'nofollow'});
- }
- });
- $('.for_img_thumbnails').find('a').each(function(index, element) {
- var href_value = $(element).attr('href');
- if (/\.(jpg|png|gif|bmp|jpeg|PNG|BMP|GIF|JPG|JPEG)$/.test(href_value)) {
- $(element).colorbox({rel:'nofollow'});
- }
- });
-}
-$(document).ready(img_thumbnails);
-
-function TimeClose(dateText, inst) {
- if(inst.id=="issue_start_date"){
- time=dateText;
- }
-}
-var time=new Date();
-function TimeBeforeShow(input){
- if(input.id=="issue_due_date"){
- //var minDate = $(input).datepicker('option', 'minDate');
- var tempdata=$("#issue_start_date").attr("value");
-
- $(input).datepicker('option', 'minDate',new Date(tempdata.replace(/-/g, "/")));
- //$('.selector').datepicker('option', 'minDate', '12/25/2012');
- }
-}
-
-function SetMinValue(){
- /// var tempdata=$("#issue_start_date").attr("value");
- //$('.selector').datepicker('option', 'minDate', '12/25/2012');
- //alert(tempdata);
- //$("#issue_due_date").datepicker({
- // minDate: new Date(2014,08,23)
- //var datepickerOptions=
- //{dateFormat: 'yy-mm-dd',minDate: new Date(2014,08,23), showOn: 'button', buttonImageOnly: true, buttonImage: "path_to_image('/images/calendar.png')", showButtonPanel: true, showWeek: true, showOtherMonths: true, selectOtherMonths: true};
- //alert( $('.issue_due_date').length);
- //$('.selector')[1].datepicker('option', 'minDate', new Date(2014, 0 - 8, 23));
- //$("#issue_due_date").datepicker(datepickerOptions);
- //$("##{issue_due_date}").datepicker(datepickerOptions);
- //$("#issue_due_date").datepicker(
- // {dateFormat: 'yy-mm-dd',minDate: new Date(2014,08,23), showOn: 'button', buttonImageOnly: true, buttonImage: "path_to_image('/images/calendar.png')", showButtonPanel: true, showWeek: true, showOtherMonths: true, selectOtherMonths: true}
- //)
- //});
-}
-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");
- }
-}
-
-//added by lizanle 日期選擇js
-function HS_DateAdd(interval,number,date){
- number = parseInt(number);
- if (typeof(date)=="string"){var date = new Date(date.split("-")[0],date.split("-")[1],date.split("-")[2])}
- if (typeof(date)=="object"){var date = date}
- switch(interval){
- case "y":return new Date(date.getFullYear()+number,date.getMonth(),date.getDate()); break;
- case "m":return new Date(date.getFullYear(),date.getMonth()+number,checkDate(date.getFullYear(),date.getMonth()+number,date.getDate())); break;
- case "d":return new Date(date.getFullYear(),date.getMonth(),date.getDate()+number); break;
- case "w":return new Date(date.getFullYear(),date.getMonth(),7*number+date.getDate()); break;
- }
-}
-function checkDate(year,month,date){
- var enddate = ["31","28","31","30","31","30","31","31","30","31","30","31"];
- var returnDate = "";
- if (year%4==0){enddate[1]="29"}
- if (date>enddate[month]){returnDate = enddate[month]}else{returnDate = date}
- return returnDate;
-}
-
-function WeekDay(date){
- var theDate;
- if (typeof(date)=="string"){theDate = new Date(date.split("-")[0],date.split("-")[1],date.split("-")[2]);}
- if (typeof(date)=="object"){theDate = date}
- return theDate.getDay();
-}
-function HS_calender(){
- var lis = "";
- var style = "";
- /*可以把下面的css剪切出去独立一个css文件*/
- style +="";
-
- var now;
- if (typeof(arguments[0])=="string"){
- selectDate = arguments[0].split("-");
- var year = selectDate[0];
- var month = parseInt(selectDate[1])-1+"";
- var date = selectDate[2];
- now = new Date(year,month,date);
- }else if (typeof(arguments[0])=="object"){
- now = arguments[0];
- }
- var lastMonthEndDate = HS_DateAdd("d","-1",now.getFullYear()+"-"+now.getMonth()+"-01").getDate();
- var lastMonthDate = WeekDay(now.getFullYear()+"-"+now.getMonth()+"-01");
- var thisMonthLastDate = HS_DateAdd("d","-1",now.getFullYear()+"-"+(parseInt(now.getMonth())+1).toString()+"-01");
- var thisMonthEndDate = thisMonthLastDate.getDate();
- var thisMonthEndDay = thisMonthLastDate.getDay();
- var todayObj = new Date();
- today = todayObj.getFullYear()+"-"+todayObj.getMonth()+"-"+todayObj.getDate();
-
- for (i=0; i" + lis;
- lastMonthEndDate--;
- }
- for (i=1; i<=thisMonthEndDate; i++){ // Current Month's Date
-
- if(today == now.getFullYear()+"-"+now.getMonth()+"-"+i){
- var todayString = now.getFullYear()+"-"+(parseInt(now.getMonth())+1).toString()+"-"+i;
- lis += ""+i+"";
- }else{
- lis += ""+i+"";
- }
-
- }
- var j=1;
- for (i=thisMonthEndDay; i<6; i++){ // Next Month's Date
- lis += ""+j+"";
- j++;
- }
- lis += style;
-
- var CalenderTitle = "»";
- CalenderTitle += "«";
- CalenderTitle += ""+now.getFullYear()+"年"+(parseInt(now.getMonth())+1).toString()+"月";
-
- if (arguments.length>1){
- arguments[1].parentNode.parentNode.getElementsByTagName("ul")[1].innerHTML = lis;
- arguments[1].parentNode.innerHTML = CalenderTitle;
-
- }else{
- var CalenderBox = style+"";
- return CalenderBox;
- }
-}
-function _selectThisDay(d){
- var boxObj = d.parentNode.parentNode.parentNode.parentNode.parentNode;
- boxObj.targetObj.value = d.title;
- boxObj.parentNode.removeChild(boxObj);
-}
-function closeCalender(d){
- var boxObj = d.parentNode.parentNode.parentNode;
- boxObj.parentNode.removeChild(boxObj);
-}
-
-function CalenderselectYear(obj){
- var opt = "";
- var thisYear = obj.innerHTML;
- for (i=1970; i<=2020; i++){
- if (i==thisYear){
- opt += "";
- }else{
- opt += "";
- }
- }
- opt = "";
- obj.parentNode.innerHTML = opt;
-}
-
-function selectThisYear(obj){
- HS_calender(obj.value+"-"+obj.parentNode.parentNode.getElementsByTagName("span")[1].getElementsByTagName("a")[0].innerHTML+"-1",obj.parentNode);
-}
-
-function CalenderselectMonth(obj){
- var opt = "";
- var thisMonth = obj.innerHTML;
- for (i=1; i<=12; i++){
- if (i==thisMonth){
- opt += "";
- }else{
- opt += "";
- }
- }
- opt = "";
- obj.parentNode.innerHTML = opt;
-}
-function selectThisMonth(obj){
- HS_calender(obj.parentNode.parentNode.getElementsByTagName("span")[0].getElementsByTagName("a")[0].innerHTML+"-"+obj.value+"-1",obj.parentNode);
-}
-function HS_setDate(inputObj){
- var calenderObj = document.createElement("span");
- calenderObj.innerHTML = HS_calender(new Date());
- calenderObj.style.position = "absolute";
- calenderObj.targetObj = inputObj;
- inputObj.parentNode.insertBefore(calenderObj,inputObj.nextSibling);
-}
-//lizanle 刷新函数
-function redo() {
- window.location.reload()
-}
-
-function encodeHomeworkUrl(url, is_base64){
- if(typeof is_base64 === 'boolean' && is_base64){
- return '/zipdown/download?base64file='+url;
- }
- var file = encodeURI(url).replace(/\+/g, '%2B');
- return '/zipdown/download?file='+file;
-}
-
-//// 作业附件删除
-$(function(){
- $('.attachments a.delete-homework-icon').bind('ajax:complete', //this will work
- function(event, data, status, xhr) { //note parametes
- $(this).parent('p').remove();
- console.log("delete complete.");
- });
-
- $('a.tb_all').bind('ajax:complete', function (event, data, status, xhr) {
- if(status == 'success'){
- var res = JSON.parse(data.responseText);
- if(res.length<1){
- return;
- }
-
- if(res.length==1){
- if(res[0].base64file){
- location.href = encodeHomeworkUrl(res[0].base64file, true);return;
- }
- location.href = encodeHomeworkUrl(res[0].file);return;
- }
-
- document.getElementById('light').style.display='block';
- $container = $('#light .upload_box_ul');
- $container.empty();
- for(var i = 0; i 1){
- des = '第'+res[i].index+'-'+(res[i].count+res[i].index-1)+'个学生的作品下载';
- } else {
- des = '第'+res[i].index+'个学生的作品下载';
- }
-
- if(res[i].base64file){
- $(''+(i+1)+'. '+des+' (共'+res[i].size+'M) ').appendTo($container);
- } else {
- $(''+(i+1)+'. '+des+' (共'+res[i].size+'M) ').appendTo($container);
- }
- }
- }
- });
- $('#download_homework_attachments').bind('ajax:complete', function (event, data, status, xhr) {
- if(status == 'success'){
- var res = JSON.parse(data.responseText);
- if(res.length == null){
- alert("该作业没有任何附件可下载");
- }
- else if(res.length<1){
- return;
- }
- else
- {
- if(res.length==1){
- if(res[0].base64file){
- location.href = encodeHomeworkUrl(res[0].base64file, true);return;
- }
- location.href = encodeHomeworkUrl(res[0].file);return;
- }
- document.getElementById('light').style.display='block';
- $container = $('#light .upload_box_ul');
- $container.empty();
- for(var i = 0; i 1){
- des = '第'+res[i].index+'-'+(res[i].count+res[i].index-1)+'个学生的作品下载';
- } else {
- des = '第'+res[i].index+'个学生的作品下载';
- }
-
- if(res[i].base64file){
- $(''+(i+1)+'. '+des+' (共'+res[i].size+'M) ').appendTo($container);
- } else {
- $(''+(i+1)+'. '+des+' (共'+res[i].size+'M) ').appendTo($container);
- }
-
- }
- }
- }
- });
-});
-
-
-//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");
- }
-});
-
-//点击发送资源弹出框中的组织,要更改选择栏目中的内容
-//@dom 选中的radio,值为org_id
-function change_org_subfield(url){
- $.ajax({
- type:'get',
- url:url
- })
-}
-
-//点击图片即显示大图
-function showNormalImage(id) {
- var description_images=$('div#'+id).find("img");
- if (description_images.length>0) {
- for (var i=0; i").attr("href",image.attr('src'));
- image.wrap(element);
- $(image).parent().colorbox({rel:'nofollow', close: "关闭", returnFocus: false});
- }
- //$('#'+id+' a').colorbox({rel:'nofollow', close: "关闭", returnFocus: false}); //有图片才将链接变为弹出框
- }
-
-}
-
-//文件、帖子、通知分享
-function org_id_click(){
- var sendText = $("input[name='org_id']:checked").next().text();
- var orgDirection = "目标地址:";
- $(".orgDirection").text(orgDirection + sendText);
-}
-function subfield_click(){
- var sendText = $("input[name='org_id']:checked").next().text();
- var orgDirection = "目标地址:";
- var sendColumn = $("input[name='subfield']:checked").next().text();
- $(".orgDirection").text(orgDirection + sendText + " / " + sendColumn);
-}
-
-//send_type:发送的类型,file对应文件,message对应帖子,news对应通知或新闻
-function observeSearchfieldOnInput(fieldId, url,send_id,send_ids, send_type) {
- $('#'+fieldId).each(function() {
- var $this = $(this);
- $this.addClass('autocomplete');
- $this.attr('data-value-was', $this.val());
- var check = function() {
- var val = $this.val();
- if ($this.attr('data-value-was') != val){
- $this.attr('data-value-was', val);
- $.ajax({
- url: url,
- type: 'get',
- data: {search: $this.val(),send_id:send_id,send_ids:send_ids, send_type:send_type},
- success: function(data){ },
- beforeSend: function(){ $this.addClass('ajax-loading'); },
- complete: function(){ $this.removeClass('ajax-loading'); }
- });
- }
- };
- var reset = function() {
- if (timer) {
- clearInterval(timer);
- timer = setInterval(check, 300);
- }
- };
- var timer = setInterval(check, 300);
- $this.bind('keyup click mousemove', reset);
- });
-}
-function check_des(event){
- if($(".sectionContent").find('input[type="radio"]:checked').length <= 0){
- event.preventDefault();
- $(".orgDirection").text('目标地址组织不能为空');
- return false;
- }else if($(".columnContent").find('input[type="radio"]:checked').length <= 0){
- event.preventDefault();
- $(".orgDirection").text('目标地址栏目不能为空');
- return false;
- }else{
- return true;
- }
-}
-
-var sendType = '1';
-var lastSendType ;//初始为发送到我的课程
-function show_send(id, user_id, send_type){
- if (lastSendType === '2'){ //如果已经发送过一次了,那么就应该沿用上次发送的类型。
- $.ajax({
- type: 'get',
- url: '/users/' + user_id + '/search_user_project',
- data:{send_id:id, send_type:send_type}
- });
- }else if(lastSendType == '1'){
- $.ajax({
- type: 'get',
- url: '/users/' + user_id + '/search_user_course',
- data:{send_id:id, send_type:send_type}
- });
- }else if( lastSendType == '3'){//组织
- $.ajax({
- type: 'get',
- url: '/users/' + user_id + '/search_user_org',
- data:{send_id:id, send_type:send_type}
- });
- }else{
- $.ajax({
- type: 'get',
- url: '/users/' + user_id + '/search_user_course',
- data:{send_id:id, send_type:send_type}
- });
- }
-}
-
-//id 发送的id
-//发送的id数组
-//send_type:发送的类型,file对应文件,message对应帖子,news对应通知或新闻
-function chooseSendType(res_id,res_ids, user_id, send_type){
-
- sendType = $(".resourcesSendType").val();
- if (sendType === lastSendType) {
- return;
- } else if(lastSendType != null) { //不是第一次点击的时候
- if (sendType == '1') {
- $.ajax({
- type: 'get',
- url: '/users/' + user_id + '/search_user_course',
- data:{send_id:res_id, send_type:send_type}
- });
- } else if(sendType == '2') {
- $.ajax({
- type: 'get',
- url: '/users/' + user_id + '/search_user_project',
- data:{send_id:res_id, send_type:send_type}
- });
- }else if(sendType == '3'){
- $.ajax({
- type: 'get',
- url: '/users/' + user_id + '/search_user_org',
- data:{send_id:res_id, send_type:send_type}
- });
- }
- }
- lastSendType = sendType;
-}
-
-//组织新建和配置中,选择组织为私有后,disbled掉允许游客下载选项
-function disable_down(source, des, hint){
- if (source.attr("checked")){
- des.attr("disabled", false);
- hint.html("");
- }
- else{
- des.attr("checked", false);
- des.attr("disabled", true);
- hint.html("(私有组织不允许游客下载资源)");
-
- }
-}
+//= require_directory ./rateable
+//= require jquery.min
+//= require jquery.infinitescroll
+
+/* Redmine - project management software
+ Copyright (C) 2006-2013 Jean-Philippe Lang */
+
+//动态高度控制
+function description_show_hide(id){
+ showNormalImage('activity_description_'+id);
+ if($("#intro_content_"+id).height() > 810) {
+ $("#intro_content_show_"+id).show();
+ }
+ $("#intro_content_show_"+id).click(function(){
+ $("#activity_description_"+id).toggleClass("maxh360");
+ $("#intro_content_show_"+id).hide();
+ $("#intro_content_hide_"+id).show();
+ });
+ $("#intro_content_hide_"+id).click(function(){
+ $("#activity_description_"+id).toggleClass("maxh360");
+ $("#intro_content_hide_"+id).hide();
+ $("#intro_content_show_"+id).show();
+ });
+}
+
+function cleanArray (actual){
+ var newArray = new Array();
+ for (var i = 0; i< actual.length; i++){
+ if (actual[i]){
+ newArray.push(actual[i]);
+ }
+ }
+ return newArray;
+}
+
+function checkAll(id, checked) {
+ if (checked) {
+ $('#'+id).find('input[type=checkbox]').attr('checked', true);
+ } else {
+ $('#'+id).find('input[type=checkbox]').removeAttr('checked');
+ }
+}
+
+function toggleCheckboxesBySelector(selector) {
+ var all_checked = true;
+ $(selector).each(function(index) {
+ if (!$(this).is(':checked')) { all_checked = false; }
+ });
+ $(selector).attr('checked', !all_checked);
+}
+
+function showAndScrollTo(id, focus) {
+ $('#'+id).show();
+ if (focus !== null) {
+ $('#'+focus).focus();
+ }
+ $('html, body').animate({scrollTop: $('#'+id).offset().top}, 400);
+}
+
+function toggleRowGroup(el) {
+ var tr = $(el).parents('tr').first();
+ var n = tr.next();
+ tr.toggleClass('open');
+ while (n.length && !n.hasClass('group')) {
+ n.toggle();
+ n = n.next('tr');
+ }
+}
+
+function collapseAllRowGroups(el) {
+ var tbody = $(el).parents('tbody').first();
+ tbody.children('tr').each(function(index) {
+ if ($(this).hasClass('group')) {
+ $(this).removeClass('open');
+ } else {
+ $(this).hide();
+ }
+ });
+}
+
+function expandAllRowGroups(el) {
+ var tbody = $(el).parents('tbody').first();
+ tbody.children('tr').each(function(index) {
+ if ($(this).hasClass('group')) {
+ $(this).addClass('open');
+ } else {
+ $(this).show();
+ }
+ });
+}
+
+function toggleAllRowGroups(el) {
+ var tr = $(el).parents('tr').first();
+ if (tr.hasClass('open')) {
+ collapseAllRowGroups(el);
+ } else {
+ expandAllRowGroups(el);
+ }
+}
+
+function toggleFieldset(el) {
+ var fieldset = $(el).parents('fieldset').first();
+ fieldset.toggleClass('collapsed');
+ fieldset.children('div').toggle();
+}
+
+function hideFieldset(el) {
+ var fieldset = $(el).parents('fieldset').first();
+ fieldset.toggleClass('collapsed');
+ fieldset.children('div').hide();
+}
+
+function initFilters(){
+ $('#add_filter_select').change(function(){
+ addFilter($(this).val(), '', []);
+ });
+ $('#filters-table td.field input[type=checkbox]').each(function(){
+ toggleFilter($(this).val());
+ });
+ $('#filters-table td.field input[type=checkbox]').on('click',function(){
+ toggleFilter($(this).val());
+ });
+ $('#filters-table .toggle-multiselect').on('click',function(){
+ toggleMultiSelect($(this).siblings('select'));
+ });
+ $('#filters-table input[type=text]').on('keypress', function(e){
+ if (e.keyCode == 13) submit_query_form("query_form");
+ });
+}
+
+function addFilter(field, operator, values) {
+ var fieldId = field.replace('.', '_');
+ var tr = $('#tr_'+fieldId);
+ if (tr.length > 0) {
+ tr.show();
+ } else {
+ buildFilterRow(field, operator, values);
+ }
+ $('#cb_'+fieldId).attr('checked', true);
+ toggleFilter(field);
+ $('#add_filter_select').val('').children('option').each(function(){
+ if ($(this).attr('value') == field) {
+ $(this).attr('disabled', true);
+ }
+ });
+}
+
+function buildFilterRow(field, operator, values) {
+ var fieldId = field.replace('.', '_');
+ var filterTable = $("#filters-table");
+ var filterOptions = availableFilters[field];
+ var operators = operatorByType[filterOptions['type']];
+ var filterValues = filterOptions['values'];
+ var i, select;
+
+ var tr = $('').attr('id', 'tr_'+fieldId).html(
+ ' | ' +
+ ' | ' +
+ ' | '
+ );
+ filterTable.append(tr);
+
+ select = tr.find('td.operator select');
+ for (i=0;i').val(operators[i]).text(operatorLabels[operators[i]]);
+ if (operators[i] == operator) { option.attr('selected', true); }
+ select.append(option);
+ }
+ select.change(function(){ toggleOperator(field); });
+
+ switch (filterOptions['type']){
+ case "list":
+ case "list_optional":
+ case "list_status":
+ case "list_subprojects":
+ tr.find('td.values').append(
+ '' +
+ ' 复选/multi-select'
+ );
+ select = tr.find('td.values select');
+ if (values.length > 1) { select.attr('multiple', true); }
+ for (i=0;i');
+ if ($.isArray(filterValue)) {
+ option.val(filterValue[1]).text(filterValue[0]);
+ if ($.inArray(filterValue[1], values) > -1) {option.attr('selected', true);}
+ } else {
+ option.val(filterValue).text(filterValue);
+ if ($.inArray(filterValue, values) > -1) {option.attr('selected', true);}
+ }
+ select.append(option);
+ }
+ break;
+ case "date":
+ case "date_past":
+ tr.find('td.values').append(
+ '' +
+ ' ' +
+ ' '+labelDayPlural+''
+ );
+ $('#values_'+fieldId+'_1').val(values[0]).datepicker(datepickerOptions);
+ $('#values_'+fieldId+'_2').val(values[1]).datepicker(datepickerOptions);
+ $('#values_'+fieldId).val(values[0]);
+ break;
+ case "string":
+ case "text":
+ tr.find('td.values').append(
+ ''
+ );
+ $('#values_'+fieldId).val(values[0]);
+ break;
+ case "relation":
+ tr.find('td.values').append(
+ '' +
+ ''
+ );
+ $('#values_'+fieldId).val(values[0]);
+ select = tr.find('td.values select');
+ for (i=0;i');
+ option.val(filterValue[1]).text(filterValue[0]);
+ if (values[0] == filterValue[1]) { option.attr('selected', true); }
+ select.append(option);
+ }
+ case "integer":
+ case "float":
+ tr.find('td.values').append(
+ '' +
+ ' '
+ );
+ $('#values_'+fieldId+'_1').val(values[0]);
+ $('#values_'+fieldId+'_2').val(values[1]);
+ break;
+ }
+}
+
+function toggleFilter(field) {
+ var fieldId = field.replace('.', '_');
+ if ($('#cb_' + fieldId).is(':checked')) {
+ $("#operators_" + fieldId).show().removeAttr('disabled');
+ toggleOperator(field);
+ } else {
+ $("#operators_" + fieldId).hide().attr('disabled', true);
+ enableValues(field, []);
+ }
+}
+
+function enableValues(field, indexes) {
+ var fieldId = field.replace('.', '_');
+ $('#tr_'+fieldId+' td.values .value').each(function(index) {
+ if ($.inArray(index, indexes) >= 0) {
+ $(this).removeAttr('disabled');
+ $(this).parents('span').first().show();
+ } else {
+ $(this).val('');
+ $(this).attr('disabled', true);
+ $(this).parents('span').first().hide();
+ }
+
+ if ($(this).hasClass('group')) {
+ $(this).addClass('open');
+ } else {
+ $(this).show();
+ }
+ });
+}
+
+function toggleOperator(field) {
+ var fieldId = field.replace('.', '_');
+ var operator = $("#operators_" + fieldId);
+ switch (operator.val()) {
+ case "!*":
+ case "*":
+ case "t":
+ case "ld":
+ case "w":
+ case "lw":
+ case "l2w":
+ case "m":
+ case "lm":
+ case "y":
+ case "o":
+ case "c":
+ enableValues(field, []);
+ break;
+ case "><":
+ enableValues(field, [0,1]);
+ break;
+ case "t+":
+ case ">t-":
+ case "0) {
+ lis.eq(i-1).show();
+ }
+}
+
+function displayTabsButtons() {
+ var lis;
+ var tabsWidth = 0;
+ var el;
+ $('div.tabs').each(function() {
+ el = $(this);
+ lis = el.find('ul').children();
+ lis.each(function(){
+ if ($(this).is(':visible')) {
+ tabsWidth += $(this).width() + 6;
+ }
+ });
+ if ((tabsWidth < el.width() - 60) && (lis.first().is(':visible'))) {
+ el.find('div.tabs-buttons').hide();
+ } else {
+ el.find('div.tabs-buttons').show();
+ }
+ });
+}
+
+function setPredecessorFieldsVisibility() {
+ var relationType = $('#relation_relation_type');
+ if (relationType.val() == "precedes" || relationType.val() == "follows") {
+ $('#predecessor_fields').show();
+ } else {
+ $('#predecessor_fields').hide();
+ }
+}
+
+function showModal(id, width) {
+ var el = $('#'+id).first();
+ if (el.length === 0 || el.is(':visible')) {return;}
+ var title = el.find('h3.title').text();
+ el.dialog({
+ width: width,
+ modal: true,
+ resizable: false,
+ dialogClass: 'modal',
+ title: title
+ });
+ el.find("input[type=text], input[type=submit]").first().focus();
+}
+
+function hideModal(el) {
+ var modal;
+ if (el) {
+ modal = $(el).parents('.ui-dialog-content');
+ } else {
+ modal = $('#ajax-modal');
+ }
+ modal.dialog("close");
+}
+
+function submitPreview(url, form, target) {
+ $.ajax({
+ url: url,
+ type: 'post',
+ data: $('#'+form).serialize(),
+ success: function(data){
+ $('#'+target).html(data);
+ }
+ });
+}
+
+function collapseScmEntry(id) {
+ $('.'+id).each(function() {
+ if ($(this).hasClass('open')) {
+ collapseScmEntry($(this).attr('id'));
+ }
+ $(this).hide();
+ });
+ $('#'+id).removeClass('open');
+}
+
+function expandScmEntry(id) {
+ $('.'+id).each(function() {
+ $(this).show();
+ if ($(this).hasClass('loaded') && !$(this).hasClass('collapsed')) {
+ expandScmEntry($(this).attr('id'));
+ }
+ });
+ $('#'+id).addClass('open');
+}
+
+function scmEntryClick(id, url) {
+ el = $('#'+id);
+ if (el.hasClass('open')) {
+ collapseScmEntry(id);
+ el.addClass('collapsed');
+ return false;
+ } else if (el.hasClass('loaded')) {
+ expandScmEntry(id);
+ el.removeClass('collapsed');
+ return false;
+ }
+ if (el.hasClass('loading')) {
+ return false;
+ }
+ el.addClass('loading');
+ $.ajax({
+ url: url,
+ success: function(data){
+ el.after(data);
+ el.addClass('open').addClass('loaded').removeClass('loading');
+ }
+ });
+ return true;
+}
+
+function randomKey(size) {
+ var chars = new Array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z');
+ var key = '';
+ for (i = 0; i < size; i++) {
+ key += chars[Math.floor(Math.random() * chars.length)];
+ }
+ return key;
+}
+
+// Can't use Rails' remote select because we need the form data
+function updateIssueFrom(url) {
+ $.ajax({
+ url: url,
+ type: 'post',
+ data: $('#issue-form').serialize()
+ });
+}
+
+function updateBulkEditFrom(url) {
+ $.ajax({
+ url: url,
+ type: 'post',
+ data: $('#bulk_edit_form').serialize()
+ });
+}
+
+function clearMessage(id) {
+ $('#'+id).val("");
+}
+
+
+function observeAutocompleteField(fieldId, url, options) {
+ $(document).ready(function() {
+ $('#'+fieldId).autocomplete($.extend({
+ source: url,
+ select: function(e,ui){self.location="/issues/"+ui.item.value;},
+ minLength: 1,
+ search: function(){$('#'+fieldId).addClass('ajax-loading');},
+ response: function(){$('#'+fieldId).removeClass('ajax-loading');
+ }
+ }, options));
+ $('#'+fieldId).addClass('autocomplete');
+
+ });
+
+}
+
+function observeSearchfield(fieldId, targetId, url) {
+ $('#'+fieldId).each(function() {
+ var $this = $(this);
+ $this.addClass('autocomplete');
+ $this.attr('data-value-was', $this.val());
+ var check = function() {
+ var val = $this.val();
+ if ($this.attr('data-value-was') != val){
+ $this.attr('data-value-was', val);
+ $.ajax({
+ url: url,
+ type: 'get',
+ data: {q: $this.val()},
+ success: function(data){ if(targetId) $('#'+targetId).html(data); },
+ beforeSend: function(){ $this.addClass('ajax-loading'); },
+ complete: function(){ $this.removeClass('ajax-loading'); }
+ });
+ }
+ };
+ var reset = function() {
+ if (timer) {
+ clearInterval(timer);
+ timer = setInterval(check, 300);
+ }
+ };
+ var timer = setInterval(check, 300);
+ $this.bind('keyup click mousemove', reset);
+ });
+}
+
+function observeProjectModules() {
+ var f = function() {
+ /* Hides trackers and issues custom fields on the new project form when issue_tracking module is disabled */
+ if ($('#project_enabled_module_names_issue_tracking').attr('checked')) {
+ $('#project_trackers').show();
+ }else{
+ $('#project_trackers').hide();
+ }
+ };
+
+ $(window).load(f);
+ $('#project_enabled_module_names_issue_tracking').change(f);
+}
+
+function initMyPageSortable(list, url) {
+ $('#list-'+list).sortable({
+ connectWith: '.block-receiver',
+ tolerance: 'pointer',
+ update: function(){
+ $.ajax({
+ url: url,
+ type: 'post',
+ data: {'blocks': $.map($('#list-'+list).children(), function(el){return $(el).attr('id');})}
+ });
+ }
+ });
+ $("#list-top, #list-left, #list-right").disableSelection();
+}
+
+var warnLeavingUnsavedMessage;
+function warnLeavingUnsaved(message) {
+ warnLeavingUnsavedMessage = message;
+
+ $('form').submit(function(){
+ $('textarea').removeData('changed');
+ });
+ $('textarea').change(function(){
+ $(this).data('changed', 'changed');
+ });
+ window.onbeforeunload = function(){
+ var warn = false;
+ $('textarea').blur().each(function(){
+ if ($(this).data('changed')) {
+ warn = true;
+ }
+ });
+ if (warn) {return warnLeavingUnsavedMessage;}
+ };
+}
+
+function setupHeartBeat(){
+ var time = 60*1000*30; // 30 mins
+ setInterval(function(){$.getJSON('/account/heartbeat');},time);
+}
+
+function setupAjaxIndicator() {
+ $('#ajax-indicator').bind('ajaxSend', function(event, xhr, settings) {
+ if(settings && settings.url && settings.url.match(/account\/heartbeat$/)){
+ return;
+ }
+ if ($('.ajax-loading').length === 0 && settings.contentType != 'application/octet-stream') {
+ $('#ajax-indicator').show();
+ }
+ });
+
+ $('#ajax-indicator').bind('ajaxStop', function() {
+ $('#ajax-indicator').hide();
+ if(MathJax && MathJax.Hub)
+ MathJax.Hub.Queue(['Typeset', MathJax.Hub]); //如果是ajax刷新页面的话,手动执行MathJax的公式显示
+ try{
+ prettyPrint(); //如果刷新出来的页面如果存在代码行的话,也需要美化
+ }catch (e){
+
+ }
+ });
+}
+
+function hideOnLoad() {
+ $('.hol').hide();
+}
+
+function addFormObserversForDoubleSubmit() {
+ $('form[method=post]').each(function() {
+ if (!$(this).hasClass('multiple-submit')) {
+ $(this).submit(function(form_submission) {
+ if ($(form_submission.target).attr('data-submitted')) {
+ form_submission.preventDefault();
+ } else {
+ $(form_submission.target).attr('data-submitted', true);
+ }
+ });
+ }
+ });
+}
+
+function blockEventPropagation(event) {
+ event.stopPropagation();
+ event.preventDefault();
+}
+
+function toggleAndSettingWordsVal(parent_widget, text_widget, value){
+ text_widget.val(value)
+ parent_widget.slideToggle(400)
+}
+function transpotUrl (scope) {
+ $(scope).each(function(){
+ var tmpContent = $(this).html();
+ tmpContent = tmpContent.replace(/(^|[^\"\'])(http|ftp|mms|rstp|news|https)(\:\/\/[^<\s\+,,]+)/gi,"$1$2$3<\/a>");
+ // tmpContent = tmpContent.replace(/(^|[^\/])(www\.[^<\s\+,,]+)/gi,"$1$2");
+ $(this).html(tmpContent);
+ });
+}
+
+$(document).ready(setupAjaxIndicator);
+$(document).ready(setupHeartBeat);
+$(document).ready(hideOnLoad);
+$(document).ready(addFormObserversForDoubleSubmit);
+
+function img_thumbnails() {
+ $('.thumbnails a').colorbox({rel:'nofollow'});
+ $('.attachments').find('a').each(function(index, element) {
+ var href_value = $(element).attr('href');
+ if (/\.(jpg|png|gif|bmp|jpeg|PNG|BMP|GIF|JPG|JPEG)$/.test(href_value)) {
+ $(element).colorbox({rel:'nofollow'});
+ }
+ });
+ $('.for_img_thumbnails').find('a').each(function(index, element) {
+ var href_value = $(element).attr('href');
+ if (/\.(jpg|png|gif|bmp|jpeg|PNG|BMP|GIF|JPG|JPEG)$/.test(href_value)) {
+ $(element).colorbox({rel:'nofollow'});
+ }
+ });
+}
+$(document).ready(img_thumbnails);
+
+function TimeClose(dateText, inst) {
+ if(inst.id=="issue_start_date"){
+ time=dateText;
+ }
+}
+var time=new Date();
+function TimeBeforeShow(input){
+ if(input.id=="issue_due_date"){
+ //var minDate = $(input).datepicker('option', 'minDate');
+ var tempdata=$("#issue_start_date").attr("value");
+
+ $(input).datepicker('option', 'minDate',new Date(tempdata.replace(/-/g, "/")));
+ //$('.selector').datepicker('option', 'minDate', '12/25/2012');
+ }
+}
+
+function SetMinValue(){
+ /// var tempdata=$("#issue_start_date").attr("value");
+ //$('.selector').datepicker('option', 'minDate', '12/25/2012');
+ //alert(tempdata);
+ //$("#issue_due_date").datepicker({
+ // minDate: new Date(2014,08,23)
+ //var datepickerOptions=
+ //{dateFormat: 'yy-mm-dd',minDate: new Date(2014,08,23), showOn: 'button', buttonImageOnly: true, buttonImage: "path_to_image('/images/calendar.png')", showButtonPanel: true, showWeek: true, showOtherMonths: true, selectOtherMonths: true};
+ //alert( $('.issue_due_date').length);
+ //$('.selector')[1].datepicker('option', 'minDate', new Date(2014, 0 - 8, 23));
+ //$("#issue_due_date").datepicker(datepickerOptions);
+ //$("##{issue_due_date}").datepicker(datepickerOptions);
+ //$("#issue_due_date").datepicker(
+ // {dateFormat: 'yy-mm-dd',minDate: new Date(2014,08,23), showOn: 'button', buttonImageOnly: true, buttonImage: "path_to_image('/images/calendar.png')", showButtonPanel: true, showWeek: true, showOtherMonths: true, selectOtherMonths: true}
+ //)
+ //});
+}
+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");
+ }
+}
+
+//added by lizanle 日期選擇js
+function HS_DateAdd(interval,number,date){
+ number = parseInt(number);
+ if (typeof(date)=="string"){var date = new Date(date.split("-")[0],date.split("-")[1],date.split("-")[2])}
+ if (typeof(date)=="object"){var date = date}
+ switch(interval){
+ case "y":return new Date(date.getFullYear()+number,date.getMonth(),date.getDate()); break;
+ case "m":return new Date(date.getFullYear(),date.getMonth()+number,checkDate(date.getFullYear(),date.getMonth()+number,date.getDate())); break;
+ case "d":return new Date(date.getFullYear(),date.getMonth(),date.getDate()+number); break;
+ case "w":return new Date(date.getFullYear(),date.getMonth(),7*number+date.getDate()); break;
+ }
+}
+function checkDate(year,month,date){
+ var enddate = ["31","28","31","30","31","30","31","31","30","31","30","31"];
+ var returnDate = "";
+ if (year%4==0){enddate[1]="29"}
+ if (date>enddate[month]){returnDate = enddate[month]}else{returnDate = date}
+ return returnDate;
+}
+
+function WeekDay(date){
+ var theDate;
+ if (typeof(date)=="string"){theDate = new Date(date.split("-")[0],date.split("-")[1],date.split("-")[2]);}
+ if (typeof(date)=="object"){theDate = date}
+ return theDate.getDay();
+}
+function HS_calender(){
+ var lis = "";
+ var style = "";
+ /*可以把下面的css剪切出去独立一个css文件*/
+ style +="";
+
+ var now;
+ if (typeof(arguments[0])=="string"){
+ selectDate = arguments[0].split("-");
+ var year = selectDate[0];
+ var month = parseInt(selectDate[1])-1+"";
+ var date = selectDate[2];
+ now = new Date(year,month,date);
+ }else if (typeof(arguments[0])=="object"){
+ now = arguments[0];
+ }
+ var lastMonthEndDate = HS_DateAdd("d","-1",now.getFullYear()+"-"+now.getMonth()+"-01").getDate();
+ var lastMonthDate = WeekDay(now.getFullYear()+"-"+now.getMonth()+"-01");
+ var thisMonthLastDate = HS_DateAdd("d","-1",now.getFullYear()+"-"+(parseInt(now.getMonth())+1).toString()+"-01");
+ var thisMonthEndDate = thisMonthLastDate.getDate();
+ var thisMonthEndDay = thisMonthLastDate.getDay();
+ var todayObj = new Date();
+ today = todayObj.getFullYear()+"-"+todayObj.getMonth()+"-"+todayObj.getDate();
+
+ for (i=0; i" + lis;
+ lastMonthEndDate--;
+ }
+ for (i=1; i<=thisMonthEndDate; i++){ // Current Month's Date
+
+ if(today == now.getFullYear()+"-"+now.getMonth()+"-"+i){
+ var todayString = now.getFullYear()+"-"+(parseInt(now.getMonth())+1).toString()+"-"+i;
+ lis += ""+i+"";
+ }else{
+ lis += ""+i+"";
+ }
+
+ }
+ var j=1;
+ for (i=thisMonthEndDay; i<6; i++){ // Next Month's Date
+ lis += ""+j+"";
+ j++;
+ }
+ lis += style;
+
+ var CalenderTitle = "»";
+ CalenderTitle += "«";
+ CalenderTitle += ""+now.getFullYear()+"年"+(parseInt(now.getMonth())+1).toString()+"月";
+
+ if (arguments.length>1){
+ arguments[1].parentNode.parentNode.getElementsByTagName("ul")[1].innerHTML = lis;
+ arguments[1].parentNode.innerHTML = CalenderTitle;
+
+ }else{
+ var CalenderBox = style+"";
+ return CalenderBox;
+ }
+}
+function _selectThisDay(d){
+ var boxObj = d.parentNode.parentNode.parentNode.parentNode.parentNode;
+ boxObj.targetObj.value = d.title;
+ boxObj.parentNode.removeChild(boxObj);
+}
+function closeCalender(d){
+ var boxObj = d.parentNode.parentNode.parentNode;
+ boxObj.parentNode.removeChild(boxObj);
+}
+
+function CalenderselectYear(obj){
+ var opt = "";
+ var thisYear = obj.innerHTML;
+ for (i=1970; i<=2020; i++){
+ if (i==thisYear){
+ opt += "";
+ }else{
+ opt += "";
+ }
+ }
+ opt = "";
+ obj.parentNode.innerHTML = opt;
+}
+
+function selectThisYear(obj){
+ HS_calender(obj.value+"-"+obj.parentNode.parentNode.getElementsByTagName("span")[1].getElementsByTagName("a")[0].innerHTML+"-1",obj.parentNode);
+}
+
+function CalenderselectMonth(obj){
+ var opt = "";
+ var thisMonth = obj.innerHTML;
+ for (i=1; i<=12; i++){
+ if (i==thisMonth){
+ opt += "";
+ }else{
+ opt += "";
+ }
+ }
+ opt = "";
+ obj.parentNode.innerHTML = opt;
+}
+function selectThisMonth(obj){
+ HS_calender(obj.parentNode.parentNode.getElementsByTagName("span")[0].getElementsByTagName("a")[0].innerHTML+"-"+obj.value+"-1",obj.parentNode);
+}
+function HS_setDate(inputObj){
+ var calenderObj = document.createElement("span");
+ calenderObj.innerHTML = HS_calender(new Date());
+ calenderObj.style.position = "absolute";
+ calenderObj.targetObj = inputObj;
+ inputObj.parentNode.insertBefore(calenderObj,inputObj.nextSibling);
+}
+//lizanle 刷新函数
+function redo() {
+ window.location.reload()
+}
+
+function encodeHomeworkUrl(url, is_base64){
+ if(typeof is_base64 === 'boolean' && is_base64){
+ return '/zipdown/download?base64file='+url;
+ }
+ var file = encodeURI(url).replace(/\+/g, '%2B');
+ return '/zipdown/download?file='+file;
+}
+
+//// 作业附件删除
+$(function(){
+ $('.attachments a.delete-homework-icon').bind('ajax:complete', //this will work
+ function(event, data, status, xhr) { //note parametes
+ $(this).parent('p').remove();
+ console.log("delete complete.");
+ });
+
+ $('a.tb_all').bind('ajax:complete', function (event, data, status, xhr) {
+ if(status == 'success'){
+ var res = JSON.parse(data.responseText);
+ if(res.length<1){
+ return;
+ }
+
+ if(res.length==1){
+ if(res[0].base64file){
+ location.href = encodeHomeworkUrl(res[0].base64file, true);return;
+ }
+ location.href = encodeHomeworkUrl(res[0].file);return;
+ }
+
+ document.getElementById('light').style.display='block';
+ $container = $('#light .upload_box_ul');
+ $container.empty();
+ for(var i = 0; i 1){
+ des = '第'+res[i].index+'-'+(res[i].count+res[i].index-1)+'个学生的作品下载';
+ } else {
+ des = '第'+res[i].index+'个学生的作品下载';
+ }
+
+ if(res[i].base64file){
+ $(''+(i+1)+'. '+des+' (共'+res[i].size+'M) ').appendTo($container);
+ } else {
+ $(''+(i+1)+'. '+des+' (共'+res[i].size+'M) ').appendTo($container);
+ }
+ }
+ }
+ });
+ $('#download_homework_attachments').bind('ajax:complete', function (event, data, status, xhr) {
+ if(status == 'success'){
+ var res = JSON.parse(data.responseText);
+ if(res.length == null){
+ alert("该作业没有任何附件可下载");
+ }
+ else if(res.length<1){
+ return;
+ }
+ else
+ {
+ if(res.length==1){
+ if(res[0].base64file){
+ location.href = encodeHomeworkUrl(res[0].base64file, true);return;
+ }
+ location.href = encodeHomeworkUrl(res[0].file);return;
+ }
+ document.getElementById('light').style.display='block';
+ $container = $('#light .upload_box_ul');
+ $container.empty();
+ for(var i = 0; i 1){
+ des = '第'+res[i].index+'-'+(res[i].count+res[i].index-1)+'个学生的作品下载';
+ } else {
+ des = '第'+res[i].index+'个学生的作品下载';
+ }
+
+ if(res[i].base64file){
+ $(''+(i+1)+'. '+des+' (共'+res[i].size+'M) ').appendTo($container);
+ } else {
+ $(''+(i+1)+'. '+des+' (共'+res[i].size+'M) ').appendTo($container);
+ }
+
+ }
+ }
+ }
+ });
+});
+
+
+//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");
+ }
+});
+
+//点击发送资源弹出框中的组织,要更改选择栏目中的内容
+//@dom 选中的radio,值为org_id
+function change_org_subfield(url){
+ $.ajax({
+ type:'get',
+ url:url
+ })
+}
+
+//点击图片即显示大图
+function showNormalImage(id) {
+ var description_images=$('div#'+id).find("img");
+ if (description_images.length>0) {
+ for (var i=0; i").attr("href",image.attr('src'));
+ image.wrap(element);
+ $(image).parent().colorbox({rel:'nofollow', close: "关闭", returnFocus: false});
+ }
+ //$('#'+id+' a').colorbox({rel:'nofollow', close: "关闭", returnFocus: false}); //有图片才将链接变为弹出框
+ }
+
+}
+
+//文件、帖子、通知分享
+function org_id_click(){
+ var sendText = $("input[name='org_id']:checked").next().text();
+ var orgDirection = "目标地址:";
+ $(".orgDirection").text(orgDirection + sendText);
+}
+function subfield_click(){
+ var sendText = $("input[name='org_id']:checked").next().text();
+ var orgDirection = "目标地址:";
+ var sendColumn = $("input[name='subfield']:checked").next().text();
+ $(".orgDirection").text(orgDirection + sendText + " / " + sendColumn);
+}
+
+//send_type:发送的类型,file对应文件,message对应帖子,news对应通知或新闻
+function observeSearchfieldOnInput(fieldId, url,send_id,send_ids, send_type) {
+ $('#'+fieldId).each(function() {
+ var $this = $(this);
+ $this.addClass('autocomplete');
+ $this.attr('data-value-was', $this.val());
+ var check = function() {
+ var val = $this.val();
+ if ($this.attr('data-value-was') != val){
+ $this.attr('data-value-was', val);
+ $.ajax({
+ url: url,
+ type: 'get',
+ data: {search: $this.val(),send_id:send_id,send_ids:send_ids, send_type:send_type},
+ success: function(data){ },
+ beforeSend: function(){ $this.addClass('ajax-loading'); },
+ complete: function(){ $this.removeClass('ajax-loading'); }
+ });
+ }
+ };
+ var reset = function() {
+ if (timer) {
+ clearInterval(timer);
+ timer = setInterval(check, 300);
+ }
+ };
+ var timer = setInterval(check, 300);
+ $this.bind('keyup click mousemove', reset);
+ });
+}
+function check_des(event){
+ if($(".sectionContent").find('input[type="radio"]:checked').length <= 0){
+ event.preventDefault();
+ $(".orgDirection").text('目标地址组织不能为空');
+ return false;
+ }else if($(".columnContent").find('input[type="radio"]:checked').length <= 0){
+ event.preventDefault();
+ $(".orgDirection").text('目标地址栏目不能为空');
+ return false;
+ }else{
+ return true;
+ }
+}
+
+var sendType = '1';
+var lastSendType ;//初始为发送到我的课程
+function show_send(id, user_id, send_type){
+ if (lastSendType === '2'){ //如果已经发送过一次了,那么就应该沿用上次发送的类型。
+ $.ajax({
+ type: 'get',
+ url: '/users/' + user_id + '/search_user_project',
+ data:{send_id:id, send_type:send_type}
+ });
+ }else if(lastSendType == '1'){
+ $.ajax({
+ type: 'get',
+ url: '/users/' + user_id + '/search_user_course',
+ data:{send_id:id, send_type:send_type}
+ });
+ }else if( lastSendType == '3'){//组织
+ $.ajax({
+ type: 'get',
+ url: '/users/' + user_id + '/search_user_org',
+ data:{send_id:id, send_type:send_type}
+ });
+ }else{
+ $.ajax({
+ type: 'get',
+ url: '/users/' + user_id + '/search_user_course',
+ data:{send_id:id, send_type:send_type}
+ });
+ }
+}
+
+//id 发送的id
+//发送的id数组
+//send_type:发送的类型,file对应文件,message对应帖子,news对应通知或新闻
+function chooseSendType(res_id,res_ids, user_id, send_type){
+
+ sendType = $(".resourcesSendType").val();
+ if (sendType === lastSendType) {
+ return;
+ } else if(lastSendType != null) { //不是第一次点击的时候
+ if (sendType == '1') {
+ $.ajax({
+ type: 'get',
+ url: '/users/' + user_id + '/search_user_course',
+ data:{send_id:res_id, send_type:send_type}
+ });
+ } else if(sendType == '2') {
+ $.ajax({
+ type: 'get',
+ url: '/users/' + user_id + '/search_user_project',
+ data:{send_id:res_id, send_type:send_type}
+ });
+ }else if(sendType == '3'){
+ $.ajax({
+ type: 'get',
+ url: '/users/' + user_id + '/search_user_org',
+ data:{send_id:res_id, send_type:send_type}
+ });
+ }
+ }
+ lastSendType = sendType;
+}
+
+//组织新建和配置中,选择组织为私有后,disbled掉允许游客下载选项
+function disable_down(source, des, hint){
+ if (source.attr("checked")){
+ des.attr("disabled", false);
+ hint.html("");
+ }
+ else{
+ des.attr("checked", false);
+ des.attr("disabled", true);
+ hint.html("(私有组织不允许游客下载资源)");
+
+ }
+}
From 006731ea61574b833ee8ee1d54313440ebc18213 Mon Sep 17 00:00:00 2001
From: luoquan <545501972@qq.com>
Date: Mon, 14 Mar 2016 15:51:50 +0800
Subject: [PATCH 3/4] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BB=A5=E4=B8=8B?=
=?UTF-8?q?=E9=97=AE=E9=A2=98=EF=BC=9A=20KE=E9=97=AE=E9=A2=98=EF=BC=9A?=
=?UTF-8?q?=E7=BC=96=E8=BE=91=E6=97=B6=E8=A1=8C=E9=97=B4=E8=B7=9D=E6=8C=BA?=
=?UTF-8?q?=E5=A5=BD=EF=BC=8C=E5=8F=91=E5=B8=83=E5=90=8E=EF=BC=8C=E5=9C=A8?=
=?UTF-8?q?=E9=A1=B9=E7=9B=AE=E8=AE=A8=E8=AE=BA=E5=8C=BA=E4=B8=AD=E7=9A=84?=
=?UTF-8?q?=E6=98=BE=E7=A4=BA=E8=A1=8C=E9=97=B4=E8=B7=9D=E7=A8=8D=E5=BE=AE?=
=?UTF-8?q?=E6=9C=89=E7=82=B9=E6=8C=A4=E3=80=82=20KE=E9=97=AE=E9=A2=98?=
=?UTF-8?q?=EF=BC=9A=E7=BC=BA=E7=9C=81=E7=9A=84=E6=96=87=E5=AD=97=E9=A2=9C?=
=?UTF-8?q?=E8=89=B2=EF=BC=9A=E5=9C=A8=E7=BC=96=E8=BE=91=E6=97=B6=E6=98=AF?=
=?UTF-8?q?=E9=BB=91=E8=89=B2=EF=BC=8C=E4=BD=86=E5=8F=91=E5=B8=83=E5=90=8E?=
=?UTF-8?q?=E5=B0=B1=E6=98=AF=E7=81=B0=E8=89=B2=E3=80=82=E5=BA=94=E8=AF=A5?=
=?UTF-8?q?=E5=8F=91=E5=B8=83=E5=90=8E=E4=B9=9F=E6=98=AF=E9=BB=91=E8=89=B2?=
=?UTF-8?q?=E3=80=82?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
public/stylesheets/new_user.css | 2 +-
public/stylesheets/project.css | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/public/stylesheets/new_user.css b/public/stylesheets/new_user.css
index af3829706..7b0089a8e 100644
--- a/public/stylesheets/new_user.css
+++ b/public/stylesheets/new_user.css
@@ -844,7 +844,7 @@ a.sortArrowActiveU {background:url(images/post_image_list.png) -17px -20px no-re
.postDetailTitle {width:580px; max-width:580px; margin-bottom:5px;}
.postDetailDes {width:580px; max-width:580px; margin-bottom:6px; color:#888888;display:block;overflow:hidden;word-break:keep-all;text-overflow:ellipsis;}
.postDetailDes p,div,em{word-break: break-all;word-wrap: break-word;}
-.homepagePostIntro p,.homepagePostIntro div,.homepagePostIntro em, .homepagePostIntro span{text-align: justify; text-justify:inter-ideograph; word-break: normal !important; word-wrap: break-word !important; line-height: 18px !important;}
+.homepagePostIntro p,.homepagePostIntro div,.homepagePostIntro em, .homepagePostIntro span{text-align: justify; text-justify:inter-ideograph; word-break: normal !important; word-wrap: break-word !important; line-height: 23px !important;}
.postDetailCreater {color:#888888; font-size:12px; float:left; margin-right:25px;}
.postDetailDate {color:#888888; font-size:12px; float:left;}
.postDetailReply { margin-top:28px; color:#888888; float:right;display: inline}
diff --git a/public/stylesheets/project.css b/public/stylesheets/project.css
index 7e1ae654f..f30838a92 100644
--- a/public/stylesheets/project.css
+++ b/public/stylesheets/project.css
@@ -218,7 +218,7 @@ a.talk_btn{ background:#64bdd9; width:50px; height:20px; color:#fff; text-align:
a:hover.talk_btn{ background:#2a9dc1;}
/****讨论区内页***/
.mt0{ margin-top:0px;}
-.talk_info{ color:#7d7d7d; margin-left:60px; margin-top:10px;}
+.talk_info{ margin-left:60px; margin-top:10px;}
.issue_desc li{list-style-type: decimal;margin-left: 20px;}
.talk_info img {max-width:100%;}
a.talk_edit{ color:#426e9a; margin-right:5px;}
From 465a23604951e8dc316044541b5ddef8659154c7 Mon Sep 17 00:00:00 2001
From: yuanke <249218296@qq.com>
Date: Mon, 14 Mar 2016 17:16:11 +0800
Subject: [PATCH 4/4] =?UTF-8?q?=E4=BF=AE=E6=94=B9KE=E8=B4=B4=E5=90=A7?=
=?UTF-8?q?=E7=AD=89=E5=9C=B0=E5=9B=BE=E7=89=87=E6=98=BE=E7=A4=BA=E4=B8=8D?=
=?UTF-8?q?=E5=87=BA=E6=9D=A5=E7=9A=84=E9=97=AE=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
app/views/memos/show.html.erb | 5 +++--
public/javascripts/application.js | 18 ++++++++++++++++++
2 files changed, 21 insertions(+), 2 deletions(-)
diff --git a/app/views/memos/show.html.erb b/app/views/memos/show.html.erb
index 4feb998cf..634903558 100644
--- a/app/views/memos/show.html.erb
+++ b/app/views/memos/show.html.erb
@@ -61,7 +61,7 @@
<%= link_to @memo.author.name, user_path(@memo.author), :class => "linkBlue2", :target=> "_blank"%>
<%= format_date( @memo.created_at)%>
-
+
<%= @memo.content.html_safe%>
@@ -126,7 +126,7 @@
\ No newline at end of file
diff --git a/public/javascripts/application.js b/public/javascripts/application.js
index 709bd5a36..a8504ee1e 100644
--- a/public/javascripts/application.js
+++ b/public/javascripts/application.js
@@ -1011,8 +1011,11 @@ function showNormalImage(id) {
if (description_images.length>0) {
for (var i=0; i").attr("href",image.attr('src'));
@@ -1024,6 +1027,7 @@ function showNormalImage(id) {
}
+
//文件、帖子、通知分享
function org_id_click(){
var sendText = $("input[name='org_id']:checked").next().text();
@@ -1156,3 +1160,17 @@ function disable_down(source, des, hint){
}
}
+
+function getRootPath(){
+ //获取当前网址,如: http://localhost:8083/uimcardprj/share/meun.jsp
+ var curWwwPath=window.document.location.href;
+ //获取主机地址之后的目录,如: uimcardprj/share/meun.jsp
+ var pathName=window.document.location.pathname;
+ var pos=curWwwPath.indexOf(pathName);
+ //获取主机地址,如: http://localhost:8083
+ var localhostPaht=curWwwPath.substring(0,pos);
+ //获取带"/"的项目名,如:/uimcardprj
+ var projectName=pathName.substring(0,pathName.substr(1).indexOf('/')+1);
+ return(localhostPaht+projectName);
+}
+