aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2010-08-10 06:20:13 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2010-08-10 06:20:13 +0000
commit5a02f159c842e5785373ae08b5dd622b1329e430 (patch)
tree7bb02e910c7352294b3945339a9691053eb7373d
parent9ef82d971a8262d87e32ae34ab85be8ed9c54224 (diff)
updated PLUGIN.txt.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2666 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r--PLUGIN.ja.txt19
-rw-r--r--PLUGIN.txt25
2 files changed, 37 insertions, 7 deletions
diff --git a/PLUGIN.ja.txt b/PLUGIN.ja.txt
index 46a86c27..c42ef384 100644
--- a/PLUGIN.ja.txt
+++ b/PLUGIN.ja.txt
@@ -158,6 +158,11 @@ void (* folderview_menu_popup) (GObject *obj, gpointer ifactory);
FolderView でコンテキストメニューをポップアップしたときに発行される
シグナルです。
-------------------------------------------------------------------------
+void (* summaryview_menu_popup) (GObject *obj, gpointer ifactory);
+
+SummaryView でコンテキストメニューをポップアップしたときに発行される
+シグナルです。
+-------------------------------------------------------------------------
void (* compose_created) (GObject *obj, gpointer compose);
Compose メッセージ作成ウィンドウが作成されたときに発行されるシグナルです。
@@ -230,9 +235,12 @@ void (* account_updated) (GObject *obj)
サンプルプラグイン
==================
-plugin/test にサンプルプラグインがあります。このプラグインは
+plugin ディレクトリ以下にサンプルプラグインがあります。これらのプラグインは
make install ではインストールされません。インストールするには
-plugin/test ディレクトリに入って make install-plugin を実行してください。
+plugin/ 以下の各ディレクトリに入って make install-plugin を実行してください。
+
+Test Plug-in
+------------
test プラグインは Sylpheed プラグインの基本的な構造に加え、以下の処理を
行います。
@@ -249,6 +257,13 @@ test プラグインは Sylpheed プラグインの基本的な構造に加え
ポップアップ、メッセージ作成ウィンドウ作成、メッセージ作成ウィンドウ破棄
のイベントを捕捉してメッセージを表示
+Attachment Tool Plug-in
+-----------------------
+
+添付ファイルつきのメッセージを操作するためのプラグインです。
+
+詳細は plugin/attachment_tool/README を参照してください。
+
ライセンスについて
==================
diff --git a/PLUGIN.txt b/PLUGIN.txt
index 75f2e765..c5223956 100644
--- a/PLUGIN.txt
+++ b/PLUGIN.txt
@@ -157,6 +157,10 @@ void (* folderview_menu_popup) (GObject *obj, gpointer ifactory);
Emitted on popup of the context menu of FolderView.
-------------------------------------------------------------------------
+void (* summaryview_menu_popup) (GObject *obj, gpointer ifactory);
+
+Emitted on popup of the context menu of SummaryView.
+-------------------------------------------------------------------------
void (* compose_created) (GObject *obj, gpointer compose);
Emitted on creating 'Compose' message composition window.
@@ -225,12 +229,16 @@ It will not be emitted if it is locked by account_update_lock(), though.
-------------------------------------------------------------------------
-Sample plug-in
-==============
+Sample plug-ins
+===============
-There is a sample plug-in at plugin/test. This plug-in will not be installed
-with 'make install'. It is required to enter the directory plugin/test and
-run 'make install-plugin'.
+There is sample plug-ins under the 'plugin' directory.
+These plug-ins will not be installed with 'make install'.
+It is required to enter the directory plugin/* and run
+'make install-plugin'.
+
+Test Plug-in
+------------
The 'test' plug-in has the basic structure of Sylpheed plug-in and the
following process:
@@ -247,6 +255,13 @@ following process:
and exiting, folder view context menu popup, creating and destroying compose
window
+Attachment Tool Plug-in
+-----------------------
+
+This is a plug-in for handling messages with attached files.
+
+See plugin/attachment_tool/README for the details.
+
About license
=============