• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

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

Commit MetaInfo

Révision177a28bbaacc7d2b59738241108b90928bc885f4 (tree)
l'heure2004-08-10 21:50:20
Auteurhenoheno <henoheno>
Commiterhenoheno

Message de Log

Cleanup. help message etc.

Change Summary

Modification

--- a/plugin/calendar_viewer.inc.php
+++ b/plugin/calendar_viewer.inc.php
@@ -1,40 +1,37 @@
11 <?php
22 /*
33 * PukiWiki calendar_viewerプラグイン
4- * $Id: calendar_viewer.inc.php,v 1.15 2004/08/10 12:43:29 henoheno Exp $
4+ * $Id: calendar_viewer.inc.php,v 1.16 2004/08/10 12:50:20 henoheno Exp $
55 * calendarrecentプラグインを元に作成
66 */
77
88 /**
9- *概要
9+ * 概要
1010 calendarプラグインやcalendar2プラグインで作成したページを一覧表示するためのプラグインです。
11- *更新履歴
12- -2002-11-13
13- --前後へのリンクに年月や「次のn件」と表示するようにした。
14- *使い方
15- /// #calendar_viewer(pagename,(yyyy-mm|n|this),[mode],[separater])
16- **pagename
11+ * 使い方
12+ #calendar_viewer(pagename,(yyyy-mm|n|this),[mode],[separater])
13+ ** pagename
1714 calendar or calendar2プラグインを記述してるページ名
18- **(yyyy-mm|n|this)
19- -yyyy-mm
20- --yyyy-mmで指定した年月のページを一覧表示
21- -n
22- --n件の一覧表示
23- -this
24- --今月のページを一覧表示
25- **[mode]
15+ ** (yyyy-mm|n|this)
16+ - yyyy-mm
17+ -- yyyy-mmで指定した年月のページを一覧表示
18+ - n
19+ -- n件の一覧表示
20+ - this
21+ -- 今月のページを一覧表示
22+ ** [mode]
2623 省略可能です。省略時のデフォルトはpast
27- -past
28- --今日以前のページの一覧表示モード。更新履歴や日記向き
29- -future
30- --今日以降のページの一覧表示モード。イベント予定やスケジュール向き
31- -view
32- --過去から未来への一覧表示モード。表示抑止するページはありません。
33- -[separater]
34- 省略可能。デフォルトは-。(calendar2なら省略でOK)
35- --年月日を区切るセパレータを指定。
36-
37- *todo
24+ - past
25+ -- 今日以前のページの一覧表示モード。更新履歴や日記向き
26+ - future
27+ -- 今日以降のページの一覧表示モード。イベント予定やスケジュール向き
28+ - view
29+ -- 過去から未来への一覧表示モード。表示抑止するページはありません。
30+ ** [separater]
31+ - 年月日を区切るセパレータを指定。
32+ - 省略可能。デフォルトは-。(calendar2なら省略でOK)
33+
34+ * TODO
3835 past or future で月単位表示するときに、それぞれ来月、先月の一覧へのリンクを表示しないようにする
3936
4037 */
@@ -180,7 +177,7 @@ function plugin_calendar_viewer_convert()
180177 $head = "<h1>$link</h1>\n";
181178 $return_body .= $head . $body;
182179
183- $tmp++;
180+ ++$tmp;
184181 }
185182
186183 // ここで、前後のリンクを表示
@@ -196,7 +193,7 @@ function plugin_calendar_viewer_convert()
196193 $next_year = $this_year;
197194 $next_month = $this_month + 1;
198195 if ($next_month >12){
199- $next_year ++;
196+ ++$next_year;
200197 $next_month = 1;
201198 }
202199 $next_YM = sprintf('%04d%s%02d', $next_year, $date_sep, $next_month);
@@ -205,7 +202,7 @@ function plugin_calendar_viewer_convert()
205202 $prev_year = $this_year;
206203 $prev_month = $this_month - 1;
207204 if ($prev_month < 1){
208- $prev_year --;
205+ --$prev_year;
209206 $prev_month = 12;
210207 }
211208 $prev_YM = sprintf('%04d%s%02d', $prev_year, $date_sep, $prev_month);