2014-09-15 Mon
■ FreeBSD の PHP [freebsd]
FreeBSD の PHP(php5-5.4.32など) って、ホント言語処理しか入らない。
で、少なくともこの辺を別に入れないと、何もできないよね。
mod_php5-5.4.32,1 PHP Scripting Language
php5-mbstring-5.4.32 The mbstring shared extension for php
php5-session-5.4.32 The session shared extension for php
このあたりも必要かもな。
php5-mysql-5.4.32 The mysql shared extension for php
php5-mysqli-5.4.32 The mysqli shared extension for php
php5-json-5.4.32 The json shared extension for php
2014-09-07 Sun
■ エクセル あるセルの条件で別セルの色(書式)を設定 [windows]
ここら辺を参照
http://www.becoolusers.com/excel/conditional-formatting-fx.html
あと、条件付き書式のクリアはこの辺
http://www.ne.jp/asahi/juku/excel/Jouken03.htm
2014-09-05 Fri
■ redmine ガントチャート 開始月の変更 [redmine]
redmine のガントチャート良く使っているが、デフォルトで当月が開始月となっているため、見にくい。
で、開始月を前月に変更する。
http://ultrah.zura.org/?p=3448 を参考に
redmine/lib/redmine/helpers/gantt.rb
を 修正
--- gantt.rb.org 2013-09-14 15:48:42.000000000 +0900
+++ gantt.rb 2014-09-05 09:39:04.000000000 +0900
@@ -56,8 +56,15 @@
@month_from = 1
end
else
- @month_from ||= Date.today.month
- @year_from ||= Date.today.year
+ #@month_from ||= Date.today.month
+ #@year_from ||= Date.today.year
+ if Date.today.month == 1
+ @month_from ||= 12
+ @year_from ||= Date.today.year - 1
+ else
+ @month_from ||= Date.today.month - 1
+ @year_from ||= Date.today.year
+ end
end
zoom = (options[:zoom] || User.current.pref[:gantt_zoom]).to_i
@zoom = (zoom > 0 && zoom < 5) ? zoom : 2
最終更新時間: 2024-08-28 09:42