From: <var...@us...> - 2009-02-28 13:56:01
|
Revision: 6604 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6604&view=rev Author: vargenau Date: 2009-02-28 13:55:59 +0000 (Sat, 28 Feb 2009) Log Message: ----------- Wikicreole syntax Modified Paths: -------------- trunk/pgsrc/Help%2FCalendarPlugin Modified: trunk/pgsrc/Help%FCalendarPlugin =================================================================== --- trunk/pgsrc/Help%2FCalendarPlugin 2009-02-27 20:34:54 UTC (rev 6603) +++ trunk/pgsrc/Help%2FCalendarPlugin 2009-02-28 13:55:59 UTC (rev 6604) @@ -1,4 +1,4 @@ -Date: Wed, 25 Feb 2009 21:52:06 +0000 +Date: Sat, 28 Feb 2009 14:55:29 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -8,8 +8,8 @@ charset=iso-8859-1 Content-Transfer-Encoding: binary -The *Calendar* [[Help:WikiPlugin|plugin]] can be used to generate a monthly calendar in a -wiki page. It's handy for [personal wikis|PhpWiki:PersonalWiki]. +The **Calendar** [[Help:WikiPlugin|plugin]] can be used to generate a monthly calendar in a +wiki page. It's handy for [[PhpWiki:PersonalWiki|personal wikis]]. Individual dates in the calendar link to specially named wiki pages. The names for the "day pages" are by default formed by appending the @@ -26,52 +26,51 @@ == Arguments -=== Selection of Month +{| class="bordered" +|- +! Argument +! Description +! Default value +|- +| colspan="3" align="center" | **Selection of Month** +|- +| year +| Specify the year for the calendar. +| Current year +|- +| month +| Specify the month for the calendar. +| Current month +|- +| month_offset +| Added to //month//. Can be used to include several months worth of calendars on a single wiki page. +| 0 +|- +| colspan="3" align="center" | **"Day Page" Names** +|- +| date_format +| [[php-function:strftime|strftime]] style format string used to generate page names for the "day pages." +| The default value is =%Y-%m-%d=. +|- +| prefix +| Prepended to the date (formatted per //date_format//) to generate the "day page" names. +| The default value is =~[pagename]/=. +|- +| colspan="3" align="center" | **Appearance** +|- +| month_format +| [[php-function:strftime|strftime]] style format string used to generate the title of the calendar. +| (Default: =%B %Y=.) +|- +| wday_format +| [[php-function:strftime|strftime]] style format string used to generate the day-of-week names at the top of the calendar. +| +|- +| start_wday +| What day of the week does the calendar start on. This should be specified as an integer in the range zero (Sunday) through six (Saturday), inclusive. +| +|} -<strong>year</strong>: - - Specify the year for the calendar. (Default: current year.) - -<strong>month</strong>: - - Specify the month for the calendar. (Default: current month.) - -<strong>month_offset</strong>: - - Added to //month//. Can be used to include several months worth of - calendars on a single wiki page. - -=== "Day Page" Names - -<strong>date_format</strong>: - - [Strftime|php-function:strftime] style format string used to - generate page names for the "day pages." The default value is - =%Y-%m-%d=. - -<strong>prefix</strong>: - - Prepended to the date (formatted per //date_format//) to generate - the "day page" names. The default value is =~[pagename]/=. - -=== Appearance - -<strong>month_format</strong>: - - [Strftime| php-function:strftime] style format string used to - generate the title of the calendar. (Default: =%B %Y=.) - -<strong>wday_format</strong>: - - [Strftime| php-function:strftime] style format string used to - generate the day-of-week names at the top of the calendar. - -<strong>start_wday</strong>: - - What day of the week does the calendar start on. This should be - specified as an integer in the range zero (Sunday) through six - (Saturday), inclusive. - == Examples {{{ @@ -90,7 +89,7 @@ == See Also -Help:CalendarListPlugin. +* Help:CalendarListPlugin Often used together like this: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2014-06-12 15:58:24
|
Revision: 8897 http://sourceforge.net/p/phpwiki/code/8897 Author: vargenau Date: 2014-06-12 15:58:17 +0000 (Thu, 12 Jun 2014) Log Message: ----------- Use CSS Modified Paths: -------------- trunk/pgsrc/Help%2FCalendarPlugin Modified: trunk/pgsrc/Help%2FCalendarPlugin =================================================================== --- trunk/pgsrc/Help%2FCalendarPlugin 2014-06-12 15:43:56 UTC (rev 8896) +++ trunk/pgsrc/Help%2FCalendarPlugin 2014-06-12 15:58:17 UTC (rev 8897) @@ -1,4 +1,4 @@ -Date: Fri, 7 Dec 2012 15:16:29 +0000 +Date: Thu, 12 Jun 2014 17:57:14 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0) Content-Type: application/x-phpwiki; pagename=Help%2FCalendarPlugin; @@ -30,7 +30,7 @@ ! Description ! Default value |- -| colspan="3" align="center" | **Selection of Month** +| colspan="3" class="align-center" | **Selection of Month** |- | **year** | Specify the year for the calendar. @@ -44,7 +44,7 @@ | Added to //month//. Can be used to include several months worth of calendars on a single wiki page. | 0 |- -| colspan="3" align="center" | **"Day Page" Names** +| colspan="3" class="align-center" | **"Day Page" Names** |- | **date_format** | [[php-function:strftime|strftime]] style format string used to generate page names for the "day pages." @@ -54,7 +54,7 @@ | Prepended to the date (formatted per //date_format//) to generate the "day page" names. | The default value is =~[pagename]/=. |- -| colspan="3" align="center" | **Appearance** +| colspan="3" class="align-center" | **Appearance** |- | **month_format** | [[php-function:strftime|strftime]] style format string used to generate the title of the calendar. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |