Changes between Version 3 and Version 4 of jazz/10-06-25


Ignore:
Timestamp:
Jun 25, 2010, 5:17:34 PM (14 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/10-06-25

    v3 v4  
    55 * [http://dennys.tiger2.net/blog/2006/04/23/apache 使用 Apache 自動判別語系]
    66  * 先前很好奇別人是怎麼做到同一個網址,卻可以依瀏覽器不同,而決定顯示的語系。原來秘密藏在 !MultiViews 這個 apache 設定參數。
    7   * 只要有打開 !MultiViews 然後配合寫一個 index.html.var 的檔案說明哪一種語系應該讀哪個檔案,網站就可以支援多國語系了。
     7  * 只要有打開 !MultiViews 然後配合寫一個 index.html.var 的檔案說明哪一種語系應該讀哪個檔案,網站就可以支援多國語系了。 - [參考] [http://freedom.mingann.info/vbird/linux_server/0360apache.htm 鳥哥的文章]
     8{{{
     9MultiViews :這個東西有點類似多國語言支援啦!你可在同一目錄下的同一個檔案,
     10       編寫多個不同語言的檔案,並且以一個 *.var 的檔案來規範不同編碼!
     11}}}
    812  * [註] 至於 Apache 2.x 版該怎麼改,可能要測試一下才知道了。 - [http://httpd.apache.org/docs/2.2/content-negotiation.html Apache 2.2 官方設定說明文件]
    913{{{
    1014Apache 2.2 的 language 設定檔放到 conf/extra/httpd-languages.conf
     15}}}
     16
     17== Debian ==
     18
     19 * Debian 從 squeeze/sid 以後的版本,有多了一些修改,例如:
     20  * 用 [http://susefaq.sourceforge.net/faq/services.html insserv 啟動服務] - Q: 類似 Redhat 系列的 service ??
     21  * 套件改用 quilt 而非 dpatch - [http://wiki.debian.org/Projects/DebSrc3.0 關於 debian package source format 3.0 (quilt)] - [http://dev.firnow.com/course/6_system/linux/Linuxjs/20090824/170587.html deb 包新格式]
     22    * [http://packages.debian.org/quilt quilt 的 Debian 套件]
     23{{{
     24$ sudo apt-get install quilt
     25}}}
     26    * [http://www.suse.de/~agruen/quilt.pdf Introduction to quilt (pdf)]
     27    * [http://www.wzdftpd.net/blog/index.php?2008/02/05/3-quilt-a-patch-management-system-how-to-survive-with-many-patches Quilt, a patch management system (how to survive with many patches)]
     28    * [http://pyxon.wordpress.com/2009/01/14/converting-debian-packages-from-dpatch-to-quilt/ Converting Debian packages from dpatch to quilt] - 說明如何把原本 dpatch 的 debian 套件移植成改用 quilt
     29    * [http://wiki.debian.org/UsingQuilt Using quilt with Debian source packages] - Debian 官方維基介紹 quilt 的用法
     30    * [http://chistera.yi.org/~dato/blog/104_quilt_options Useful and some must-have options for quilt] - 記載幾個建議設定在 ~/.quiltrc 的參數
     31{{{
     32  QUILT_PATCH_OPTS="--unified-reject-files"
     33  QUILT_REFRESH_ARGS="-p ab --no-timestamps --no-index"
     34  QUILT_DIFF_ARGS="-p ab --no-timestamps --no-index --color=auto"
     35
     36  QUILT_PATCHES="debian/patches"
     37  QUILT_COLORS="diff_hdr=1;32:diff_add=1;34:diff_rem=1;31:diff_hunk=1;33:diff_ctx=35:diff_cctx=33"
    1138}}}
    1239