2012-10-11 Junichi Satoh <junichi@rworks.jp>
* include/help/ja/help_response_parameters.php, include/help/ja/help_response_macros.php: Added new help files, parameters and macros in event responses. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7066 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
d6b43d845d
commit
6f0c7613cc
|
@ -1,3 +1,9 @@
|
|||
2012-10-11 Junichi Satoh <junichi@rworks.jp>
|
||||
|
||||
* include/help/ja/help_response_parameters.php,
|
||||
include/help/ja/help_response_macros.php: Added new help files,
|
||||
parameters and macros in event responses.
|
||||
|
||||
2012-10-10 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||
|
||||
* include/javascript/pandora.js
|
||||
|
|
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
/**
|
||||
* @package Include/help/ja
|
||||
*/
|
||||
?>イベント応答マクロ</h1>
|
||||
|
||||
<p>
|
||||
応答対象(コマンドやURL)には、カスタマイズするためにマクロを利用できます。
|
||||
<br><br>
|
||||
次のマクロを利用できます。
|
||||
|
||||
<ul>
|
||||
<li><b>エージェントアドレス:</b> _agent_address_</li>
|
||||
<li><b>エージェントID:</b> _agent_id_</li>
|
||||
<li><b>イベントID:</b> _event_id_</li>
|
||||
</ul>
|
||||
|
||||
<h3>基本的な利用方法</h3>
|
||||
例として、イベントに関連付けしたエージェントへの ping を示します。
|
||||
<br><br>
|
||||
コマンドを次のように設定します: <i>ping -c 5 _agent_address_</i>
|
||||
<br><br>
|
||||
設定パラメータがある場合は、それもマクロとして利用できます。
|
||||
|
||||
<h3>パラメータマクロ</h3>
|
||||
例として、URL のパラメータをカスタマイズします。
|
||||
<br><br>
|
||||
パラメータを次のように設定します: <i>User,Section</i>
|
||||
<br><br>
|
||||
そして、URL を次のように設定します: <i>http://example.com/index.php?user=_User_&section=_Section_</i>
|
||||
</p>
|
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
/**
|
||||
* @package Include/help/ja
|
||||
*/
|
||||
?>
|
||||
|
||||
<h1>イベント応答パラメータ</h1>
|
||||
|
||||
<p>応答パラメータはカンマで区切ります。
|
||||
<br><br>
|
||||
例:
|
||||
<br><br>
|
||||
<i>User,Password,Port</i>
|
||||
<br><br>
|
||||
それぞれのパラメータは、前後にアンダースコアをつけることにより、コマンドおよび URL でマクロとして利用できます。
|
||||
<br><br>
|
||||
例:
|
||||
<br><br>
|
||||
<i>_Port_</i>
|
||||
<br><br>
|
||||
パラメータには、スペースを含んではいけません。
|
||||
</p>
|
Loading…
Reference in New Issue