It is as risky to believe everything, as it is to believe nothing. - Denis Diderot

Monthly Archive for November 2007

— [cakephp]定数の定義をするのに最適なとこ

Posted: Nov 9, 2007, 9:24 pm | Author: cyberryo | Category: Dialy | Tags:

define(‘URL’,'http://www.hoge.com/’);

こんな感じでURLなど定数で定義してあると、開発環境が違うときに大変便利ですよー。
ということで、cakephpはどこで定数を定義すればよいのか。

アプリ全体→app/config/bootstrap.php
コントローラ→app/app_controller.php
モデル→app/app_model.php


— ThinkVantageのアップデートは問題をさらに悪化させる

Posted: Nov 8, 2007, 8:27 pm | Author: cyberryo | Category: Dialy | Tags:

thinkvantage.jpg
長年のThinkPadユーザーですが、最近のThinkVantage系アプリには大変不満です。
Read the rest of this entry »


— Dekiwiki使用感レビュー(2日目)

Posted: Nov 7, 2007, 6:47 pm | Author: cyberryo | Category: Dialy | Tags:

Dekiwikiを自社サーバーにインストールして、CIやプロジェクト、定型文書の管理ツールとして、使用して2日目のレビュー。
Read the rest of this entry »


— [cakephp]findAllByでorderしたい

Posted: Nov 6, 2007, 4:42 pm | Author: cyberryo | Category: Dialy | Tags:

基本的には下記findAllと同じらしい。

Model::findAll($conditions = null,
        $fields = null,
        $order = null,
        $limit = null,
        $page = 1,
        $recursive = null
)

つまり、

$model = $this->Model->findAllById($id,null,’created DESC’);

これも知ってるか知らないかで差が出ますねー。


— FedoraにDekiWikiをインストールしてみる

Posted: Nov 5, 2007, 12:27 pm | Author: cyberryo | Category: Dialy | Tags: , ,

dekiwiki.jpg
最近やけに騒がれているDekiWikiを試したくなった。
そして、プロジェクト管理ツールとして使えるのかどうか、検証してみることにした。
Read the rest of this entry »