Archive:Development/FAQs/General FAQ (zh TW)

    From KDE TechBase

    Template:I18n/Language Navigation Bar (zh TW)

    我想要開發新的應用程式。請問你的建議?

    我們都同意,需要大量的 KDE 應用程式加入。但也有很多現有的 KDE 應用程式需要你的幫助。

    如果你想瞭解一下目前需要幫忙的地方,請看本頁面

    在開始新的應用程式前,檢查 KDE-Apps.org 上現有的應用程式,並詢問 kde-devel 郵件列表是否有人已經制訂類似的專案是一個好主意。

    我是開發人員,我要如何幫助 KDE 呢?

    KOffice 和 KDevelop,儘管受到高度讚賞,但只有極少數開發者,所以你可以從這裡開始。不需要成為 KDE 核心開發人員才能提供協助。KDE 是高度模塊化的,所以你可以完美地改善一個地方,而不了解整個系統如何運作。

    如果有需要協助的應用程式,您也可以在 kde-devel 詢問。使用 KDE 最新版看看有否需要協助的地方。主題生成器?konsole 計畫編輯器?改善遊戲?這些專案總是有小功能缺失。去實現它吧!

    你是熟悉或關注於特定領域嗎?查看是否有相關的應用程式,可以獲得您的幫助。或者自己寫一個。KDE 需要更多非 geek 導向的應用程式。

    我不是開發者,我要怎樣幫忙?

    有大量不需要開發技術的任務。撰寫應用程式評論幫助 KDE 推廣(請見 kde-promo 郵件列表),幫助文件團隊(請見 i18n.kde.org/doc),協助翻譯(請見 i18n.kde.org),幫助過濾加入的 bug(請見 bugs.kde.org)。

    在哪裡可以找到 Konqi 龍的圖像?

    The Konqi for some people SDK is at ftp.kde.org/pub/kde/devel/konqi_sdk.tar.bz2
    It was posted to artist.kde.org before that site ceased to be updated.

    Further images are on KDE merchandise.

    貢獻 KDE 需要什麼樣的水準?我應該學習什麼?我應該閱讀什麼?

    您需要了解 C++。閱讀 Qt 的教學和瀏覽 Qt 的文件來熟悉 Qt。然後閱讀KDE的教學和瀏覽架構和文件。您還可以閱讀KDE的書籍。但你不用熟悉整個 KDE 的架構成為 KDE 開發者。使用 KDE 的技術是很容易的,所以集中在你真正需要的,你可以以後再學習其他部分。KDE TechBasedoc.qt.nokia.com (或者在您的 $QTDIR/doc/html) 是寶貴的資源,要善用它們。然後瀏覽原始碼,尋找範例目錄,看看其他應用程式的寫法。讀寫程式碼是最好的學習方法。

    什麼是 SVN?我如何從 SVN 得到 KDE?

    請見匿名 SVN 頁面

    可以存取線上的 KDE 原始碼嗎?

    可以

    我應該加入什麼在我的 .subversion/config?

    [miscellany]
    global-ignores = *.moc *.moc.cc *.moc.cpp config.log config.status \
    config.cache *.gmo .deps .libs SunWS_cache *.lo *.la *.rpo *.la.closure \
    *_la_closure.cpp *_la_closure.cc *_la_closure.cxx *.all_cc.cc *.all_cpp.cpp \
    *.all_C.C *.all_cxx.cxx *_meta_unload.cc *_meta_unload.h *_meta_unload.cpp \
    *_meta_unload.C *_meta_unload.cxx index.cache.bz2 .memdump Makefile.rules.in \
    Makefile.calls.in Makefile.rules Makefile.calls autom4te.cache *.kidl \
    *.o *.lo *.la #*# .*.rej *.rej *.pyc
    

    And to make svn diff ignore whitespace, and print function names:

    [helpers]
    diff-cmd = /usr/local/bin/_svndiff
    

    with the following in /usr/local/bin/_svndiff:

    #!/bin/sh
    exec /usr/bin/diff -b -u -p "$@"
    

    Don't forget to make /usr/local/bin/_svndiff executable.

    我想加入我的應用程式到 KDE

    有三個要求:

    • 您的應用程式必須使用最新版本的 KDE 編譯(SVN trunk)。
    • 您的應用程式必須是穩定的。
    • 您的應用程式必須得到維護。你可能會得到大量的 bug 報告和願望。人們期待你修復 bug 和實現有意義的願望。

    可以參見下一個問題。

    在 KDE 內部還是外部進行開發比較好?

    核心開發者 Waldo Bastian 在郵件中解釋:


    成為 KDE 的一份子,意味著你必須與他人一起工作。合作帶來了好處,但同時也帶來了責任。

    其中一些的優點是:你的程式碼會出現在所有發行版、人們可能會解決您的 bug、你可以得到免費的翻譯和文件、你會得到成噸的 bug 回報。

    另一方面是缺點和責任:你將不得不為你的工作,與其他開發者溝通、其他人可能更改您的程式碼、你必須尊重發行凍結、你會得到成噸的 bug 回報,人們期望你解決這些問題以及(what are they smoking?),維護你的程式碼。

    你不能只選擇優點,而忽略了隨之而來的責任,它們是完整一體的,兩者都要或都沒有。

    一般來說,應該是軟體的作者,選擇把他的應用程式放進 SVN。我們通常不把軟體放在 KDE SVN,除非作者希望這樣做。反過來說,如果作者喜歡在 SVN 外開發他的應用程式,是他的權利。除非是應用程式的工作團隊分裂,但這不會影響分歧出的應用程式開發。

    ...您把程式碼以開源授權放在 KDE SVN。相當於您同意整個世界,特別是KDE,使用您的程式碼是不可取消的權利。KDE 將斟酌使用此權利,以保護KDE的利益,即使違背作者當下的意願。

    It is important to know that but don't be afraid. Usually, things work very well. In 5 years, it has only happened once that a developer had his work put kept in KDE while he wanted to remove it.

    如何讓 SVN 訪問 KDE?

    See full article at Contribute > Get a SVN Account.

    Send a mail to sysadmin (at) kde (dot) org justify why you need SVN access. Make sure to specify your full name and e-mail address, if the From field in your mails doesn't specify them.

    Please include the name of your bugs.kde.org account, if non-existent please create one so that it can be given usual developer rights. Closing bugs.kde.org reports with keywords in commit comments only works if the email address of your SVN and bugs.kde.org accounts match. You can change your bugs.kde.org address in the Bugzilla user settings.

    You can currently choose between the standard SVN protocol (https using a password) and the svn+ssh using an ssh key. If you choose https, send also an encrypted password (for instance using useradd dummy ; passwd dummy ; grep dummy /etc/passwd /etc/shadow) and see also the tutorial. If you choose svn+ssh, send a public ssh key instead (e.g. ~/.ssh/id_dsa.pub)

    See also #How do I create a SSH key?

    If you are contributing to an application that is not yours, it is a good idea to first submitting your coding as patches to the author and let him apply them. If the author is not maintaining his application, you might become the new maintainer...

    Although there is no restrictions on SVN rights, we expect you not to mess up other developers' code without their consent. You must also respect the feature freezes of the release schedule (published on developer.kde.org)

    A detailed list of rules you should follow when committing to the KDE SVN repository are listed in the KDE SVN Commit Policy.

    我的應用程式還不穩定,但我想讓它加入 KDE

    第一步,我們可以把它放在 playground(=kde-alpha)。當準備就緒時,請您的應用程式移動到適當的 KDE 套件包或 extragear 模塊。

    我不想失去我的 SVN 歷史。

    This is no longer possible with Subversion. Maybe in the future, if the server is upgraded and allows that.

    什麼是 kdebindings?

    它包含 Qt 的 Ruby、PHP 和 C# 綁定、KDE 的 Ruby、C# 和 python 綁定以及讓非 KDE 的應用程式作為 KPart 嵌入的 XParts。請見 TechBase 的綁定頁面

    功能凍結是否適用於 playground?

    不,playground 不會發布套件。kdereview 和 extragear 也是相同的:他們沒有凍結和發布。但如果你希望你的應用程式轉移到套件包,請在 beta 發布之前先詢問。

    可以同時有穩定和不穩定的 KDE 在同一台電腦上嗎?

    Yes, check the Building 2 Versions documentation.

    我怎麼知道我使用的 Qt/KDE 版本?

    kde-config 或在所有 KDE 程式使用 --version 參數。

    Qt-copy 或 qt.nokia.com 的 Qt:如果用其中一個做 trunk 建構,是可行的嗎?

    任何一個您都可以使用。它們是二進位相容的(往前和往後)。但 qt-copy 修正幾個 Qt 最新版中的 bug。特別是從 qt-copy 建構,要注意補丁腳本。

    How can I checkout a single directory from a SVN module?

    Checkout the top-level dir with 'svn co -N /modulename', 'cd modulename', 'svn up admin' to get the admin/ dir and then finally checkout the dir you want with 'svn up subdir'

    For instance, to get only reaktivate from playground/utils:

    svn co -N /playground/utils; svn up reaktivate
    

    Then compile as usual.

    The same answer applies to the question "How do I get a single language out of kde-i18n?".

    If you don't know the name of the directory you want to check out, you can browse websvn.kde.org to find it.

    如何取得其中一個 KDE 應用程式作為一個獨立的壓縮檔?

    kdesdk/scripts/svn2dist 是一個從 KDE 原始碼樹中提取應用程式的腳本,並打包為一個獨立的應用程式。

    如何關閉我自己的 bug 報告?

    If you reported a bug that is fixed in a new release of KDE but is still reported as open, you can close it. It might happens because your bug is the same as another one, or simply because the developer fixed something without noticing that it would correct your bug.

    You can do that from your Subversion commit. To do so, append to your commit message a line like this:

    BUG: XXXXX
    Where XXXXX is the bug report you want to close. If the report you're closing is adding a new feature, you can use FEATURE instead of BUG.

    Managing a bug list is a huge task for the developers and they usually have a lot of bugs listed, some being fixed already without their knowledge, some being unreproducable, some without enough information to be corrected, etc. If you can help managing and updating the list of outstanding bug, you will be gladly welcome. And you will receive an even happier welcome if you provide a patch.

    如何建立 SSH 密鑰?

    SSH makes use of two keys: a private key and a public key. You should keep the private key secret at all times and only place it on machines over which you have direct control. Public, shared, and community machines are not suitable environments to store SSH private keys. Take action to help prevent theft of your SSH private key data. Setting a password on your SSH private key will help reduce the risks involved with private key theft.

    Generate a key pair for each major location you work from. This helps to reduce the impact when your key gets stolen. When someone obtains access to your private key, your key can be abused in attempts to compromise KDE servers. Well known open source projects have been compromised this way in the past, YOU must help us to make sure that this doesn't happen with KDE servers as well. For that reason it is important to notify sysadmin (at) kde (dot) org immediately when you notice that someone may have had access to your private key for example when a computer on which it was stored has been hacked or infected with a virus, worm or trojan.

    If you choose to make a backup of your SSH private key data, please ensure that any such backup is stored in a secure manner as well.

    For the practical part, the following command can be used to generate a SSH private/public key pair with

    ssh-keygen -t dsa
    

    This will create a private key as ~/.ssh/id_dsa and a public key as ~/.ssh/id_dsa.pub.

    There are times when you may want to use a key of a different name to the default, perhaps to use seperate keys for different projects. To let SSH know which key you want to use for KDE.org, you can keep a list of servers and their corresponding keys in ~/.ssh/config. For example,

    Host svn.kde.org 
    IdentityFile ~/.ssh/id_dsa_kde 
    

    In order to use SSH to access KDE servers you need to send your public key to sysadmin (at) kde (dot) org.

    如何監控別人所做的更改?

    kde-commits 郵件列表即附帶 KDE SVN 倉庫所有修改的自動通知。但 KDE-commits 郵件列表流量是非常高的。另一種方法是 CommitFilter,它可以只通知你感興趣的領域。