• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

コミットメタ情報

リビジョン6cac38260a0315d3967d3d9762150cbe4cb36b15 (tree)
日時2005-02-08 23:04:05
作者henoheno <henoheno>
コミッターhenoheno

ログメッセージ

Added stationary plugin. This is just a stationary

変更サマリ

差分

--- /dev/null
+++ b/plugin/stationary.inc.php
@@ -0,0 +1,30 @@
1+<?php
2+// $Id: stationary.inc.php,v 1.1 2005/02/08 14:04:05 henoheno Exp $
3+//
4+// Stationary plugin
5+// License: The same as PukiWiki
6+
7+// Someting define
8+define('PLUGIN_STATIONARY_MAX', 10);
9+
10+function plugin_stationary_init()
11+{
12+
13+}
14+
15+function plugin_stationary_convert()
16+{
17+ return '#stationary()' . '</br>' ."\n";
18+}
19+
20+function plugin_stationary_inline()
21+{
22+ return '&stationary();';
23+}
24+
25+function plugin_stationary_action()
26+{
27+ die_message('stationary');
28+}
29+
30+?>