在使用中文的 Zope/Plone 時,要記得把該 zope instance 裡 etc/zope.conf 之中的 rest-input-encodingrest-output-encoding 設為 UTF-8

rest-input-encoding UTF-8
rest-output-encoding UTF-8

目前已知 Zwiki 0.40 若未進行此設定,rst 中文不正常;不過相同環境下,AT Document 的 rst 中文可以正常使用。測試環境為

  • Zope 2.7.3
  • Plone 2.0.5
  • Archetypes 1.3.2-final
  • ATContentTypes 0.2.0-final
Posted by yungyuc at 23:48, 0 comment, 0 trackback.

呼... 差點以為陪我三年多的 266264T 要出現第一塊完蛋的模組。

不知道是不是撞到什麼東西,CF slot 裡面的針腳歪掉了,讓 CF wlan 卡出問題...

不過,東弄西弄又弄正了。所以,還是要對她溫柔一點得好。

Posted by yungyuc at 18:10, 1 comments, 0 trackback.

Stricter Whitespace Enforcement by Guido van Rossum。

  • All code indented with four spaces. This will also get rid of the tabs problem!
  • No redundant parentheses allowed (e.g. no "return(1)" where "return 1" would do).
  • No whitespace immediately following a left parentheses or immediately before a right parenthesis.
  • No whitespace before a left parenthesis that starts an argument list, or before a left square bracket that starts an index expression (e.g. "x[y]").
  • No whitespace before a comma or semicolon.
  • Exactly one space required after a comma or semicolon (except when at the end of a line).
  • No semicolon at the end of a line (it's redundant).
  • More than one consecutive space within an expression is never allowed.
  • Asignment and comparison operators must be surrounded by spaces.
  • The amount of whitespace on both sides of a binary operator should be the same.
  • If variable amounts of whitespace are used within an expression, this should correspond to the relative priorities of the operators used. For example: "1*2 + 3*4" is okay but "1*2 + 3 * 4" is not. However, "1*2+3*4" is still encouraged.
  • No space allowed before a colon.
  • In a dictionary display, exactly one space required after a colon. In a slice, none.
  • The short form of a block ("if x: y") is abandoned; you must use the newline-plus-indentation form.

PEP8 也真的差不多是這樣。噢,不要啦,我超喜歡用兩個空白來縮排的 ^^;

不過,月曆上 4/1 發佈的消息都得確認再三 :p 過幾天再看看是怎樣。

Posted by yungyuc at 07:43, 0 comment, 0 trackback.

informed by Gokigenyou ,真是可喜可賀啊!!

Posted by yungyuc at 23:06, 0 comment, 0 trackback.

今 (明?) 天就要見分曉,為了避免知道結局之後沒力氣把 24 25 看完,今天就先拼一拼吧。

蜘蛛女的內心起伏用五分鐘就交代過去實在很混,不過 HiME 有十二隻,她能分到這麼多戲份已經比阿卡涅好多了。修女和畫家的禁斷關係還更扯一點,請不要把神職人員想得這麼不諳世事好嗎 @_@

巨大化的杜蘭好棒,尤其是那對耳朵真是太棒了,真希望它們還會像真狗的那樣動一動。章魚女的怨念實在太強了一點;全都是一些不講理的人嘛。副會長說得好,本來我還以為楯會死得更狗血一點的呢,結果只賺到一個 kiss (hmm....)。

次回 二十六話 最終 『shining☆days』。這好像是二十五分之一那唯一一次正經的下回預告。

Posted by yungyuc at 21:58, 0 comment, 0 trackback.

竟然有人預祝我愚人節快樂...

Posted by yungyuc at 06:30, 0 comment, 0 trackback.

最近小改了一下我的 COREBlog skin vanilla 。把內容 放到畫面的中間 、調整左右空白的背景顏色、修改標題的樣式。

紀錄一下最後的樣子:

http://img165.exs.cx/img165/9779/vanillafinal8wg.th.png

這次的修改就不另外包裝了,好麻煩。如果有人想看的話,我再 export 出來給你。其實主要都是 CSS 的改動,也沒什麼好看的。 vanilla 應該是到此為止了。如果還要再改 skin 的話,就叫作 grape 吧。

Posted by yungyuc at 20:23, 2 comments, 0 trackback.
tag on Anime

前年看不下去的動畫,對我來說好像步調慢了點,卡在第五集嗎?不記得了...

bookmark 一下:

Posted by yungyuc at 19:57, 4 comments, 0 trackback.

<center> ... </center> 的方法也可以,不過好像是不合法的。

今天花了幾分鐘研究了一下 FlickrClient 的樣式表,終於讓我學會用 CSS 來把 <div> ... </div> 擺到畫面中間的方法了。

div#page {
  margin-left: auto;
  margin-right: auto;
  width: 795px;
  max-width: 795px;
}

然後用 <div id="page"> ... </div> 把整個 <body> 裡面的東西包起來就好了。

哈哈,真快樂。

Posted by yungyuc at 19:37, 0 comment, 0 trackback.

internetnewsReport: P-Languages Better For Enterprise 這篇文章學到新的 buzzword: P-language。

比較讓我感興趣的是 (摘譯):

... PHP 是例外。雖然這語言本身並沒有比其它語言更安全或更不安全,但用 PHP 建立的產品看來是特別容易被侵害。事實上,Burton 發現在 2003 年一月到 2004 年十二月間,用 PHP 建置的商業和開放原始碼產品,有超過 300 個弱點被報到開放原始碼弱點資料庫 (Open Source Vulnerability Database,OSVDB) 去。相比之下,Perl 與 Python 只有不到一打的回報。 ...

喔,可能是 PHP 太紅了,以致於破洞一大堆吧。當然,Python 程式看起來比 PHP 漂亮得多,這也是事實喔。

Posted by yungyuc at 20:23, 0 comment, 0 trackback.
Change to page (10 entries in each page): 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
© hover year to navigate month: powered by django