1. Gitweb supports Japanese?

    When I browse a ReST document in Japanese, I got following error on console.

    [Thu Apr 21 11:09:15 2011] gitweb.cgi: Wide character in FCGI::Stream::PRINT at /usr/lib/perl5/FCGI.pm line 95, <$fd> line 6.
    

    And generated HTML page is wrong.

    more »
  2. Caching Tool and WSGI app

    I found that Caching Tool does nothing for applications attached by cherrypy.tree.gfaft (in CherryPy 3.1.2).

    When log.screen configuration is True, CherryPy usually emits log to standard output. It's like:

    127.0.0.1 - - [13/Apr/2011:16:58:19] "GET /memo HTTP/1.1" 200 …
    more »
  3. Emacs settings

    Here is my .emacs.

    (custom-set-variables
      ;; custom-set-variables was added by Custom.
      ;; If you edit it by hand, you could mess it up, so be careful.
      ;; Your init file should contain only one such instance.
      ;; If there is more than one, they won't work right.
     '(case-fold-search t)
     '(current-language-environment "Japanese")
     '(default-input-method "japanese-egg-anthy")
     '(face-font-family-alternatives …
    more »
  4. Initial settings of Git

    Git setup

    Git needs initial setup. I type:

    $ git config --global user.name "NIIBE Yutaka"
    $ git config --global user.email "gniibe@fsij.org"
    
    more »