5/21/2010

Maintenance page for Apache

網站上線後在初期會有很多程式修正,因此網站更新過程必須停止程式運作( java web app),在維護過程中讓使用重導至維護面是很重要。在apache環境提供滿多解決方案,這效果讓維護過程使用者知道網站尚未死掉。

Prototype coexist with jquery in tapestry5

在使用tapestry5時,prototype1.6.1 與jquery1.3.2共存,IE8出現錯誤javascript error...

javascript錯誤訊息如下:

...IE8 brings an error of "object not defined" at prototype.js line 4821...

試了很多怪招都沒有用,最後僅升級jquery1.4.2事情就解決了Orz,白白浪費這麼多時間!

5/15/2010

yahoo 輸入法+嘸蝦米

Yahoo輸入法已經有支援Mac環境,雖然官方沒有說支援嘸蝦米,但是yahoo輸入法採香草Open架構,也能夠Plugin使用其它輸入法。

安裝步驟:

  1. 安裝Yahoo輸入法Mac
  2. 利用G大神找Liu*.cin
  3. 複製liu*.cin 至~/Library/Application Support/Yahoo! KeyKey/DataTables/Generic
  4. 登出
  5. 努力微調到您要的感覺

5/07/2010

disabled ipv6 ubuntu 10.04

關掉ubuntu ipv6加速網路速度

先確認是否已經disabled ipv6

cat /proc/sys/net/ipv6/conf/all/disable_ipv6
# 1 -> disabled 0 -> enabled

編輯 sudo vim /etc/sysctl.conf

#disable ipv6
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1

5/02/2010

Tapestry Talk

非常不錯介紹Tapestry Talk

Watch Howard Lewis Ship talk

Tapestry Zone

Tapestry Zone 定義一個可動態被更新區域,在頁面中利用Ajax或者其它Client side effect來驅動它。

雖然大家都會寫ajax了,但是很少人去定義被更新區域叫Zone,真的是滿有意義定義及規範。 在Tapestry Zone可以讓開發者簡易且有規範輕鬆做出動態更新功能,我們並不需要太專注於javascript撰寫!