前の月 / 次の月 / 最新

XINUJP - ChangeWebLog / 2014-09

01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

2024 : 01 02 03 04 05 06 07 08 09 10 11 12
2023 : 01 02 03 04 05 06 07 08 09 10 11 12
2022 : 01 02 03 04 05 06 07 08 09 10 11 12
2021 : 01 02 03 04 05 06 07 08 09 10 11 12
2020 : 01 02 03 04 05 06 07 08 09 10 11 12
2019 : 01 02 03 04 05 06 07 08 09 10 11 12
2018 : 01 02 03 04 05 06 07 08 09 10 11 12
2017 : 01 02 03 04 05 06 07 08 09 10 11 12
2016 : 01 02 03 04 05 06 07 08 09 10 11 12
2015 : 01 02 03 04 05 06 07 08 09 10 11 12
2014 : 01 02 03 04 05 06 07 08 09 10 11 12
2013 : 01 02 03 04 05 06 07 08 09 10 11 12
2012 : 01 02 03 04 05 06 07 08 09 10 11 12
2011 : 01 02 03 04 05 06 07 08 09 10 11 12
2010 : 01 02 03 04 05 06 07 08 09 10 11 12
2009 : 01 02 03 04 05 06 07 08 09 10 11 12
2008 : 01 02 03 04 05 06 07 08 09 10 11 12
2007 : 01 02 03 04 05 06 07 08 09 10 11 12

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